ODE Solver
Solve first-order ordinary differential equations of the form dy/dx = f(x, y) numerically using Euler's method.
Euler's Method:
yₙ₊₁ = yₙ + h * f(xₙ, yₙ)
Where:
- h = step size
- y₀ is initial condition at x₀
- f(x, y) is the ODE function
Use standard notation for functions in x and y. The calculator uses numeric approximation via Euler's method.