Read this lesson as text

The Root Finding Problem

Numerical Analysis · Axiom Academy

INTRO The Root Finding Problem Where does a function cross zero? Let's explore why this matters and how we might find it. Move the slider to explore the function. A root is where f(x) = 0. Some equations have nice algebraic solutions. Others... don't. Try to find where these functions equal zero: For many important equations, there's no algebraic formula for the exact root. We need numerical methods ! The Intermediate Value Theorem Here's a powerful insight: if f(a) and f(b) have opposite signs, there must be a root between them! Find x* such that f(x*) = 0. This appears everywhere: optimization (f'(x) = 0), equilibrium problems, implicit equations, and more. Bisection (slow but reliable), Newton's Method (fast but needs derivative), Secant Method (fast, no derivative needed). How each method works, when to use which, convergence rates, and potential pitfalls to avoid.

This is the written version of the interactive lesson above. See the full Numerical Analysis course.