Experiments
1 Study Of Bisection Method
2 Study of False Position Method
3 Study of Newton Raphson Method
4 Study of Secant Method
5 Study of the Gauss Elimination Method
6 Study of the Linear Regression Method
7 Study of Trapezoidal Rule
8 Study of the Simpson’s Rule
9 Study of the Runge Kutta Method
Experiment Name: Study of Bisection Method.
Objective: The major goal of this exercise is to examine and comprehend the Bisection Method, a numerical approach for determining the roots of a real-valued function. Participants in this study want to acquire knowledge into the method's iterative character, investigate its convergence behavior, and improve their ability to use the Bisection Method to solve basic equations.
Theory: The Bisection Method is a root-finding algorithm that operates on continuous functions. Given an interval [a, b] where the function f(x) changes sign, the Bisection Method iteratively narrows down the interval containing the root until a sufficiently accurate approximation is obtained. The steps of the method are as follows:
Algorithm: Bisection method can be easily programmed using the following computational method:
1.Initial Interval:
Start with an initial interval [a, b] where f(a) and f(b) have opposite signs, indicating that the root lies within the interval.
2.Midpoint Calculation:
Calculate the midpoint c of the interval:
3.Sign Analysis:
Determine the sign of f(c) and replace either a or b with c such that the new interval [a, b] still contains the root.
4.Iteration:
Repeat the process iteratively, narrowing down the interval in each step until the desired level of accuracy is achieved.
Experiment No. 2
Experiment Name: Study of False Position Method.
Objective: The primary objective of this experiment is to investigate and comprehend the False Position Method as a numerical technique for finding the roots of a real-valued function. The experiment aims to provide participants with a practical understanding of the method's iterative process, convergence characteristics, and its application to solve equations.
Theory: The False Position Method, also known as the Regula Falsi method, is an iterative root-finding algorithm similar to the Bisection Method, it operates on an interval [a, b] where the function f(x) changes sign. The steps of the method include:
Algorithm: False Position method can be programmed using the following computational steps:
1.Initial Interval:
Begin with an initial interval [a,b] where f(a) and f(b) have opposite signs, indicating the presence of a root in the interval.
2.Linear Interpolation:
Interpolate the next approximation c using linear interpolation based on the points (a, f(a)) and (b, f(b)):
3.Sign Analysis:
Determine the sign of f(c) and update the interval [a, b] such that it still contains the root.
4.Iteration:
Repeat the process iteratively, adjusting the interval and updating the approximation until the desired level of accuracy is achieved.
The False Position Metho
Related topics: