Back to Computer Fundamentals And Programming repository
Computer Fundamentals And Programming2D

Numerical Methods - Theory & Concepts

An introduction to numerical methods for solving engineering problems: root finding, linear systems, integration, ODEs, and error analysis.

Open the complete lesson

Bisection Method

Finding root for f(x)=x24f(x) = x^2 - 4

a = 0.000
b = 4.000
Midpoint c = 2.000
f(c) = 0.000
-1
0
1
2
3
The algorithm repeatedly halves the interval [a, b] and selects the subinterval containing the root.