day1/cheatsheet6.tex
author Santosh G. Vattam <vattam.santosh@gmail.com>
Wed, 11 Nov 2009 12:26:07 +0530
changeset 301 49bdffe4dca5
parent 295 39d7c4e14585
child 317 0eca6c542fce
permissions -rwxr-xr-x
Updated session 2 slides of day 1 and added cheatsheets of day 2.

\documentclass[12pt]{article}
\title{Solving Equations \& ODEs}
\author{FOSSEE}
\begin{document}
\date{}
\vspace{-1in}
\begin{center}
\LARGE{Solving Equations \& ODEs}\\
\large{FOSSEE}
\end{center}
\section{Solving linear equations}
\begin{verbatim}
    In []: A = array([[3,2,-1],
                      [2,-2,4],                   
                      [-1, 0.5, -1]])
    In []: b = array([[1], [-2], [0]])
    In []: x = solve(A, b)
    In []: Ax = dot(A,x)
    In []: allclose(Ax, b)
    Out[]: True
\end{verbatim}
\section{Finding roots}
\begin{verbatim}
  In []: coeffs = [1, 6, 13]
  In []: roots(coeffs)
\end{verbatim}
Finding the roots of a function
\begin{verbatim}
In []: fsolve(sin(x)+cos(x)**2, 0)
\end{verbatim}
\section{ODE}
\begin{verbatim}
  In []: def epid(y, t):
  ....     k, L = 0.00003, 25000
  ....     return k*y*(L-y)
  ....
  
  In []: t = arange(0, 12, 0.2)

  In []: y = odeint(epid, 250, t)

  In []: plot(t, y)
\end{verbatim}
\end{document}