Partial Differential Equations
Time limit: 20 minutes
Total marks: 30
Instructions: Answer all questions. For True/False questions, a one-line justification is required for full marks. Use notation for any mathematics.
Section A — Multiple Choice (1 mark each)
Q1. The PDE is classified as:
- (a) parabolic (b) hyperbolic (c) elliptic (d) mixed
Q2. For a second-order PDE , the discriminant test uses:
- (a) (b) (c) (d)
Q3. The 1D heat equation is:
- (a) elliptic (b) parabolic (c) hyperbolic (d) first order
Q4. The 1D wave equation is:
- (a) elliptic (b) parabolic (c) hyperbolic (d) undefined
Q5. D'Alembert's solution of the wave equation has the general form:
- (a) (b) (c) (d)
Q6. A half-range cosine series represents a function using:
- (a) only sine terms (b) only cosine terms (and constant) (c) both (d) exponentials only
Q7. Which condition is NOT part of the Dirichlet conditions for Fourier convergence?
- (a) is periodic (b) finite number of maxima/minima (c) is infinitely differentiable (d) finite number of finite discontinuities
Q8. A Neumann boundary condition specifies:
- (a) the value of on the boundary (b) the normal derivative on the boundary (c) everywhere (d) periodicity
Q9. Parseval's theorem relates the integral of to:
- (a) the derivative of (b) the sum of squares of Fourier coefficients (c) the Laplace transform (d) the discriminant
Q10. Laplace's equation describes a physical system in:
- (a) transient heating (b) steady state (c) wave motion (d) shock formation
Section B — Matching (1 mark each, Q11–Q15)
Match each equation/term in Column X to its correct description in Column Y.
| # | Column X | Column Y | |
|---|---|---|---|
| Q11 | A | eigenvalue problem with orthogonal eigenfunctions | |
| Q12 | Sturm–Liouville problem | B | diffusion / heat conduction |
| Q13 | C | steady-state temperature / potential | |
| Q14 | D | Fourier transform definition | |
| Q15 | Convolution theorem | E |
Section C — True/False with justification (2 marks each: 1 T/F + 1 justification)
Q16. An initial value problem (IVP) specifies conditions at a single value of the time variable, whereas a boundary value problem (BVP) specifies conditions at the ends of the spatial domain. (2)
Q17. Separation of variables assumes a solution of the form . (2)
Q18. The discriminant implies the PDE is hyperbolic. (2)
Q19. Laplace's equation on a disk is naturally solved in polar coordinates, and the radial part leads to Bessel-type/Euler equations. (2)
Q20. Finite difference methods approximate derivatives by replacing them with difference quotients on a grid. (2)
Answer keyMark scheme & solutions
Section A (1 mark each)
Q1. (c) elliptic. Laplace's equation; . (1)
Q2. (a) . Standard discriminant test. (1)
Q3. (b) parabolic. Write : only present, so , . (1)
Q4. (c) hyperbolic. : , . (1)
Q5. (b) . Superposition of right- and left-travelling waves. (1)
Q6. (b) only cosine terms (and constant). Even extension → cosine series. (1)
Q7. (c) is infinitely differentiable. Dirichlet conditions require only piecewise smoothness, not infinite differentiability. (1)
Q8. (b) the normal derivative on the boundary. Definition of Neumann condition. (1)
Q9. (b) sum of squares of Fourier coefficients. Energy identity. (1)
Q10. (b) steady state. No time dependence; equilibrium. (1)
Section B (1 mark each)
Q11 → B (heat/diffusion). (1)
Q12 → A (eigenvalue problem, orthogonal eigenfunctions). (1)
Q13 → D (Fourier transform definition). (1)
Q14 → C (steady-state potential). (1)
Q15 → E (convolution theorem). (1)
Section C (2 marks each: 1 for correct T/F, 1 for justification)
Q16. TRUE. (1) Justification: IVP gives data at (e.g. initial temperature/displacement); BVP gives data at spatial boundaries . Many PDEs are mixed IBVPs. (1)
Q17. TRUE. (1) Justification: We seek product solutions so that the PDE separates into ODEs in each variable equated to a separation constant. (1)
Q18. FALSE. (1) Justification: is parabolic; is hyperbolic, is elliptic. (1)
Q19. TRUE. (1) Justification: Separation in gives and an Euler equation ; with a Helmholtz-type term it becomes Bessel's equation, hence the Bessel-function connection. (1)
Q20. TRUE. (1) Justification: e.g. , ; derivatives replaced by grid differences. (1)
[
{"claim":"Laplace u_xx+u_yy: discriminant B^2-4AC = -4 < 0 (elliptic)",
"code":"A,B,C=1,0,1; disc=B*B-4*A*C; result=(disc<0)"},
{"claim":"Wave u_tt - c^2 u_xx: discriminant > 0 (hyperbolic)",
"code":"c=symbols('c',positive=True); A,B,C=1,0,-c**2; disc=B*B-4*A*C; result=simplify(disc>0)==True or disc.subs(c,2)>0"},
{"claim":"Heat equation: discriminant = 0 (parabolic)",
"code":"al=symbols('alpha',positive=True); A,B,C=-al,0,0; disc=B*B-4*A*C; result=(simplify(disc)==0)"},
{"claim":"D'Alembert form f(x-ct)+g(x+ct) satisfies u_tt=c^2 u_xx",
"code":"x,t,c=symbols('x t c'); f=Function('f'); g=Function('g'); u=f(x-c*t)+g(x+c*t); result=simplify(diff(u,t,2)-c**2*diff(u,x,2))==0"}
]