Ordinary Differential Equations
Level: 2 — Recall & Standard Techniques Time limit: 30 minutes Total marks: 40
Answer all questions. Show working where indicated.
Q1. (3 marks) State the order and degree of each ODE, and say whether it is linear or nonlinear: (a) (b)
Q2. (4 marks) Solve the separable equation with . Give the explicit solution.
Q3. (5 marks) Solve using an integrating factor. State the integrating factor explicitly.
Q4. (5 marks) Find the general solution of .
Q5. (4 marks) Find the general solution of in terms of real functions.
Q6. (4 marks) Verify with , is exact, and find the implicit solution.
Q7. (4 marks) Compute and , stating regions of convergence.
Q8. (4 marks) Find the inverse Laplace transform of .
Q9. (4 marks) State the Picard–Lindelöf existence and uniqueness theorem.
Q10. (3 marks) For , state the substitution that linearises it and write the resulting linear ODE.
Answer keyMark scheme & solutions
Q1. (3 marks) (a) Highest derivative → order 2. Highest power of is 3 → degree 3. Contains (product of and derivative) → nonlinear. (1.5) (b) Order 1, degree 1, linear — coefficients depend only on , appears to first power. (1.5)
Q2. (4 marks) Separate: . (1) Integrate: → . (1) Apply : . (1) Explicit: (positive root since ). (1)
Q3. (5 marks) Integrating factor . (1) Multiply: . (2) Integrate: . (1) Solution: . (1)
Q4. (5 marks) Characteristic equation: . (2) Factor: . (2) General solution: . (1)
Q5. (4 marks) Characteristic: . (2) Complex roots with . (1) . (1)
Q6. (4 marks) , → equal, so exact. (1) . (1) . (1) Implicit solution: . (1)
Q7. (4 marks) , ROC . (2) , ROC . (2)
Q8. (4 marks) Complete square: . (1) Rewrite numerator: . (1) . (1) Inverse: . (1)
Q9. (4 marks) If is continuous on a rectangle containing (1), and satisfies a Lipschitz condition in (equivalently continuous) on (2), then there exists a unique solution to the IVP on some interval (1).
Q10. (3 marks) Bernoulli with ; substitution . (1) Then ; dividing original by and substituting gives (1): . (1)
[
{"claim":"Q2 IVP solution y=sqrt(x^2+4) satisfies ODE and IC","code":"x=symbols('x'); y=sqrt(x**2+4); ode=simplify(diff(y,x)-x/y); ic=y.subs(x,0)-2; result=(ode==0) and (ic==0)"},
{"claim":"Q3 general solution satisfies y'+2y=e^-x","code":"x,C=symbols('x C'); y=exp(-x)+C*exp(-2*x); result=simplify(diff(y,x)+2*y-exp(-x))==0"},
{"claim":"Q4 roots of r^2-5r+6 are 2 and 3","code":"r=symbols('r'); result=set(solve(r**2-5*r+6,r))=={2,3}"},
{"claim":"Q8 inverse Laplace gives e^-2t(cos3t - sin3t/3)","code":"s,t=symbols('s t',positive=True); F=(s+1)/(s**2+4*s+13); f=exp(-2*t)*(cos(3*t)-sin(3*t)/3); result=simplify(laplace_transform(f,t,s,noconds=True)-F)==0"}
]