Courses / Physics I
Differential Equations and Vector Calculus

Problem-Solving: Differential Equations

Physics I 245 words Free to read

Differential equations and vector calculus problems require choosing the right technique for each situation.

ODE decision tree

  1. First-order? Check if separable, linear, exact, or Bernoulli.
  2. Second-order with constant coefficients? Write the characteristic equation.
  3. Non-homogeneous? Find yhy_h first, then ypy_p by undetermined coefficients or variation of parameters.
  4. System? Write as x=Ax\vec{x}' = A\vec{x} and find eigenvalues.
  5. Initial-value problem with discontinuities? Use Laplace transforms.

Vector calculus decision tree

Need to computeTool
Work along a pathLine integral Fdr\int\vec{F}\cdot d\vec{r}
Flux through surfaceSurface integral FdS\iint\vec{F}\cdot d\vec{S}
Simplify closed-surface fluxDivergence theorem
Simplify circulation integralStokes' theorem
Check if F\vec{F} is conservative×F=0\nabla\times\vec{F} = \vec{0}?

from sympy import symbols, Function, dsolve, Eq
t = symbols('t')
y = Function('y')
ode = Eq(y(t).diff(t, 2) + 4*y(t), 0)
sol = dsolve(ode, y(t))
print(sol)

Verification checklist

Tip: The hardest part of DEs is recognising the type. Once classified, the solution method is mechanical. Practice classification on sight.
Common pitfall: The big theorems (Green, Stokes, divergence) trade a boundary integral for an interior one — the win comes from picking whichever side is easier. If both sides look equally hard, you have not yet exploited the freedom to choose the surface or region.

Practise this lesson

The explanation above is free to read. The graded practice for this lesson lives in the Tryals app.

12practice questions
2interactive scenes
Start Physics I free

Differential Equations and Vector Calculus