Common Pitfalls | Mathematics - Wyatt's Notes
9.9 Worked Example: Lyapunov Function
Section titled “9.9 Worked Example: Lyapunov Function”Problem. Show that is asymptotically stable for the system , .
Solution
Solution. Critical point: and gives .
Choose the Lyapunov function . and for .
This is not negative definite. Let us try :
.
Since for The origin is asymptotically Stable by Lyapunov’s theorem.
9.10 Worked Example: Van der Pol Oscillator
Section titled “9.10 Worked Example: Van der Pol Oscillator”Problem. Show that the Van der Pol equation with Has a unique limit cycle.
Solution
_Solution.* Write as a system: , .
The only critical point is . The Jacobian at the origin is .
, , .
For : complex eigenvalues with positive real part (unstable spiral). For : two positive real eigenvalues (unstable node).
The origin is always unstable. To show existence of a limit cycle, we use a Liénard’s theorem Or construct a trapping region. Define
and write the system as , .
The function has zeros at . For The damping is negative for (energy input) and positive for (energy Dissipation). This creates a unique stable limit cycle that passes through .
A detailed …/1-number-and-algebra/3_proof-and-logic requires constructing an annular region and applying the Poincaré-Bendixson Theorem (the inner boundary encloses the unstable origin; the outer boundary is chosen so that Trajectories point inward).
9.11 Quick Reference: Method Selection
Section titled “9.11 Quick Reference: Method Selection”| ODE Type | Recommended Method | Watch out for |
|---|---|---|
| Separable | Separation of variables | Missing solutions |
| First-order linear | Integrating factor | Correct sign in exponent |
| Constant-coeff linear | Undetermined coefficients | Overlap with homogeneous solution |
| Cauchy-Euler | ansatz | terms for repeated roots |
| Systems near critical pt | Linearisation | Non-hyperbolic points |
| Nonlinear / no closed form | Numerical (RK4) | Step size selection |
Additional Pitfalls
Section titled “Additional Pitfalls”Assuming series solutions always converge everywhere. Frobenius series converge only within the radius of convergence determined by the nearest singularity. For , the series converges at least up to the nearest singularity of or in the complex plane, not necessarily for all .
Confusing the order of a pole in the complex plane with the order of a singular point in an ODE. A regular singular point is one where and are analytic. An irregular singular point has higher-order singularities. These are unrelated to the order of poles in complex analysis.
Forgetting to transform boundary conditions when using Laplace transforms. The Laplace transform incorporates initial conditions at . If the problem has boundary conditions at and , the Laplace transform may not be the right tool — consider using Fourier series or separation of variables instead.
Applying the method of undetermined coefficients when the forcing term is not of the right form. The method works only for forcing terms that are polynomials, exponentials, sines, cosines, or products thereof. For forcing terms like or , use variation of parameters instead.
Ignoring the transient solution in systems. The general solution to a linear ODE is the sum of the complementary solution (transient) and particular solution (steady-state). When studying long-term behaviour, focus on the particular solution, but remember that the transient may be significant at early times.
flowchart TD A[10_Common Pitfalls] --> B[Key Concepts] A --> C[Core Principles] A --> D[Practical Applications] B --> E[Fundamental definitions] C --> F[Design patterns] D --> G[Real-world usage]Intuition
Section titled “Intuition”Differential equations are the language of change. Every pitfall in this file reflects a mismatch between the equation’s structure and the method applied to it. The particular integral must complement, not duplicate, the complementary solution, just as a resonant driving force must be handled differently from a non-resonant one. Separable equations can miss equilibrium solutions because dividing by zero eliminates them. The deeper pattern is that ODE methods are not universal recipes: they work because the equation has specific structural properties, and ignoring those properties produces nonsense.
Cross-References
Section titled “Cross-References”First-Order ODEs: Many pitfalls in higher-order ODEs stem from misunderstanding first-order techniques like separation of variables and integrating factors.
Second-Order Linear ODEs: The characteristic equation method and undetermined coefficients are frequent sources of error when overlap with the homogeneous solution occurs.
Stability and Phase Plane Analysis: Non-hyperbolic critical points and incorrect linearisation are common mistakes in stability analysis.
Series Solutions: Confusing ordinary and regular singular points leads to incorrect application of the Frobenius method.