Partial Differential Equations
Level 2 — Recall: Definitions, Standard Problems, Short Derivations
Time: 30 minutes Total Marks: 40
Use / notation for all mathematics. Show working where required.
Q1. Classify each of the following second-order PDEs as elliptic, parabolic, or hyperbolic using the discriminant test : (6 marks)
(a)
(b) (treat as second variable, )
(c) (treat and as the two variables)
Q2. State clearly the difference between an initial value problem (IVP) and a boundary value problem (BVP). Give one example of a PDE naturally posed as each. (4 marks)
Q3. State the Dirichlet conditions for the convergence of the Fourier series of a periodic function . (4 marks)
Q4. For a function of period , write down the full Fourier series and give the integral formulas for the coefficients , , and . (5 marks)
Q5. Find the half-range sine series of on . (5 marks)
Q6. State Parseval's theorem for a Fourier series on (in terms of ). (3 marks)
Q7. State the 1D heat equation and the 1D wave equation. For each, name the physical quantity being modelled and state the meaning of the constant that appears. (4 marks)
Q8. Write down D'Alembert's solution of the wave equation with initial data , on an infinite string. (4 marks)
Q9. Using separation of variables on the heat equation , obtain the two ordinary differential equations for and (introduce a separation constant). (5 marks)
Answer keyMark scheme & solutions
Q1. Discriminant ; elliptic if , parabolic if , hyperbolic if . (1 mark for stated rule, spread across parts)
(a) → elliptic. (2)
(b) : → hyperbolic. (2)
(c) : only is second order, so → parabolic. (2)
Q2. (4 marks)
- IVP: conditions are specified at a single value of the evolution variable (usually time ); the solution is propagated forward in time. (1) Example: heat equation with . (1)
- BVP: conditions are specified on the boundary of the spatial domain (at different points in space). (1) Example: Laplace's equation with prescribed on the boundary of a region. (1)
(Many PDE problems are mixed initial-boundary value problems.)
Q3. Dirichlet conditions (over one period): (4 marks, 1 each)
- is single-valued and (absolutely) integrable over a period.
- has a finite number of maxima and minima in one period.
- has a finite number of finite discontinuities (jumps) in one period.
- Where these hold, the series converges to at points of continuity and to at a jump.
Q4. For period : (5 marks) (2)
Q5. Half-range sine series on , so : (5 marks) (3) Since : (1) (1)
Q6. Parseval's theorem: (3 marks) (2 marks for correct RHS structure, 1 for the term / correct LHS factor.)
Q7. (4 marks)
- Heat equation: (or ). Models temperature in a rod; is the thermal diffusivity. (2)
- Wave equation: . Models transverse displacement of a string; is the wave (propagation) speed. (2)
Q8. D'Alembert's solution: (4 marks) (2 marks for the average term, 2 marks for the correct integral of with and limits.)
Q9. Let . Then , . (1) Substitute into : . (1) Divide by : (2) Hence the two ODEs: (1) (The negative separation constant is chosen so that decaying, non-trivial bounded solutions with typical BCs exist.)
[
{"claim":"Q1(b) discriminant is positive (hyperbolic): B^2-4AC with A=1,B=0,C=-c^2",
"code":"c=symbols('c',positive=True); A,B,C=1,0,-c**2; D=B**2-4*A*C; result=simplify(D-4*c**2)==0 and D.subs(c,1)>0"},
{"claim":"Q1(a) discriminant negative (elliptic)",
"code":"A,B,C=1,0,1; D=B**2-4*A*C; result=(D==-4) and (D<0)"},
{"claim":"Q5 sine coefficient b_n = 2/(pi n)*(1-(-1)**n)",
"code":"n=symbols('n',positive=True,integer=True); x=symbols('x'); bn=simplify(Rational(2,1)/pi*integrate(sin(n*x),(x,0,pi))); result=simplify(bn-2*(1-(-1)**n)/(pi*n))==0"},
{"claim":"Q5 b_3 = 4/(3 pi), b_2 = 0",
"code":"x=symbols('x'); b3=simplify(Rational(2,1)/pi*integrate(sin(3*x),(x,0,pi))); b2=simplify(Rational(2,1)/pi*integrate(sin(2*x),(x,0,pi))); result=(simplify(b3-4/(3*pi))==0) and (b2==0)"}
]