Before you can read a single line of the parent note, you need to own every symbol it throws at you. This page builds each one from absolute zero, in an order where each idea leans on the one before it. Nothing here assumes you've seen the notation.
Picture a curve drawn on graph paper. The horizontal axis carries the input x; the vertical axis carries the height y=f(x). Every input x picks out one height on the curve.
Figure s01 — "A function turns an input into one height." A cyan curve y=f(x) on blueprint grid. An amber input value x on the horizontal axis is traced up with a dashed line to the curve, then across to its height y=f(x) on the vertical axis — showing the single input-to-output mapping, and the white line y=0.
On the graph, a root is a point where the curve touches or crosses the horizontal axis — because the axis is exactly the line y=0 ("height =0," from §1).
Figure s02 — "A root is where the curve meets the line y=0." A cyan curve crossing the white horizontal axis at two amber dots; each dot is labelled x∗ with f(x∗)=0, showing that a root is exactly a crossing point of the curve and the zero line.
Figure s05 — "Continuity vs a jump." Left: a smooth cyan curve drawn in one unbroken stroke (continuous — pen never lifts). Right: an amber curve that leaps from below the axis straight to above it — an open circle below and a filled circle above mark the jump, with an arrow noting "no crossing here," showing how a discontinuity lets the curve skip over y=0 without ever touching it.
Figure s03 — "Opposite signs bracket a root." A cyan straight-through curve on the grid; amber dots mark the left endpoint a with f(a)<0 (below the white axis) and the right endpoint b with f(b)>0 (above it). The shaded band between them and a white dot on the axis show the root is trapped inside [a,b] whenever the endpoint heights have opposite signs.
Figure s04 — "The derivative is the slope of the tangent line." A cyan curve with an amber tangent line touching it at a point x=p. A white right-triangle under the tangent labels its "rise" and "run," and an annotation reads f′(p)=rise/run — defining the derivative as the steepness of the curve at that point.
The diagram below shows how these foundations feed the topic: the plain function idea splits into two branches (sign-tracking → bisection, slope-tracking → Newton), and both feed the parent topic Root-Finding from Scratch.
"f of x": feed input x to machine f, read the output height off the curve.
I know what y and the line y=0 are
y is the vertical coordinate (the height f(x)); y=0 is the horizontal axis, all points at height zero.
I know what x∗ is
The exact true root — the input where f(x∗)=0; the star just marks "the real answer," distinct from guesses.
I can decode the subscripts in xn and xn+1
Labels for "the current guess" and "the next guess"; a subscript is a name tag, not a power.
I can define a continuous function on [a,b]
One you can draw across the entire closed interval [a,b] without lifting the pen — no jumps or holes anywhere in it.
I know what [a,b] and its endpoints are
The interval of inputs from left endpoint a to right endpoint b; f(a),f(b) are the heights there.
I know what f(a)⋅f(b)<0 tells me — and its edge case
Opposite signs at the endpoints, so a continuous curve crosses zero inside; but if an endpoint is itself a root then f(a)⋅f(b)=0, so use ≤0 or check endpoints first.
I can state the Intermediate Value Theorem in words
If f is continuous on all of [a,b] and goes from below the axis to above it, it must pass through zero somewhere in between.
I know what ∣en∣ and ε mean
∣en∣ is the size of the gap between guess and true root; ε is the "close enough" tolerance where we stop.
I can explain slope and the tangent line
Slope = rise over run; the tangent is the straight line that matches the curve's direction at a point.
I know what f′(x) is and where it comes from
The derivative: another machine giving the curve's steepness (tangent slope) at x; e.g. for x2−2 it is 2x.
I know the precondition of the Newton step
The step xn+1=xn−f(xn)/f′(xn) is only valid when f′(xn)=0; a flat tangent means divide-by-zero and no crossing.
I understand why f(xn)/f′(xn) appears in Newton
It's height divided by slope = the horizontal run along the tangent needed to reach the axis.
I can derive the bisection step count with the ceiling
Width halves to (b−a)/2n; error ≤ε gives n=⌈log2εb−a−1⌉ (round up, since steps are whole numbers).