The document discusses two bracketing root-finding methods: the bisection method and the false position method.
The bisection method takes an initial interval [a,b] where the function changes sign, finds the midpoint c, and discards either [a,c] or [c,b] based on the sign of f(c). It repeats until the interval size is below a tolerance.
The false position method also takes an initial interval [a,b] where f changes sign. It finds the x-value x1 of the point where the line through (a,f(a)) and (b,f(b)) crosses the x-axis. It then discards either [a