Analytical Mechanics
Level: 2 (Recall — definitions, standard problems, short derivations) Time Limit: 30 minutes Total Marks: 50
Instructions: Answer all questions. Use notation for mathematics where needed. Marks are indicated in brackets.
Q1. Define a holonomic constraint. State whether the following constraint on a bead moving on a circular wire of fixed radius is scleronomic or rheonomic, and justify: [4 marks]
Q2. A particle moves freely on the surface of a sphere of radius . State the number of degrees of freedom and choose a suitable set of generalized coordinates. Write the kinetic energy in terms of these coordinates. [6 marks]
Q3. Starting from the Lagrangian , write down the Euler–Lagrange equation for a generalized coordinate . Define a cyclic (ignorable) coordinate and state the corresponding conserved quantity. [5 marks]
Q4. For a simple pendulum of mass and length (angle from vertical), write the Lagrangian and derive the equation of motion using the Euler–Lagrange equation. [6 marks]
Q5. Define the generalized momentum and the Hamiltonian . For a particle of mass moving in a 1-D potential , obtain explicitly and write Hamilton's equations of motion. [6 marks]
Q6. Define the Poisson bracket of two phase-space functions. Evaluate the fundamental Poisson brackets , , and . [5 marks]
Q7. State Liouville's theorem. Briefly explain what it implies about the flow of phase-space volume for a Hamiltonian system. [4 marks]
Q8. Two identical masses are connected in a line by three identical springs of constant (walls at both ends). Write the equations of motion for displacements and find the two normal-mode angular frequencies. [6 marks]
Q9. State Noether's theorem in one sentence. Give the conserved quantity associated with (a) time-translation symmetry and (b) spatial-translation symmetry. [4 marks]
Q10. State the three components of Euler's equations of motion for torque-free rotation of a rigid body about its principal axes (moments of inertia ). What are the conserved quantities in torque-free motion? [4 marks]
End of Paper
Answer keyMark scheme & solutions
Q1. (4 marks)
- A holonomic constraint is one expressible as an equation relating only the coordinates (and possibly time): . (2)
- The constraint contains no explicit time dependence, so it is scleronomic. (2) (If the radius varied with time, e.g. , it would be rheonomic.)
Q2. (6 marks)
- A point on a sphere has 2 degrees of freedom. (2)
- Suitable generalized coordinates: polar angle and azimuthal angle . (1)
- Position: velocity components give (3)
Q3. (5 marks)
- Euler–Lagrange equation: (2)
- A cyclic coordinate is one that does not appear explicitly in : . (1.5)
- Then , so the conjugate momentum is conserved. (1.5)
Q4. (6 marks)
- , , so (2)
- , ; . (2)
- Euler–Lagrange gives: (2)
Q5. (6 marks)
- Generalized momentum: . (1)
- Hamiltonian: . (1)
- For : , so (2)
- Hamilton's equations: (2)
Q6. (5 marks)
- Definition: (2)
- Fundamental brackets: (3, one each)
Q7. (4 marks)
- Liouville's theorem: The phase-space density of a system of representative points is conserved along the flow: ; equivalently the phase-space volume occupied by a set of trajectories is invariant in time. (2)
- Implication: Hamiltonian flow is incompressible — an initial region of phase space may deform but preserves its volume. (2)
Q8. (6 marks)
- Equations of motion: (2)
- Assume ; characteristic equation from matrix : (2)
- Solutions: (2)
Q9. (4 marks)
- Noether's theorem: Every continuous symmetry of the action (Lagrangian) corresponds to a conserved quantity. (2)
- (a) Time-translation symmetry conservation of energy. (1)
- (b) Spatial-translation symmetry conservation of linear momentum. (1)
Q10. (4 marks)
- Euler's equations (torque-free, ): (3)
- Conserved: total angular momentum (vector, in space frame) and rotational kinetic energy. (1)
[
{"claim":"Pendulum EOM: from L, EL gives ml^2 thetadd + mgl sin(theta)=0",
"code":"m,l,g,t=symbols('m l g t',positive=True); th=Function('theta'); L=Rational(1,2)*m*l**2*th(t).diff(t)**2+m*g*l*cos(th(t)); EL=diff(diff(L,th(t).diff(t)),t)-diff(L,th(t)); result=simplify(EL-(m*l**2*th(t).diff(t,2)+m*g*l*sin(th(t))))==0"},
{"claim":"1D Hamiltonian H=p^2/2m+V from Legendre transform",
"code":"m,x,p,v=symbols('m x p v'); V=Function('V'); L=Rational(1,2)*m*v**2-V(x); pexpr=diff(L,v); vsol=solve(Eq(p,pexpr),v)[0]; H=p*vsol-L.subs(v,vsol); result=simplify(H-(p**2/(2*m)+V(x)))==0"},
{"claim":"Coupled spring normal frequencies squared are k/m and 3k/m",
"code":"k,m,w=symbols('k m w',positive=True); M=Matrix([[2*k-m*w**2,-k],[-k,2*k-m*w**2]]); sols=solve(M.det(),w**2); result=set([simplify(s) for s in sols])==set([k/m,3*k/m])"},
{"claim":"Fundamental Poisson bracket {q,p}=1",
"code":"q,p=symbols('q p'); f=q; g=p; pb=diff(f,q)*diff(g,p)-diff(f,p)*diff(g,q); result=pb==1"}
]