Find roots by following tangent lines — watch it converge
The Newton-Raphson method finds where f(x) = 0 by iterating: start with a guess x₀, draw the tangent line at that point, and see where it hits the x-axis — that's your next, better guess. The formula is:
x_{n+1} = x_n − f(x_n) / f'(x_n)
The graph shows f(x) = x³ − 2x − 5, which has a root near x = 2. Watch how each tangent line gets you closer and closer to the exact root. It's like a mathematical GPS — each step cuts the error dramatically.