Bisection repeatedly halves an interval known to contain a root (requires sign change).
Newton-Raphson uses the tangent line: xn+1 = xn − f(xn)/f'(xn). Quadratic convergence when it works.
Secant approximates the derivative with a finite difference, needing two starting points.