Numerical Analysis Project
Numerical Analysis Project
Say OL
March 5, 2023
Each group project/assignment must choose one and only one of the followint topics:
f(x) = 0
f1 (x1 , x2 , ... , xn ) = 0
f2 (x1 , x2 , ... , xn ) = 0
..
.
fn (x1 , x2 , ... , xn ) = 0
Solving n simultaneous, nonlinear equations is a much more formidable task than finding
the root of a single equation. The trouble is there is no a reliable method for bracketing the
solution vector x. Therefore, we cannot always provide the solution algorithm with a good
starting value of x, unless such a value is suggested by the physics of the problem.
The simplest and the most effective means of computing x is the Newton-Raphson
method. It works well with simultaneous equations, provided that it is supplied with a good
starting point. There are other methods that have better global convergence characteris-
tics, but all of then are variants of the Newton-Raphson method.
What to do
1. White a theoretical liturature review about the Newton-Raphson method for system
of nonlinear equations.
4. Give illustrating example(s) with solution(s) obtained from the developed code.
1
Some helpful references
1. https://courses.engr.illinois.edu/cs357/fa2019/references/ref-11-solve-nd/
2. http://home.iitk.ac.in/~pranab/ESO208/rajesh/03-04/Nonlinear.pdf
What to do
1. White a theoretical liturature review about the Monte Carlo integration.
4. Give illustrating example(s) with solution(s) obtained from the developed code.
2. https://towardsdatascience.com/the-basics-of-monte-carlo-integration-5fe16b40482d
3. https://www.scratchapixel.com/lessons/mathematics-physics-for-computer-graphics/
monte-carlo-methods-in-practice/monte-carlo-integration.html