A topic in the Open Knowledge Graph — a free, open map of 15,290 topics and the order to learn them in.

Bisection Method for Root Finding

Graduate Depth 100 in the knowledge graph I know this Set as goal
1topic build on this
461prerequisites beneath it
See this on the map →
Intermediate Value TheoremNewton's Method: Convergence Analysis+2 moreOrder of Convergence
root-finding bisection convergence

Core Idea

The bisection method finds roots by repeatedly halving an interval where the function changes sign, guaranteed by the intermediate value theorem. Each iteration halves the remaining uncertainty, achieving linear convergence. Although slow, bisection is robust and requires only continuity and an initial sign change, with no derivatives or special tuning needed.

How It's Best Learned

Implement bisection for simple functions like x³ - 2 = 0, tracking how the interval shrinks with each iteration and observing linear error reduction.

Common Misconceptions

Explainer

The Intermediate Value Theorem — your prerequisite — states that if a continuous function f takes a positive value at one point and a negative value at another, it must cross zero somewhere in between. The bisection method turns that existence guarantee into a practical algorithm: if f(a) < 0 and f(b) > 0, evaluate f at the midpoint m = (a+b)/2. If f(m) < 0, the root must lie in [m, b]; if f(m) > 0, it must lie in [a, m]. Either way, you have halved the interval containing the root. Repeat until the interval is as small as you need.

The algorithm's simplicity is its greatest strength. At each step, you evaluate f exactly once and discard exactly half the remaining uncertainty. After n iterations, the interval containing the root has width (b − a)/2ⁿ. To achieve error ε, you need n ≈ log₂((b − a)/ε) iterations — computable in advance. There is no guessing, no tuning, no reliance on derivatives or smoothness beyond continuity. Bisection is the most trustworthy root-finding method precisely because it requires so little: a continuous function and an initial bracket [a, b] with a sign change.

The downside is linear convergence: the number of correct decimal digits grows by roughly 0.3 per iteration (since each step multiplies the error by 1/2 and log₁₀(1/2) ≈ −0.301). To gain one decimal digit of precision costs about 3.3 iterations; to gain ten digits costs 33 iterations. Faster methods like Newton's method achieve *quadratic convergence* — they roughly double the number of correct digits per iteration — but they require f'(x) and can fail if they wander away from the root. Bisection never wanders; it is the reliable backup when faster methods misbehave.

Choosing the initial bracket is the step that requires human judgment — bisection cannot do it for you. You might plot f to find sign changes, sample at several points, or use domain knowledge about where roots should be. Once you have a valid bracket, however, bisection takes over entirely and delivers a guaranteed result. In practice, numerical analysts often use bisection to get close to a root and then switch to a faster method (a hybrid approach exemplified by Brent's method). Understanding bisection gives you the conceptual anchor for all such strategies: controlled halving of uncertainty is the most fundamental idea in numerical root-finding.

Practice Questions 5 questions

Prerequisite Chain

Understanding ZeroThe Number ZeroCounting to FiveCounting to 10Counting to 20Counting a Set of Objects Up to 20Cardinality: The Last Number CountedMatching Numerals to QuantitiesSubitizing Small QuantitiesAddition Within 10Number Bonds to 10Addition Within 20Doubles and Near DoublesDoubles Facts Within 10Near Doubles Facts Within 20Mental Math Strategies for AdditionMental Math: Adding and Subtracting TensAddition Within 100Repeated Addition as MultiplicationMultiplication as Equal GroupsMultiplication: ArraysBasic Multiplication Facts (0s, 1s, 2s, 5s, 10s)Multiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Multiplication and Division Fact FamiliesRelationship Between Multiplication and DivisionDivision Facts as Inverse of MultiplicationRemainders and Quotients in DivisionDivision Word ProblemsMulti-Step Word ProblemsSolving Multi-Step Word ProblemsMultiplication Word ProblemsDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueIntegers and the Number LineComparing and Ordering IntegersAbsolute ValueAdding IntegersSubtracting IntegersMultiplying IntegersDividing IntegersUnit RatesProportionsPercent ConceptConverting Between Fractions, Decimals, and PercentsOperations with Rational NumbersTwo-Step EquationsSolving Multi-Step EquationsEquations with Variables on Both SidesAngle Pairs: Complementary, Supplementary, and VerticalParallel Lines and TransversalsCorresponding AnglesAlternate Interior AnglesTriangle Angle Sum TheoremExterior Angle TheoremTriangle Inequality TheoremSimilar Triangles: AA SimilaritySimilar Triangles: SSS and SAS SimilarityProportions in Similar TrianglesRight Triangle Trigonometry IntroductionSine, Cosine, and Tangent RatiosTrigonometric Ratios ReviewRadian MeasureConverting Between Degrees and RadiansThe Unit CircleGraphing Sine and CosineGraphing Tangent and Reciprocal Trigonometric FunctionsDerivatives of Trigonometric FunctionsAntiderivativesIndefinite IntegralsBasic Integration RulesRiemann SumsDefinite Integral DefinitionFundamental Theorem of Calculus Part 1Fundamental Theorem of Calculus Part 2U-SubstitutionPartial Fraction Decomposition for IntegrationImproper Integrals - ConvergenceIntegral TestP-SeriesComparison TestLimit Comparison TestSeries Convergence Test StrategyPower SeriesRadius and Interval of ConvergenceTaylor SeriesNewton's Method: Convergence AnalysisSecant MethodBisection Method for Root Finding

Longest path: 101 steps · 461 total prerequisite topics

Prerequisites (4)

Leads To (1)