Finding the roots of the equations (actually is approximate root thats why we) using Numerical Analysis Algorithms.
- Bisection / Interval Halving Method (in Programmer it is famous by name Binary Search).
- Regula-Falsi Method (teacher said we are assuming that the function is straight as we are finding the root in very small interval that why Falsi term intoduced in method name. :) )
- Trapezoidal Rule
- Simpson's 1/3rd Rule
- Simpson's 3/8th Rule
- Weddle's Rule
- LU Decomposition Method( Cholesky's Decomposition
- Gauss-Seidel Method
- Jacobi's Method
- Euler's Method
- Modified Euler's Method
- Runga-Kutta Method( of 4th Code)