Help with Ordinary Differential Equations
Prof. Richard B. Goldstein

More detailed
help with

JavaScript Syntax

(x2 + 2x - 1)5/3 is Math.pow((x*x+2*x-1),5/3)
eqsample is Math.sqrt(Math.sin(x)/(Math.pow(2,x)+3*Math.log(x)))
Problem: y' = y - t2 + 1, given y(0) = 0.5
Solution: y = (t + 1)2 - 0.5et
Method Euler Corrected
Euler
Runge-Kutta Exact
y(2) 4.865785 5.23055 5.305363 5.305472
Error 0.439687 0.072417 0.000104 0

ode1

Formulas: ode2

Return to Ordinary Differential Equations Procedure