Graphical Method for Locating Roots

Summary

The graphical method plots y=f(x) (or y=g(x) and y=h(x) when solving g(x)=h(x) ) to find approximate intervals where roots occur. It is a scouting tool, not a high-precision solver.

Prerequisites

Problem Type

Estimate how many roots exist and where to start numerical methods.

Method Definition

  1. Sample f on a search window.
  2. Mark sign changes or axis crossings.
  3. Optionally plot g and h when solving g(x)=h(x) via f=gh .
  4. Hand off each promising interval to bisection/Newton/secant.

Assumptions / Requirements

Algorithm

  1. Choose a window [A,B] and sample points xi .
  2. Compute f(xi) and look for sign changes or near-zeros.
  3. For each sign change on [xi,xi+1] , record a candidate bracket.
  4. Refine with a numerical method.

Convergence

Not iterative in the algorithmic sense. Finer sampling reduces the chance of missing roots but never replaces a rigorous method.

Error / Accuracy

Graphical estimates are typically accurate only to a fraction of the sample spacing. Always refine numerically.

Worked Example

Let f(x)=x34x+1 on [2,2] .

x f(x)
−2 1
−1 4
0 1
1 −2
2 1

Sign changes on [2,1]? No ( 1 and 4 ). On [0,1] : + to . On [1,2] : to + . Also f(2)=1>0 and f as x , so another root lies left of 2 if the window is extended.

Thus there are three real roots (cubic), not a unique root on [2,2] . The graph suggests brackets near (2.2,2) , (0,1) , and (1,2) . Do not claim uniqueness from a partial plot.

Intersection form: solving g(x)=h(x) is the same problem for f=gh . Example g(x)=x32x+1 , h(x)=x21 gives f(x)=x3x22x+2 with a root at x=1 since f(1)=0 .

Common Failure Modes

Connections

References

Graphical scouting is standard preparation for classical root algorithms.[1]


  1. Burden & Faires, Numerical Analysis; NIST DLMF Ch. 3, https://dlmf.nist.gov/3 ↩︎