🌍 Differential Equations · subject
Differential Equations Numerical Methods for Differential Equations Syllabus
Every chapter and topic of Numerical Methods for Differential Equations examined in Differential Equations — 4 chapters, 11 topics, plus 59 flashcards written against it.
Numerical Methods for Differential Equations syllabus — full chapter and topic list
Expand any chapter to see its topics and sub-topics. This is the whole examinable outline for Numerical Methods for Differential Equations in Differential Equations, not a summary of it.
-
Single-Step Methods
3 topics- Euler's Method
- Improved Euler and Heun's Method
- Runge-Kutta Methods
-
Multistep and Adaptive Methods
3 topics- Adams-Bashforth and Adams-Moulton Methods
- Predictor-Corrector Schemes
- Adaptive Step-Size Control
-
Numerical Analysis Considerations
3 topics- Stability and Stiff Equations
- Convergence and Consistency
- Numerical Solution of Systems and Higher-Order Equations
-
Boundary-Value Problem Methods
2 topics- Shooting Method
- Finite Difference Method
Numerical Methods for Differential Equations flashcards for Differential Equations
18 of 59 cards from the Numerical Methods for Differential Equations deck — real questions with worked answers.
What is the general form of the initial value problem (IVP) that one-step numerical methods aim to solve?
$$\frac{dy}{dx} = f(x,y), \qquad y(x_{0}) = y_{0}$$ where we seek an approximation to $y(x)$ on some interval.
State the update formula for the (forward/explicit) Euler's Method.
$$y_{n+1} = y_{n} + h\,f(x_{n}, y_{n})$$ where $h$ is the step size and $x_{n} = x_{0} + nh$.
What is the geometric interpretation of Euler's Method?
It advances the solution along the tangent line at $(x_{n}, y_{n})$: the slope $f(x_{n},y_{n})$ is followed for one step of length $h$ to reach the next point.
What is the local truncation error (per step) of Euler's Method in terms of $h$?
$O(h^{2})$. The local error per step is proportional to $h^{2}$, specifically $\frac{h^{2}}{2}y''(\xi)$.
What is the global (accumulated) error order of Euler's Method?
$O(h)$. Euler's Method is a first-order method: halving $h$ roughly halves the global error.
State the update formula for the backward (implicit) Euler Method.
$$y_{n+1} = y_{n} + h\,f(x_{n+1}, y_{n+1})$$ It is implicit because $y_{n+1}$ appears on both sides and must be solved for.
Why is the backward Euler Method preferred over forward Euler for stiff equations?
Backward Euler is A-stable (unconditionally stable), so it remains stable for any step size $h$ on stiff problems, whereas forward Euler requires very small $h$ to stay stable.
State the Improved Euler / Heun's Method formulas (predictor-corrector form).
Predictor: $\tilde{y}_{n+1} = y_{n} + h f(x_{n}, y_{n})$. Corrector: $$y_{n+1} = y_{n} + \frac{h}{2}\left[f(x_{n}, y_{n}) + f(x_{n+1}, \tilde{y}_{n+1})\right]$$
What is the global error order of Heun's (Improved Euler) Method?
$O(h^{2})$ — it is a second-order method, with local truncation error $O(h^{3})$.
What idea makes Heun's Method more accurate than Euler's Method?
It averages the slope at the start of the interval with the slope at the predicted endpoint, using the mean slope $\frac{1}{2}(k_{1}+k_{2})$ rather than only the initial slope.
State the update formula for the Midpoint (Modified Euler) Method.
$$y_{n+1} = y_{n} + h\,f\!\left(x_{n} + \frac{h}{2},\; y_{n} + \frac{h}{2}f(x_{n}, y_{n})\right)$$ It is a second-order method that evaluates the slope at the interval midpoint.
Write the four stage slopes $k_{1},k_{2},k_{3},k_{4}$ of the classical fourth-order Runge-Kutta (RK4) method.
$$k_{1}=f(x_{n},y_{n}),\quad k_{2}=f\!\left(x_{n}+\tfrac{h}{2},\,y_{n}+\tfrac{h}{2}k_{1}\right)$$ $$k_{3}=f\!\left(x_{n}+\tfrac{h}{2},\,y_{n}+\tfrac{h}{2}k_{2}\right),\quad k_{4}=f(x_{n}+h,\,y_{n}+hk_{3})$$
State the update (weighted-average) formula for the classical RK4 method.
$$y_{n+1} = y_{n} + \frac{h}{6}\left(k_{1} + 2k_{2} + 2k_{3} + k_{4}\right)$$
What are the local and global error orders of the classical RK4 method?
Local truncation error is $O(h^{5})$; global error is $O(h^{4})$ (fourth-order accurate).
How many function evaluations of $f$ per step does classical RK4 require?
Four evaluations per step ($k_{1}$ through $k_{4}$).
What is the general form of an explicit $s$-stage Runge-Kutta method?
$$y_{n+1} = y_{n} + h\sum_{i=1}^{s} b_{i} k_{i}, \qquad k_{i} = f\!\left(x_{n}+c_{i}h,\; y_{n} + h\sum_{j<i} a_{ij} k_{j}\right)$$
What is a Butcher tableau used to represent?
It compactly encodes the coefficients of a Runge-Kutta method: the matrix $a_{ij}$ (nodes' internal weights), the nodes $c_{i}$, and the weights $b_{i}$, arranged as $\begin{array}{c|c} c & A \\ \hline & b^{T}\end{array}$.
What consistency condition must the weights $b_{i}$ of any Runge-Kutta method satisfy?
$$\sum_{i=1}^{s} b_{i} = 1$$ (the weights must sum to 1 for at least first-order consistency).
See more Numerical Methods for Differential Equations flashcards →
Planning Numerical Methods for Differential Equations for Differential Equations
Numerical Methods for Differential Equations is about 11% of the Differential Equations syllabus by topic count — 11 of 100 topics, spread over 4 chapters. At roughly 45 minutes per topic plus 12 minutes per sub-topic, a first pass runs to about 8 hours.
The heaviest chapters are Single-Step Methods (3 topics), Multistep and Adaptive Methods (3 topics), Numerical Analysis Considerations (3 topics) . Front-load those while your energy is high; the short chapters are better revision filler later.
Work top-down: read the chapter, then tick topics off individually rather than marking the whole chapter done. Sub-topics are where silent gaps hide.
Numerical Methods for Differential Equations (Differential Equations) FAQ
What is in the Differential Equations Numerical Methods for Differential Equations syllabus?
Numerical Methods for Differential Equations is split into 4 chapters — Single-Step Methods, Multistep and Adaptive Methods, Numerical Analysis Considerations and Boundary-Value Problem Methods, containing 11 topics and 0 sub-topics in total.
How many chapters are there in Numerical Methods for Differential Equations for Differential Equations?
4 chapters. Numerical Methods for Differential Equations accounts for about 11% of the topics in the whole Differential Equations syllabus (11 of 100).
How long should I spend on Numerical Methods for Differential Equations for Differential Equations?
Budget around 8 hours for a first pass through Numerical Methods for Differential Equations — about 45 minutes per topic plus 12 minutes per sub-topic across its 11 topics. Add revision cycles on top.
Are there flashcards for Differential Equations Numerical Methods for Differential Equations?
Yes — a 59-card Numerical Methods for Differential Equations deck. Sample cards are printed on this page, and the full deck is free in the Examius app with spaced repetition scheduling.