Courses
Courses for Kids
Free study material
Offline Centres
More
Store Icon
Store

False Position Method for Finding Roots of Equations

ffImage
hightlight icon
highlight icon
highlight icon
share icon
copy icon

False Position Method Formula Steps and Solved Examples

The concept of False Position Method is essential in mathematics and helps in solving real-world and exam-level problems efficiently. This root-finding technique is frequently tested in board exams, competitive tests, and engineering courses due to its practical and conceptual importance.


Understanding False Position Method

The False Position Method, also called Regula Falsi Method, is a numerical method to solve equations of the form \( f(x) = 0 \). It is most useful when algebraic solutions are difficult or impossible. This method is widely used in numerical analysis, engineering mathematics, and various scientific computations. It is particularly popular for quickly finding the real root of nonlinear equations.


Formula Used in False Position Method

The standard formula is: \( c = b - \frac{f(b)(b-a)}{f(b)-f(a)} \)


Here’s a helpful table to understand False Position Method calculations more clearly:


False Position Method Formula Table

Step Expression Description
1 \( c = b - \frac{f(b)(b-a)}{f(b)-f(a)} \) Finds the next approximation (c) of the root
2 Update a or b based on sign of \( f(c) \) Interval adjustment for next iteration

This table shows how the pattern of the False Position Method formula is applied in each iteration to approach the actual root.


Worked Example – Solving a Problem

Let’s solve for the root of \( f(x) = 2e^x \sin x - 3 \) correct to three decimal places using the False Position Method.

1. Choose two initial guesses: Let \( a = 0 \), \( b = 1 \)

2. Calculate \( f(a) \) and \( f(b) \):
\( f(0) = 2e^0 \sin 0 - 3 = -3 \)
\( f(1) = 2e^1 \sin 1 - 3 \approx 1.5747 \)

3. Since \( f(a) \) and \( f(b) \) have opposite signs, a root exists between 0 and 1.

4. Compute first approximation (\( x_1 \)):
\( x_1 = \frac{a f(b) - b f(a)}{f(b) - f(a)} \)
\( x_1 = \frac{0 \times 1.5747 - 1 \times (-3)}{1.5747 - (-3)} = \frac{3}{4.5747} \approx 0.6557 \)

5. Evaluate \( f(x_1) \):
\( f(0.6557) = 2e^{0.6557} \sin(0.6557) - 3 \approx -0.6507 \)

6. The sign of \( f(x_1) \) is negative, so update \( a = 0.6557 \) (since \( f(b) > 0 \)).

7. Compute second approximation (\( x_2 \)):
\( x_2 = \frac{a f(b) - b f(a)}{f(b) - f(a)} \)
\( x_2 = \frac{0.6557 \times 1.5747 - 1 \times (-0.6507)}{1.5747 - (-0.6507)} = \frac{1.0325 + 0.6507}{2.2254} \approx 0.7563 \)

8. Evaluate \( f(x_2) \):
\( f(0.7563) = 2e^{0.7563} \sin(0.7563) - 3 \approx -0.0761 \)

9. Since \( f(x_2) < 0 \), update \( a = 0.7563 \).

10. Compute third approximation (\( x_3 \)):
\( x_3 = \frac{a f(b) - b f(a)}{f(b) - f(a)} \)
\( x_3 = \frac{0.7563 \times 1.5747 - 1 \times (-0.0761)}{1.5747 - (-0.0761)} = \frac{1.1909 + 0.0761}{1.6508} \approx 0.7675 \)

11. Thus, after three iterations, the best approximation to the root is 0.768 (to three decimal places).


False Position Method vs Other Methods

A common student confusion is how the False Position Method differs from other root-finding techniques.

Method Process Convergence Updates
False Position Uses secant line for root estimate, interval always brackets root Faster than bisection, may slow if function skewed One end of interval is updated, other may “stick”
Bisection Halves interval each time Guaranteed, but slow Both ends can change, always shrink
Secant Like False Position, but doesn’t always bracket root Usualy faster, not guaranteed No guaranteed bracketing, both points move

These distinctions help students answer common board and competitive exam questions.


Important Tips and Common Mistakes

  • Don’t forget: initial guesses must bracket the root (opposite signs for \( f(a) \) and \( f(b) \)).
  • Mixing up formulae for False Position, Secant, and Bisection Method is common—always write them out and double-check which update to use.
  • False Position can converge slowly if one end of the interval is “sticky” and doesn’t update—watch out for this in practical use.

Real-World Applications

The False Position Method is applied in engineering, physics, and financial computations. For example, it is used to find the break-even point in cost equations, chemical engineering reactions, and error correction in computational models. Vedantu helps students see how maths applies beyond the classroom.


Practice Problems

  • Use the False Position Method to solve \( x^3 + x - 1 = 0 \) for a root between 0 and 1 up to three decimal places.
  • Apply the Regula Falsi formula to \( \cos x = x \) in the interval \( [0,1] \).
  • Compare the number of steps needed by False Position and Bisection Method for \( x^2 - 4 = 0 \) between 0 and 3.

Summary

We explored the idea of False Position Method, how to apply its formula, carry out step-by-step calculations, and understand its real-life relevance. Practice more with Vedantu to build confidence in these numerical methods and ace your exams!


Related Maths Topics

FAQs on False Position Method for Finding Roots of Equations

1. What is the False Position Method in numerical analysis?

The False Position Method, also called the Regula Falsi method, is a bracketing root-finding technique used to approximate the solution of a nonlinear equation f(x) = 0. It works by:

  • Choosing two initial guesses a and b such that f(a) and f(b) have opposite signs.
  • Drawing a straight line (secant) between (a, f(a)) and (b, f(b)).
  • Taking the x-intercept of this line as the next approximation of the root.
It is widely used in numerical methods because it guarantees convergence when the function is continuous and the root is bracketed.

2. What is the formula for the False Position Method?

The formula for the False Position Method is x = (a f(b) − b f(a)) / (f(b) − f(a)). Here:

  • a and b are the interval endpoints.
  • f(a) and f(b) are their function values.
  • x is the new approximation of the root.
This formula comes from the equation of the secant line joining the two points on the curve.

3. How do you solve an equation using the False Position Method step by step?

To solve f(x) = 0 using the False Position Method, follow these steps:

  • Choose a and b such that f(a) × f(b) < 0.
  • Compute the new approximation using x = (a f(b) − b f(a)) / (f(b) − f(a)).
  • Find f(x).
  • Replace either a or b with x so that the sign change condition remains valid.
  • Repeat until the desired accuracy is achieved.
This iterative process gradually narrows the interval containing the root.

4. What is the difference between the Bisection Method and the False Position Method?

The main difference is that the Bisection Method uses the midpoint, while the False Position Method uses a secant line to estimate the root. Key differences include:

  • Bisection formula: x = (a + b)/2.
  • False Position formula: x = (a f(b) − b f(a)) / (f(b) − f(a)).
  • Bisection converges steadily but slowly.
  • False Position often converges faster but may stagnate if one endpoint remains fixed.
Both are bracketing methods and require a sign change.

5. Can you give an example of the False Position Method?

Yes, for example, to find a root of f(x) = x² − 4, take a = 1 and b = 3 since f(1) = −3 and f(3) = 5.

  • Apply the formula: x = (1×5 − 3×(−3)) / (5 − (−3))
  • x = (5 + 9) / 8 = 14/8 = 1.75
Since f(1.75) is negative, replace a with 1.75 and repeat. The method converges toward the actual root x = 2.

6. Why does the False Position Method require a sign change?

The False Position Method requires f(a) × f(b) < 0 to ensure that a root lies between a and b. This condition guarantees:

  • The function is continuous in the interval.
  • There is at least one real root in (a, b) by the Intermediate Value Theorem.
Without a sign change, the method cannot guarantee convergence to a root.

7. What are the advantages of the False Position Method?

The main advantages of the False Position Method are guaranteed convergence and better accuracy than simple bracketing. Key benefits include:

  • Always converges if the root is bracketed.
  • Often faster than the Bisection Method.
  • Simple formula and easy implementation.
  • Does not require derivatives (unlike Newton-Raphson).
It is useful for solving nonlinear equations in engineering and applied mathematics.

8. What are the disadvantages of the False Position Method?

The main disadvantage of the False Position Method is that convergence can become slow if one endpoint remains fixed for many iterations. Other limitations include:

  • May stagnate when the function is highly curved.
  • Slower than Newton-Raphson for well-behaved functions.
  • Requires a valid bracketing interval.
In such cases, modified methods like the Illinois method may be preferred.

9. When should you use the False Position Method?

You should use the False Position Method when you need a reliable root-finding technique without using derivatives. It is suitable when:

  • The function is continuous on a closed interval.
  • A sign change between a and b is known.
  • Derivative computation is difficult.
It is commonly applied in numerical analysis, physics, and engineering problems.

10. Does the False Position Method always converge?

The False Position Method converges if the function is continuous and the initial interval brackets a root. Convergence is guaranteed because:

  • The root always remains inside the interval.
  • The interval gradually shrinks toward the root.
However, convergence may be slow in some cases, especially if one endpoint does not change during iterations.