(* *) (* Numerical Mathematics and Computing, Fifth Edition *) (* Ward Cheney & David Kincaid *) (* Brooks/Cole Publ. Co. *) (* (c) 2004 *) (* No warranties implied or expressed. *) (* File: ode1 *) (* numerical solution ODE & plot curve *) NDSolve[{x'[t] == x[t], x[0] == 1}, x, {t, 0, 4}] x[2] /. % Plot[Evaluate[x[t] /. %%], {t, 0, 4}]