1. Exponential Growth Integration
Applied Mathematics StudentBackground
Studying numerical integration methods for autonomous ODEs and verifying convergence on dy/dx = y.
Problem
Calculate y(1) given y(0) = 1 in 10 steps and compare the numerical result directly with the exact solution e^x.
How to use
Set f(x, y) to 'y', x₀ to 0, y₀ to 1, target x to 1, steps to 10, and exact solution to 'e^x'.
f(x, y) = y, x0 = 0, y0 = 1, xEnd = 1, steps = 10, exactY = e^x, decimalPlaces = 6Outcome
Yields an approximate value of y(1) ≈ 2.718280 with stage breakdown k1–k4 and an absolute error of 0.000002.