Iteration table
Graph
Drag to pan; mouse wheel to zoom; double-click resets. Axes are \(x\) and \(y\) in your input units.
Math Calculus • Differential Equations
Drag to pan; mouse wheel to zoom; double-click resets. Axes are \(x\) and \(y\) in your input units.
Euler's method approximates the solution y(x) to an initial value problem y' = f(x,y) starting from (x0, y0). It advances in steps of size h using y_{n+1} = y_n + h f(x_n, y_n).
Smaller |h| typically improves accuracy but increases the number of steps and computation time. A practical approach is to halve h and check whether the table and graph change noticeably over the interval.
If the target x_end is less than x0, the method must move in the negative x direction. The tool determines the direction from x_end - x0 while using the magnitude |h| for the step size.
Connect-points draws straight line segments between successive Euler points (x_n, y_n). Stair-step draws a horizontal move in x followed by a vertical move in y, emphasizing the piecewise update behavior.