4.6.2 · D5Ordinary Differential Equations

Question bank — Direction fields and Euler's method — visual - numerical intuition first

1,613 words7 min readBack to topic

True or false — justify

Every answer below demands a reason, never a bare yes/no.

The length of a direction-field segment tells you how fast the solution changes.
False. Only the tilt (slope) of a segment carries meaning; length is purely cosmetic. A steep short dash and a steep long dash mean the identical slope .
For , two different solution curves can cross each other at a point.
False in general. Where is nice (continuous with bounded ), Existence and Uniqueness (Picard–Lindelöf) guarantees exactly one curve through each point, so they cannot cross — a crossing would force two slopes at one point.
If depends only on , every dash in the same vertical column is parallel.
True. The slope is fixed once is fixed, so it does not change as you move up/down that column — all those dashes share one tilt.
If depends only on , every dash in the same horizontal row is parallel.
True. By the same logic: fixing fixes the slope , so along a horizontal line (constant ) all dashes match.
Halving the step size roughly halves Euler's total error.
True. Global error is (first order), so error scales linearly with — halve , halve the error, approximately.
Halving halves the error per step.
False. The per-step (local truncation) error is , so halving makes each step's error about four times smaller — but you take twice as many steps, netting the global result.
Euler's method is exact whenever the true solution is a straight line.
True. If everywhere the discarded term vanishes, so the tangent step lands exactly on the curve — Euler has zero error.
Euler always undershoots the true solution.
False. It undershoots only when the curve is convex (), because tangents lie below it. For a concave curve () tangents lie above, so Euler overshoots.
Isoclines are themselves solution curves of the ODE.
False. An isocline is just the set of points sharing slope ; a solution is tangent to the field, not required to follow an isocline. They only coincide by accident.
Taking more and more Euler steps guarantees you approach the true answer.
False in practice. Truncation error as , but rounding error accumulates with more steps, and stiff equations can blow up — so smaller is not unconditionally safe.

Spot the error

Each statement contains one flaw. Name it and fix it.

"Euler step: ."
Missing the step size. is a slope, not a rise; you must multiply by the run : . Check units: .
"To be accurate, evaluate the slope at the point you're heading to: ."
That is a different method — implicit (backward) Euler. Explicit Euler must use the slope at the point it is leaving, , because is not yet known.
"The direction field arrows show the direction the particle moves through time."
They are not velocity vectors. Each segment only marks the tangent direction of the solution at that point; it has no speed and no time-orientation.
"Since at gives slope , after a step of the new is ."
Forgot to scale by . Rise , so , not .
"An isocline is the curve where the solution has slope zero."
That is only the special isocline . An isocline is for any fixed ; the one (horizontal dashes) is just one member of the family.
"Because Euler is convergent, its answer for finite equals the exact solution."
Convergence means error as , a limiting statement. For any finite there is a genuine error; convergent exact.
" means the curve slopes upward, so Euler overshoots."
means the curve is convex (bends upward), not that it rises. Tangents to a convex curve lie below it, so Euler undershoots, not overshoots.

Why questions

Why does the ODE give a field of slopes rather than a single curve?
Because assigns a slope to every point in the plane; you only pin down one curve after you also fix an initial condition to say where to start.
Why do we drop the term to get Euler?
We usually don't know , and for small that term is tiny compared to . Dropping it turns the exact Taylor expansion into a computable one-step rule — at the cost of a known per-step error.
Why is the global error one order worse () than the local error ()?
To cross a fixed interval of length you take steps, each contributing : total . More steps dilute the extra accuracy.
Why does explicit Euler use the left endpoint's slope?
Because at the moment of stepping you only know ; the slope is computable, while needs the unknown you're trying to find.
Why do isoclines make hand-sketching so fast?
Along one isocline every dash has the same tilt, so you draw a whole family of parallel dashes at once instead of computing point by point — the field appears almost for free.
Why do methods like RK4 beat Euler?
They sample the slope at several points within each step and blend them, cancelling more Taylor terms, so their error is — dramatically smaller for the same .
Why can't Euler follow a solution through a point where blows up?
An infinite slope has no finite tangent step; the local linear approximation breaks down, and near such singularities uniqueness may fail too — the "follow your nose" picture stops making sense.

Edge cases

If , what does one Euler step give?
— you never move. A zero step is degenerate: no progress, no error either, and infinitely many steps to go anywhere.
What does the direction field look like where ?
A horizontal dash (slope ). Solutions passing through are momentarily flat there; if on a whole curve it may be an equilibrium the solution levels off toward.
What happens to Euler on the exact straight-line solution of constant?
It is exact at every step, since kills the truncation term. Euler and the true solution coincide regardless of .
For a separable ODE you can solve exactly, why still bother with Euler?
To verify the numerical method against a known answer and to build intuition; but if a closed form exists, the exact solution is preferred — Euler shines when no formula is available.
What can happen on a stiff equation even with a "small" ?
Explicit Euler can become unstable and oscillate or blow up unless is extremely tiny; the step size must respect a stability limit, not just accuracy — this is the domain of Stability and Stiff Equations.
At a point where two solution curves would have to touch but not cross, is the field ambiguous?
If uniqueness holds, only one slope exists there so no ambiguity; ambiguity signals or misbehaving, where the single-arrow picture cannot be trusted.
If the true solution is concave () everywhere on the interval, which way does Euler err?
It overshoots: tangents to a concave curve lie above it, so each step lands too high, the mirror image of the convex undershoot.

Active recall

Recall One-line traps to self-quiz
  • Segment length meaning? → None; only tilt matters.
  • Curves crossing under uniqueness? → Impossible.
  • Missing factor in wrong Euler formula? → The step .
  • Euler on a straight-line solution? → Exact.
  • Convex curve → Euler? → Undershoots.
  • Concave curve → Euler? → Overshoots.
  • Global error order? → .

Connections