GSO002 Problem 16
Problem Statement
Center-of-Mass Frame 2D Harmonic Oscillation: Trajectory of a Puck Under Special Attractive Force
Problem Statement
On an infinitely wide smooth horizontal surface (xy-plane), there are two pucks A and B treated as point masses.
Between the two pucks, a special attraction mechanism of negligible mass is attached. When the distance between the pucks is r, this mechanism exerts an attractive force of magnitude Kr (K is a positive constant) on each puck along the line connecting them. This is mechanically equivalent to being connected by a special spring with natural length 0.
At time t=0, puck A is at the origin (0,0) and puck B is at point (0,d) on the y-axis. Simultaneously, puck A is given initial velocity vA(0)=(vAx,vAy) and puck B is given initial velocity vB(0)=(vBx,vBy).
The two pucks then move under mutual attraction, tracing complex trajectories combining the translational motion of the center of mass and relative motion about the center of mass.
At time t1 (t>0) when the distance between pucks A and B is first maximum, find the kinetic energy EK of puck B in the stationary coordinate system fixed to the horizontal surface.
Constraints
- Mass of puck A: mA=12 kg
- Mass of puck B: mB=4 kg
- Proportionality constant of attraction: K=75 N/m
- y-coordinate of puck B at t=0: d=6 m
- Velocity of puck A at t=0: vA(0)=(5,0) m/s
- Velocity of puck B at t=0: vB(0)=(−20,10) m/s
Input Format
The kinetic energy EK [J] is expressed as an irreducible fraction BA with A,B coprime positive integers. Give the value of A+B as a positive integer.
Solution
1. Center-of-Mass Motion
No external forces act, so the center of mass moves at constant velocity. Total mass M=16 kg.
VCM=MmAvA(0)+mBvB(0)=1612(5,0)+4(−20,10)=(−45,25) m/s2. Relative Motion
The relative position r(t)=rB(t)−rA(t) satisfies the equation of motion with reduced mass μ:
μ=mA+mBmAmB=1612×4=3 kg 3r¨=−75r⟹r¨=−25rThis is 2D harmonic oscillation with angular frequency ω=5 rad/s.
Initial conditions:
r(0)=(0,6),r˙(0)=(−25,10)General solution: r(t)=C1cos(5t)+C2sin(5t)
From initial conditions: C1=(0,6), C2=(−5,2), giving:
r(t)=(−5sin(5t), 6cos(5t)+2sin(5t))3. Finding t1 When Distance is First Maximum
r2(t)=25sin2(5t)+(6cos(5t)+2sin(5t))2=265+225sin(10t+α)where cosα=2524, sinα=257.
Maximum when sin(10t1+α)=1, giving cos(5t1)=54, sin(5t1)=53.
4. Kinetic Energy of Puck B at t1
Relative velocity at t1:
r˙(t1)=(−25cos(5t1), −30sin(5t1)+10cos(5t1))=(−20,−10)Velocity of puck B in the stationary frame:
vB(t1)=VCM+mA+mBmAr˙(t1)=(−45,25)+43(−20,−10)=(−465,−5) m/sKinetic energy:
EK=21mB∣vB(t1)∣2=2(164225+25)=2×164625=84625 Jgcd(4625,8)=1 (4625 is odd), so A=4625, B=8.
A+B=4625+8=4633Answer: 4633