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

Secant Method

Graduate Depth 99 in the knowledge graph I know this Set as goal
2topics build on this
460prerequisites beneath it
See this on the map →
Newton's Method: Convergence AnalysisBisection Method for Root FindingBisection Method for Root Finding
secant-method root-finding finite-difference

Core Idea

The secant method approximates Newton's method by replacing f'(x_n) with a finite difference: x_{n+1} = x_n - f(x_n)[x_n - x_{n-1}]/[f(x_n) - f(x_{n-1})]. It avoids computing derivatives, requiring only function values at two initial points. The secant method converges superlinearly (faster than linear, slower than quadratic) with order ≈ 1.618.

Explainer

Newton's method is powerful but has a cost: it requires evaluating both f(x) and f'(x) at every step. The secant method eliminates the derivative by approximating f'(xₙ) with a finite difference — the slope of the line connecting the two most recent iterates. Instead of the tangent line at xₙ, you draw a line through (xₙ₋₁, f(xₙ₋₁)) and (xₙ, f(xₙ)) — the secant line — and find where it crosses zero. This gives x_{n+1} = xₙ − f(xₙ) · (xₙ − xₙ₋₁) / (f(xₙ) − f(xₙ₋₁)).

A key structural difference from Newton's method is that the secant method requires two starting points x₀ and x₁, not one, because the finite difference needs two function evaluations to approximate the slope. At each step, you carry the two most recent iterates, discard the oldest, and compute the next. Each step costs one new function evaluation (the other point is already known), compared to Newton's one function evaluation plus one derivative evaluation. When derivatives are expensive to compute — or unavailable, as when f comes from a black-box simulation — this trade is attractive.

The convergence order of the secant method is approximately φ = (1 + √5)/2 ≈ 1.618, the golden ratio. This sits between linear convergence (order 1, like bisection) and Newton's quadratic convergence (order 2). The golden ratio emerges from the error recurrence: letting eₙ = xₙ − r be the error at step n, the secant method satisfies |e_{n+1}| ≈ C|eₙ||eₙ₋₁| for some constant C near the root. To find the order α such that |eₙ| ~ C'|eₙ₋₁|^α, substitute |eₙ| ~ |eₙ₋₁|^α into the recurrence: |eₙ₋₁|^α ≈ C|eₙ₋₁|^α · |eₙ₋₁| requires α = 1 + 1/α, giving α² = α + 1 — the defining equation of the golden ratio.

When should you choose the secant method over Newton's? Use the secant method when (1) computing f'(x) is significantly more expensive than computing f(x), (2) a closed-form derivative is unavailable, or (3) f is given only numerically. The trade-off is clear in terms of work per accuracy: Newton reaches 16-digit precision in roughly 5 iterations from a good start (quadratic convergence doubles the digits each step), while the secant method may need 7–8 iterations for the same accuracy. But if each derivative evaluation costs more than one function evaluation, the secant method's total computational cost can be lower. For functions where f and f' cost equally, Newton's is usually faster in practice.

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 Method

Longest path: 100 steps · 460 total prerequisite topics

Prerequisites (1)

Leads To (2)