Build a solution curve from tiny straight segments
Euler's method approximates the solution to a differential equation dy/dx = f(x, y) by taking small steps. At each point, the derivative tells you the slope — draw a tiny straight segment in that direction, then repeat from the new point.
We'll start with a classic: dy/dx = y, starting at (0, 1). The exact solution is y = eˣ, but Euler's method builds an approximation using only addition and multiplication — no calculus needed to execute it.
The smaller the step size, the closer the approximation gets to the true curve. Ask the AI "Take 5 steps with h = 0.5" or "Compare h = 1 vs h = 0.1."