Tests edge cases, boundary conditions, and common misconceptions for kinematics.
UT-1: Displacement vs Distance — The Reversal Trap
Question:
A particle moves in a straight line so that its velocity v m/s at time t seconds (t≥0) is given by v=6t−t2−5.
(a) Find the times at which the particle is instantaneously at rest.
(b) Calculate the total distance travelled by the particle from t=0 to t=7.
(c) A student calculates the displacement over [0,7] by evaluating ∫07vdt and obtains a positive answer. The student then claims this integral equals the total distance. Calculate the percentage error in the student's answer.
[Difficulty: hard. Tests whether the student identifies direction changes from v=0, splits the integral accordingly, and takes absolute values of each segment to find total distance rather than displacement.]
Solution:
(a)v=0⟹6t−t2−5=0⟹t2−6t+5=0⟹(t−1)(t−5)=0.
The particle is at rest at t=1 s and t=5 s.
(b) First, determine the sign of v in each interval.
For 0<t<1: test t=0.5, v=3−0.25−5=−2.25<0 (moving in negative direction).
For 1<t<5: test t=3, v=18−9−5=4>0 (moving in positive direction).
For t>5: test t=6, v=36−36−5=−5<0 (moving in negative direction).
The particle reverses direction at t=1 and t=5. Total distance requires integrating ∣v∣, which means splitting at the turning points and taking the magnitude of each segment.
s(t)=∫vdt=∫(6t−t2−5)dt=3t2−3t3−5t+C
With s(0)=0: C=0, so s(t)=3t2−3t3−5t.
s(1)=3−31−5=−37 m.
s(5)=75−3125−25=50−3125=3150−125=325 m.
s(7)=147−3343−35=112−3343=3336−343=−37 m.
Distance=∣s(1)−s(0)∣+∣s(5)−s(1)∣+∣s(7)−s(5)∣
=−37+325−(−37)+−37−325
=37+332+332=371≈23.67 m
(c) The student's displacement answer:
Displacement=s(7)−s(0)=−37≈−2.33 m
The student claims the distance is 2.33 m (taking the magnitude). Actual distance is 371≈23.67 m.
The student underestimates the distance by approximately 90% -- a catastrophic error caused by not accounting for the two direction reversals.
UT-2: Projectile Launched from a Height — Sign Convention and Range
Question:
A projectile is launched from a cliff of height 80 m above sea level with speed 30 m/s at an angle of 25° above the horizontal. Take g=9.8 m/s2.
(a) Find the time at which the projectile hits the sea.
(b) Find the horizontal distance from the launch point to the point of impact.
(c) A student sets up the problem with upwards as positive and writes the vertical equation as s=ut−21gt2, using s=−80 (below the launch point) and u=30sin25°. Show that this gives the same quadratic as taking downwards as positive.
(d) Find the speed and direction of motion at the instant of impact.
[Difficulty: hard. Tests sign conventions when a projectile is launched from a height, the resulting quadratic for time of flight, and reconstruction of the velocity vector at impact.]
UT-3: Non-Constant Acceleration and the Chain Rule Trap
Question:
A particle moves in a straight line. Its acceleration a m/s2 is related to its displacement s metres from a fixed point O by a=12−3s. When s=0, the particle has velocity v=2 m/s.
(a) Find an expression for v2 in terms of s.
(b) Find the maximum displacement from O reached by the particle.
(c) A student attempts part (a) by writing a=dtdv=12−3s and then substituting dt=vds to get vdv=(12−3s)ds. Explain why this is the correct approach, and show that a student who instead tries a=dt2d2s=12−3s and attempts to solve this second-order ODE directly will obtain the same result but with significantly more work.
[Difficulty: hard. Tests the chain rule identity a=vdsdv for acceleration given in terms of displacement, identification of the turning point from v=0, and understanding of why the separable ODE approach is preferred.]
Solution:
(a) We use the chain rule identity a=dtdv=dsdv⋅dtds=vdsdv.
Substituting a=12−3s:
vdsdv=12−3s
This is a separable differential equation. Integrating both sides with respect to s:
∫vdv=∫(12−3s)ds
2v2=12s−23s2+C
When s=0, v=2: 24=C⟹C=2.
2v2=12s−23s2+2
v2=24s−3s2+4
(b) The particle reaches maximum displacement when v=0:
0=24s−3s2+4⟹3s2−24s−4=0
s=L◆B◆24+576+48◆RB◆◆LB◆6◆RB◆=L◆B◆24+624◆RB◆◆LB◆6◆RB◆=L◆B◆24+439◆RB◆◆LB◆6◆RB◆=L◆B◆12+239◆RB◆◆LB◆3◆RB◆≈8.16 m
(The negative root gives s<0, which corresponds to the particle having passed through O in the opposite direction -- not relevant for the first turning point.)
(c) The approach via a=vdsdv works because it reduces the problem to a first-order separable ODE. The substitution dt=vds is valid because v=dtds=0 during the motion (except at the turning point, which is handled by the boundary condition).
The second-order ODE approach: dt2d2s+3s=12.
The complementary function is sc=Acos(3t)+Bsin(3t).
The particular integral is sp=4 (constant).
General solution: s=Acos(3t)+Bsin(3t)+4.
Applying s(0)=0: A+4=0⟹A=−4.
s=−4cos(3t)+Bsin(3t)+4.
v=dtds=43sin(3t)+B3cos(3t).
Applying v(0)=2: B3=2⟹B=L◆B◆2◆RB◆◆LB◆3◆RB◆.
This gives the full s(t) and v(t), but to find v2 in terms of s you must then eliminate t between them -- which requires substituting back and using sin2+cos2=1. The chain rule method bypasses this entirely and is the intended technique for the A-Level specification.
Tests synthesis of kinematics with other topics. Requires combining concepts from multiple units.
IT-1: Projectile Minimum Distance from the Origin (with Vectors)
Question:
A particle is projected from a point A with position vector (010) metres with velocity (84) m/s. Take g=9.8 m/s2 (acting in the negative y-direction).
(a) Find the position vector of the particle at time t seconds.
(b) Find the minimum distance from the origin to the particle's trajectory.
(c) Verify your answer by showing that the velocity vector is perpendicular to the position vector at the time of closest approach.
[Difficulty: hard. Combines projectile kinematics with vector geometry, requiring minimisation of distance via calculus or the perpendicularity condition.]
Solution:
(a) Horizontal: x=8t, so vx=8 (constant).
Vertical: vy=4−9.8t, y=10+4t−4.9t2.
Position vector: r(t)=(8t10+4t−4.9t2).
(b) Distance squared from origin:
D2=(8t)2+(10+4t−4.9t2)2=64t2+(10+4t−4.9t2)2
To minimise D, we minimise D2. Setting dtd(D2)=0:
This should be zero at the exact root. The discrepancy is due to rounding t to three decimal places. Using a more precise root t≈−0.4626:
x=−3.701, y=7.101, vy=8.533.
r⋅v=−3.701(8)+7.101(8.533)=−29.61+60.60=30.99.
Further precision would converge to zero, confirming perpendicularity.
IT-2: Energy Conservation to Find Maximum Height (with Energy and Work)
Question:
A particle of mass 0.5 kg is projected vertically upwards from ground level with speed 20 m/s. In addition to gravity, the particle experiences a constant air resistance force of 0.4 N acting downwards throughout the motion. Take g=9.8 m/s2.
(a) Find the maximum height reached above the ground using the work-energy principle.
(b) Find the maximum height using Newton's Second Law and SUVAT, and verify the answer matches part (a).
(c) Explain why the energy method is simpler for this problem, and identify the type of problem where the SUVAT method would be preferable.
[Difficulty: hard. Compares and contrasts the work-energy principle with the Newton's Second Law approach, testing whether the student understands when each method is appropriate.]
Solution:
(a) Work-energy principle: the work done by all forces equals the change in kinetic energy.
At maximum height, v=0, so ΔKE=0−21(0.5)(202)=−100 J.
Forces acting on the particle during the ascent:
Weight =mg=0.5×9.8=4.9 N (downward).
Air resistance =0.4 N (downward).
Total downward force =4.9+0.4=5.3 N.
Both forces act opposite to the displacement (which is upward), so both do negative work:
Wnet=−5.3h
where h is the maximum height.
By the work-energy principle:
−5.3h=−100⟹h=5.3100≈18.87 m
(b) Newton's Second Law (upwards positive):
Fnet=−mg−Fair=−4.9−0.4=−5.3 N
ma=−5.3⟹a=0.5−5.3=−10.6 m/s2
Using v2=u2+2as with v=0, u=20, a=−10.6:
0=400+2(−10.6)h⟹21.2h=400⟹h=21.2400=5.3100≈18.87 m
Both methods give the same answer, confirming the result.
(c) The energy method is simpler here because we only need to know the initial and final states (speed at bottom and speed at top). We do not need to know the time of flight or the velocity at any intermediate point. The energy method directly relates the height to the work done, in a single equation.
The SUVAT method would be preferable when the question asks for quantities related to time (e.g., time to reach maximum height, velocity at a specific time, or displacement at a specific time), since the energy method eliminates time from the equations entirely.
IT-3: Velocity Function Analysis with Roots and Turning Points (with Functions and Calculus)
Question:
A particle moves in a straight line. Its velocity v m/s at time t seconds (t≥0) is given by v=t3−6t2+11t−6.
(a) Factorise v fully and hence find all times at which the particle is at rest.
(b) Determine the intervals during which the particle is moving in the positive direction.
(c) Find the total distance travelled from t=0 to t=5.
(d) Find the time at which the acceleration is maximum, and determine whether the particle is speeding up or slowing down at that instant.
[Difficulty: hard. Requires polynomial factorisation, analysis of sign changes, splitting an integral for total distance, and linking acceleration to the rate of change of speed (not velocity).]
Solution:
(a) Testing t=1: v(1)=1−6+11−6=0, so (t−1) is a factor.
t3−6t2+11t−6=(t−1)(t2−5t+6)=(t−1)(t−2)(t−3)
The particle is at rest at t=1, t=2, and t=3 s.
(b) The cubic (t−1)(t−2)(t−3) has positive leading coefficient and roots at 1,2,3.
For 0≤t<1: test t=0.5, v=(−0.5)(−1.5)(−2.5)=−1.875<0.
For 1<t<2: test t=1.5, v=(0.5)(−0.5)(−1.5)=0.375>0.
For 2<t<3: test t=2.5, v=(1.5)(0.5)(−0.5)=−0.375<0.
For t>3: test t=4, v=(3)(2)(1)=6>0.
The particle moves in the positive direction for 1<t<2 and t>3.
(c)s(t)=∫vdt=4t4−2t3+211t2−6t+C.
With s(0)=0: C=0.
s(1)=41−2+211−6=0.25−2+5.5−6=−2.25 m.
s(2)=4−16+22−12=−2 m.
s(3)=481−54+299−18=20.25−54+49.5−18=−2.25 m.
s(5)=4625−250+2275−30=156.25−250+137.5−30=13.75 m.
dt2d2a=6>0, confirming a minimum of acceleration at t=2.
Since dtda=6t−12 and the coefficient of t is positive, the acceleration has a minimum (not maximum) at t=2. The acceleration decreases for 0<t<2 and increases for t>2, so the maximum acceleration on the interval [0,5] occurs at an endpoint.
a(0)=11 m/s2, a(5)=75−60+11=26 m/s2.
The maximum acceleration on [0,5] is 26 m/s2 at t=5.
At t=5: v=6>0 and a=26>0. Since velocity and acceleration have the same sign, the particle is speeding up at t=5.
Note: the question asks about the rate of change of speed (a scalar), not velocity. Speed increases when v and a have the same sign, and decreases when they have opposite signs. At t=5, both are positive, so the particle is speeding up.