Tutorial 3 steps, run in order in one session. Every step was executed against the engine and the output below is what it produced.
Needs["DifferentialEquations`NDSolveProblems`"];
Needs["DifferentialEquations`NDSolveUtilities`"];No output - this step sets something up for the next one.
NDSolve[{y'[t] == -y[t], y[0] == 1}, y[t], {t, 0, 1},
Method -> "ExplicitEuler", "StartingStepSize" -> 1 / 10]{{y[t] -> InterpolatingFunction[{{0., 1.}}, <>][t]}}NDSolve[{y'[t] == -y[t], y[0] == 1}, y[t], {t, 0, 1},
Method -> "ExplicitMidpoint", "StartingStepSize" -> 1 / 10]{{y[t] -> InterpolatingFunction[{{0., 1.}}, <>][t]}}All recipes · Function reference · Use this from an MCP client