24. Newton's Method, Rolle's Theorem and Mean Value Theorem
Dated: 30-10-2024
Newton's Method for Approximating Solutions for \(f(x) = 0\)
Let us first describe what does \(f(x) = 0\) even means.
It means we are looking for those values of \(x\) where \(f(x) = y = 0\).
These are the values where the graph of function
1 crosses the x axis
.
They way it works is as follows:
- Choose an arbitrary \(x_1\).
- Draw the
tangent
to \(f(x_1)\) - If the
tangent
is not parallel tox axis
i.e. \(f^{\prime}(x_1) \ne 0\) then thentangent
line intercepts atx axis
at \((x_2, 0)\). - Select \(x_2\) and repeat from Step 2 until the new \(x\) values slowly seem to approach a certain value.
We start with \(x_1\).
To drawtangent
at \(f(x_1)\), we are going to use the definition ofslope
.
Then we can generalize the equation from here
Limitations
- Does not always work.
- It might involve division by \(0\). Hence rendering us unable to continue the process. This case can occur if he
slope
is \(0\) at any point. - Sometimes, the approximations do not converge to a solution.
Rolle's Theorem
If \(f(x)\) is differentiable over an interval
2 \((a, b)\) and continous
3 over the interval
2 \([a, b]\) then there exists \(c \in \{x \in \mathbb{R}: a < x < b\}\) such that \(f^{\prime}(c) = 0\).
General Equation
Mean Value Theorem
If the conditions are right, the secant line
will have same slope
as the tangent line
.
If \(f(x)\) is differentiable over an interval
2 \((a, b)\) and continous
3 over the interval
2 \([a, b]\) then there exists \(c \in \{x \in \mathbb{R}: a < x < b\}\) such that \(f^{\prime}(c) = \frac{f(b) - f(a)}{b - a}\).
Proof
We can define a function
1 \(v(x)\) which represents the distance
between the curve and the secant line
.
From Rolle's Theorem
Since, \(v(a) = v(b) = 0\), it satisfies rolle's theorem
and there is a point \(c\) where \(v^{\prime}(c) = 0\)
Reference
Read more about notations and symbols.