Numerical Analysis 2014
References
K. Atkinson, Introduction to Numerical Analysis, Wiley
David Kincaid and E. Ward Cheney, Numerical Analysis: Mathematics of scientific computing
Getting the codes
You can download all the code using git
$ git clone https://github.com/cpraveen/na2014
Alternately, you can download a zip file containing all the code here.
Starting ipython
ipython is installed on all the computers in the lab. Open a terminal and type the following to start ipython notebook
$ ipython notebook --pylab=inline
This should start the notebook in your web browser.
Introduction
Computer Arithmetic
Root finding
Interpolation and approximation
Solving ODE
Euler method, convergence test: python
Euler method, convergence test: python
Euler method, instability example: python
Trapezoidal method, convergence test: python
Absolute stability domains of AB, AM, BDF schemes: python
Example of stiff ODE: python
ODE with periodic solution, quadratic invariant: python
Non-linear BVP using shooting method: python
Non-linear BVP using finite difference method: python