# HG changeset patch # User Puneeth Chaganti # Date 1256124448 -19800 # Node ID 4dea7c5e1bf5819fdda5f75346ad93ff636d0253 # Parent 578db74dfea0fc03c78000edbe20b19ad2007df7 Minor Typo edits. diff -r 578db74dfea0 -r 4dea7c5e1bf5 day1/session3.tex --- a/day1/session3.tex Wed Oct 21 12:34:03 2009 +0530 +++ b/day1/session3.tex Wed Oct 21 16:57:28 2009 +0530 @@ -174,7 +174,7 @@ \item Instead, we use arrays \end{itemize} \begin{lstlisting} -In []: array(L) +In []: L = array(L) In []: T = array(T) In []: Tsq = T*T In []: plot(L, Tsq, 'o') diff -r 578db74dfea0 -r 4dea7c5e1bf5 day1/session6.tex --- a/day1/session6.tex Wed Oct 21 12:34:03 2009 +0530 +++ b/day1/session6.tex Wed Oct 21 16:57:28 2009 +0530 @@ -197,7 +197,7 @@ \begin{frame}[fragile] \frametitle{Bisection Method} \begin{enumerate} -\item Start with an interval $(a, b)$ within wphich a root exists +\item Start with an interval $(a, b)$ within which a root exists \item $f(a)\cdot f(b) < 0$ \item Bisect the interval. $c = \frac{a+b}{2}$ \item Change the interval to $(a, c)$ if $f(a)\cdot f(c) < 0$