Vocab
Mean value theorem
Math glossaryMean value theorem
f(c)=f(b)f(a)baf'(c)=\frac{f(b)-f(a)}{b-a}

Guarantees an instantaneous rate equal to an interval's average rate.

Learn more
Critical number
Math glossaryCritical number
f(c)=0 or undefinedf'(c)=0\ \text{or undefined}

A domain input where the derivative is zero or does not exist.

Learn more
Local maximum
Math glossaryLocal maximum
f(c)f(x)f(c)\ge f(x)

A function value at least as large as nearby values.

Learn more
Concavity
Math glossaryConcavity
f(x)>0concave upf''(x)>0\Rightarrow\text{concave up}

Describes whether graph slopes are increasing or decreasing.

Learn more
Linearization
Math glossaryLinearization
L(x)=f(a)+f(a)(xa)L(x)=f(a)+f'(a)(x-a)

A tangent-line approximation near a chosen input.

Learn more
Math glossary

Newton's method: approximating roots with tangent lines

Use the tangent line at a current guess to generate a better root estimate, then monitor whether the iteration is actually improving.

LaTeX article Updated July 13, 2026

xn+1=xnf(xn)f(xn)x_{n+1}=x_n-\frac{f(x_n)}{f'(x_n)}

A tangent line predicts where the graph reaches zero

At xₙ, the tangent line approximates the graph. Solving that line for its x-intercept produces the next estimate xₙ₊₁.

The formula is therefore a geometric construction, not an unexplained numerical trick. Its quality depends on how well the tangent represents the function nearby.

0f(xn)+f(xn)(xn+1xn)0\approx f(x_n)+f'(x_n)(x_{n+1}-x_n)

A starting value can decide success

A guess close to a simple root often converges quickly. A poor guess can jump to another root, cycle, or move into a region where the derivative vanishes.

A graph or sign-changing interval helps select a sensible start. Newton's method should not be treated as guaranteed for every differentiable-looking formula.

f(xn)=0the Newton step is undefinedf'(x_n)=0\quad\Rightarrow\quad\text{the Newton step is undefined}

Stop with a stated accuracy rule

Common stopping rules compare successive estimates or check the residual |f(xₙ)|. State the tolerance instead of stopping because a decimal display looks stable.

Round only the reported result. Carry extra digits during iteration so rounding error does not steer later steps.

xn+1xn<εorf(xn)<ε|x_{n+1}-x_n|<\varepsilon\quad\text{or}\quad|f(x_n)|<\varepsilon

Worked example

Common mistakes

  • Using f(xₙ) where f′(xₙ) belongs.
  • Starting where the derivative is zero or nearly zero.
  • Rounding every intermediate estimate aggressively.

Keep these ideas

  • Each step is a tangent-line x-intercept.
  • Convergence depends on the starting point.
  • Use an explicit stopping rule.