Question Statement
Find the root of the equation x3−4x−1=0 in the interval [2,3] using the Regula Falsi method, correct to two decimal places.
Background and Explanation
The Regula Falsi method (also known as the False Position method) is an iterative numerical technique for finding roots of equations. It improves upon the bisection method by using linear interpolation to estimate the root position within a bracketing interval [a,b] where the function changes sign.
Solution
First, we verify that a root exists in the interval [2,3] by checking for a sign change.
Define the function:
f(x)=x3−4x−1
Evaluate at the endpoints:
f(2)=23−4(2)−1=8−8−1=−1<0
f(3)=33−4(3)−1=27−12−1=14>0
Since f(2)<0 and f(3)>0, by the Intermediate Value Theorem, there is at least one root in [2,3].
The Regula Falsi formula is:
x=f(b)−f(a)af(b)−bf(a)
Apply the formula with a=2 and b=3:
x0=f(3)−f(2)2f(3)−3f(2)=14−(−1)2(14)−3(−1)=1528+3=1531=2.0667
Evaluate the function at x0:
f(x0)=f(2.0667)=(2.0667)3−4(2.0667)−1=−0.4394<0
Since f(2.0667)<0 and f(3)>0, the root lies in the updated interval [2.0667,3].
Apply the formula with a=2.0667 and b=3:
x1=f(3)−f(2.0667)2.0667f(3)−3f(2.0667)=14−(−0.4394)2.0667(14)−3(−0.4394)=2.0951
Evaluate the function:
f(x1)=f(2.0951)=(2.0951)3−4(2.0951)−1=−0.1841<0
The updated interval is [2.0951,3].
Apply the formula with a=2.0951 and b=3:
x2=f(3)−f(2.0951)2.0951f(3)−3f(2.0951)=14−(−0.1841)2.0951(14)−3(−0.1841)=2.1068
Evaluate the function:
f(x2)=f(2.1068)=(2.1068)3−4(2.1068)−1=−0.0759<0
The updated interval is [2.1068,3].
Apply the formula with a=2.1068 and b=3:
x3=f(3)−f(2.1068)2.1068f(3)−3f(2.1068)=14−(−0.0759)2.1068(14)−3(−0.0759)=2.1116
Evaluate the function:
f(x3)=f(2.1116)=(2.1116)3−4(2.1116)−1=−0.0311<0
The updated interval is [2.1116,3].
Apply the formula with a=2.1116 and b=3:
x4=f(3)−f(2.1116)2.1116f(3)−3f(2.1116)=14−(−0.0311)2.1116(14)−3(−0.0311)=2.1136
Comparing the last two approximations:
- x3=2.1116≈2.11 (to 2 decimal places)
- x4=2.1136≈2.11 (to 2 decimal places)
Since both values agree when rounded to two decimal places, the iteration stops here.
Therefore, the root of the equation correct to two decimal places is 2.11.
- Intermediate Value Theorem: If f(a)⋅f(b)<0, then at least one root exists in [a,b]
- Regula Falsi Formula: xnew=f(b)−f(a)af(b)−bf(a)
- Interval Update Rule:
- If f(xnew)<0, new interval is [xnew,b]
- If f(xnew)>0, new interval is [a,xnew]
Summary of Steps
- Verify bracket: Confirm f(2)=−1<0 and f(3)=14>0, so root ∈[2,3]
- First iteration: Calculate x0=2.0667, find f(x0)=−0.4394<0, update interval to [2.0667,3]
- Second iteration: Calculate x1=2.0951, find f(x1)=−0.1841<0, update interval to [2.0951,3]
- Third iteration: Calculate x2=2.1068, find f(x2)=−0.0759<0, update interval to [2.1068,3]
- Fourth iteration: Calculate x3=2.1116, find f(x3)=−0.0311<0, update interval to [2.1116,3]
- Fifth iteration: Calculate x4=2.1136
- Check convergence: Both x3 and x4 round to 2.11 to two decimal places, so the root is 2.11