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

Bisection Method for Finding Roots of Equations

Reviewed by:
ffImage
hightlight icon
highlight icon
highlight icon
share icon
copy icon

Bisection Method Formula Steps and Solved Examples

The concept of bisection method plays a key role in mathematics and is widely applicable to both real-life situations and exam scenarios. Used for finding roots of equations, it is highly valued for its accuracy and easy, stepwise approach, especially for competitive exams and classroom learning.


What Is Bisection Method?

The bisection method is a numerical technique used to find the root of a continuous equation. It works by repeatedly dividing an interval in half and selecting the sub-interval where a sign change occurs (meaning the function changes from positive to negative or vice versa). You’ll find this concept applied in root-finding, numerical analysis, engineering problem-solving, and algorithm design.


Key Formula for Bisection Method

Here’s the standard formula:
Midpoint calculation: \( c = \frac{a + b}{2} \)
Error after n iterations: \( E_n = \frac{b - a}{2^n} \)


Cross-Disciplinary Usage

The bisection method is not only useful in Maths but also plays an important role in Physics, Computer Science (as part of binary search algorithms), and logical problem-solving. Students preparing for JEE or NEET will see its relevance in various questions, especially those involving numerical root finding and approximation techniques.


Step-by-Step Illustration

  1. Choose two values, \( a \) and \( b \), such that \( f(a) \) and \( f(b) \) have opposite signs.
    This means a root lies between \( a \) and \( b \).
  2. Calculate the midpoint \( c \):
    \( c = \frac{a + b}{2} \)
  3. Evaluate \( f(c) \):
    If \( f(c) = 0 \), then \( c \) is the root. If not, continue.
  4. Determine which sub-interval contains the root:
    If \( f(a) \) and \( f(c) \) have opposite signs, root is in \([a, c]\); set \( b = c \). Otherwise, set \( a = c \).
  5. Repeat steps 2–4 until the interval is small enough (desired accuracy).

Bisection Method Problem Example

Let’s solve for the root of \( f(x) = x^2 - 3 \) between \( a = 1 \) and \( b = 2 \):

1. Check function at endpoints:

  \( f(1) = 1^2 - 3 = -2 \)
  \( f(2) = 2^2 - 3 = 4 - 3 = 1 \)
  Opposite signs confirm a root exists in [1, 2].

2. Find midpoint \( c = (1+2)/2 = 1.5 \):

  \( f(1.5) = (1.5)^2 - 3 = 2.25 - 3 = -0.75 \)

  \( f(1.5) \) and \( f(2) \) have opposite signs. Set \( a = 1.5, b = 2 \).

3. Next midpoint \( c = (1.5+2)/2 = 1.75 \):

  \( f(1.75) = (1.75)^2 - 3 = 3.0625 - 3 = 0.0625 \)

Root is between 1.5 and 1.75 (change sign). Set \( a = 1.5, b = 1.75 \).

(Repeat steps. After 5–6 iterations, c approaches 1.732, very close to \( \sqrt{3} \)).

Speed Trick or Vedic Shortcut

A simple way to check convergence: Each time you cut the interval, your root "doubles" in accuracy! Suppose you want the answer correct to 2 decimal places, use the formula \( n = \log_2 \left(\frac{b-a}{\text{tolerance}}\right) \) to estimate needed steps. Many students use this for quick estimations in timed exams.


Example Trick: If you need error less than 0.01 with starting interval [1,2]:

  1. Calculate \( n = \log_2\left(\frac{2-1}{0.01}\right) \approx 7 \)
  2. So, after 7 iterations, your answer will be within 0.01 of the real root.

Tricks like this make the bisection method very user-friendly for students tackling Olympiads, JEE, or board exams. Vedantu includes many such tricks and practice strategies in their live sessions.


Common Errors and Misunderstandings

  • Forgetting to check if \( f(a) \) and \( f(b) \) are of opposite sign before starting.
  • Mixing up which value to replace (a or b) after each step.
  • Stopping too early before achieving the desired accuracy.
  • Not using the correct error formula for iterations needed.

Relation to Other Concepts

The idea of bisection method connects closely with topics such as Newton Raphson Method and Error Measurement. Mastering this helps with understanding more advanced numerical and calculus-based concepts in future chapters.


Try These Yourself

  • Find the root of \( f(x) = x^3 - 5 \) in the interval [1, 2] using the bisection method up to 3 iterations.
  • How many steps are needed to get error less than 0.001 with starting interval [0, 1]?
  • Check if \( f(x) = x^2 + 4 \) can be solved by bisection in [−2,2]. Why or why not?

Classroom Tip

A quick way to remember the bisection method: “Check sign, halve interval, repeat.” Draw a simple number line showing shrinking intervals so the root always stays in the middle. Vedantu’s teachers often use this stepwise visual method in interactive classroom sessions to cement the procedure for students.


Applications, Advantages & Disadvantages

Advantages Disadvantages
Always converges if sign change exists Can be slow compared to some other root-finding methods
Very easy to calculate and program Cannot find complex or repeated roots
Error can be estimated accurately Needs function to be continuous and sign-changing in interval
Good for homework, boards, and competitive exams Not suitable if function remains same sign throughout interval

Related Links


We explored bisection method—from definition, formula, example, mistakes, and links to related subjects. Continue practicing with Vedantu to become confident in solving any equation using the bisection method!



Best Seller - Grade 10
View More>
Previous
Next

FAQs on Bisection Method for Finding Roots of Equations

1. What is the Bisection Method in numerical analysis?

The Bisection Method is a root-finding technique that repeatedly divides an interval in half to locate a root of a continuous function. It works when a function f(x) changes sign on an interval [a, b], meaning f(a) × f(b) < 0. By the Intermediate Value Theorem, at least one root lies in that interval. The method narrows the interval step by step until the root is approximated within a desired accuracy.

2. What is the formula used in the Bisection Method?

The main formula in the Bisection Method is the midpoint formula c = (a + b) / 2. Here:

  • a and b are the current interval endpoints.
  • c is the midpoint and the next approximation of the root.

After computing c, check the sign of f(c) to decide whether the root lies in [a, c] or [c, b].

3. What are the steps of the Bisection Method?

The Bisection Method steps are simple and systematic:

  • Choose an interval [a, b] such that f(a) × f(b) < 0.
  • Compute the midpoint c = (a + b)/2.
  • Evaluate f(c).
  • If f(a) × f(c) < 0, set b = c; otherwise set a = c.
  • Repeat until the interval is sufficiently small or the desired accuracy is reached.

4. What is the condition for applying the Bisection Method?

The Bisection Method requires that the function be continuous on [a, b] and satisfy f(a) × f(b) < 0. This sign change ensures at least one real root exists in the interval by the Intermediate Value Theorem. If there is no sign change, the method cannot guarantee a root.

5. How do you solve an equation using the Bisection Method with an example?

To solve an equation using the Bisection Method, repeatedly halve an interval where the function changes sign until the root is approximated.

  • Example: Solve f(x) = x² − 4.
  • Choose interval [1, 3] since f(1) = −3 and f(3) = 5.
  • Midpoint: c = (1 + 3)/2 = 2.
  • f(2) = 0, so the root is 2.

Thus, the Bisection Method correctly finds the root x = 2.

6. Why does the Bisection Method always converge?

The Bisection Method always converges because it repeatedly halves an interval that is guaranteed to contain a root. Since the interval length after n iterations is (b − a)/2ⁿ, it approaches zero as n increases. This ensures the approximations get arbitrarily close to the actual root.

7. What is the error formula in the Bisection Method?

The maximum error after n iterations in the Bisection Method is (b − a)/2ⁿ. Here, [a, b] is the initial interval. This formula helps estimate how many iterations are needed to achieve a desired accuracy.

8. What is the difference between the Bisection Method and the Newton-Raphson Method?

The key difference is that the Bisection Method uses interval halving while the Newton-Raphson Method uses tangents and derivatives.

  • Bisection requires only continuity and a sign change.
  • Newton-Raphson requires the derivative f′(x).
  • Bisection is slower but guaranteed to converge.
  • Newton-Raphson is faster but may fail if the initial guess is poor.

9. When should you stop the Bisection Method iterations?

You should stop the Bisection Method when the interval width or function value meets a desired tolerance. Common stopping criteria are:

  • |b − a| < ε (interval tolerance).
  • |f(c)| < ε (function value tolerance).
  • A fixed number of iterations is reached.

Here, ε is the required accuracy.

10. What are the advantages and disadvantages of the Bisection Method?

The Bisection Method is a simple and reliable root-finding method, but it has some limitations.

  • Advantages: Guaranteed convergence, simple implementation, no derivative required.
  • Disadvantages: Slow convergence compared to Newton-Raphson, requires a sign-changing interval, finds only one root at a time.

It is commonly used in numerical methods when robustness is more important than speed.