Measurement, Vectors & Kinematics
Chapter: Measurement, Vectors & Kinematics
Level 4 — Application (novel/unseen problems)
Time Limit: 60 minutes Total Marks: 50
Instructions: Answer all questions. Show full working. Take unless otherwise stated. Vectors in bold or with hats.
Q1. A student measures the period of a pendulum to determine using . She measures with an uncertainty of , and by timing 50 oscillations obtains a total time of with an uncertainty of in the total.
(a) Derive an expression for in terms of and , and compute its value. (3) (b) Determine the percentage uncertainty in and hence state with its absolute uncertainty to an appropriate number of significant figures. (5)
(Total: 8 marks)
Q2. Two forces act at a point. . The resultant of and an unknown force has magnitude and points along the positive -axis.
(a) Find in component form. (3) (b) Find the angle between and . (3) (c) Compute the vector area and interpret its direction using the right-hand rule. (3)
(Total: 9 marks)
Q3. A river of width flows with a uniform speed of . A boat that can move at relative to the water wishes to cross.
(a) In what direction (angle to the bank, upstream) must the boat head to reach the point directly opposite? Find the crossing time. (4) (b) Instead, the boatman heads straight across (perpendicular to the bank). Find the time to cross and the downstream drift. (3) (c) Which strategy — (a) or (b) — gets the boat to the far bank in the shorter time, and by how much? (2)
(Total: 9 marks)
Q4. A ball is projected from the top of a cliff of height with speed at above the horizontal. Take .
(a) Find the time of flight until it hits the ground below. (4) (b) Find the horizontal distance from the base of the cliff where it lands. (2) (c) Find the speed and direction of the velocity just before impact. (4) (d) Find the maximum height above the launch point. (2)
(Total: 12 marks)
Q5. A particle moves along the -axis with velocity given by (SI units), starting at at .
(a) Find the acceleration at using calculus. (2) (b) Find the position function and evaluate the displacement over the interval to . (3) (c) Find the total distance travelled in the interval to (note: the particle reverses direction). (4) (d) Using dimensional reasoning, verify that the constant "6" in has the SI units of acceleration. (1)
(Total: 10 marks)
Answer keyMark scheme & solutions
Q1
(a) From , square: . (1 mark)
Period: . (1 mark)
. (1 mark)
(b) Fractional uncertainties:
- Since , . (1 mark)
, so . (1 mark)
. (1 mark)
. (1 mark)
Report: (uncertainty to 2 s.f., value rounded to match). (1 mark)
Q2
(a) Resultant . . (3 marks) (1 setup, 2 components)
(b) . (1) , . (1) . (1)
(c) . (1) . (1) Direction: (into the page); by right-hand rule, curling from to (clockwise in the -plane) points into the page. Magnitude = area of triangle formed by the vectors. (1)
Q3
(a) To go straight across, the upstream component of boat velocity must cancel the current: upstream from the perpendicular...
Let angle to the bank be measured such that cross-component where is from perpendicular. Cleanest: heading angle upstream from straight-across is with , . (1) So heading makes with the bank. (1) Cross velocity . (1) Time . (1)
(b) Cross velocity (full speed perpendicular). Time . (1) Drift current time downstream. (2)
(c) Strategy (b) is faster: vs , shorter by (but with drift). (2)
Q4
Components: , .
(a) Take up positive, origin at launch. at landing. . (2) . (1) Positive root: . (1)
(b) . (2)
(c) ; . (2) Speed . (1) Direction: below horizontal. (1)
(d) Max height above launch: . (2)
Q5
(a) . At : . (2)
(b) . (2) ; . Displacement . (1)
(c) when . Particle reverses at . (1) ; so from : . (1) From : . (1) Total distance . (1)
(d) has units m/s. In , has units s, so must have units = acceleration. ✓ (1)
[
{"claim": "Q1: g = 4*pi^2*L/T^2 with L=0.925, T=1.93 gives ~9.803", "code": "import sympy as sp; g = 4*sp.pi**2*sp.Rational(925,1000)/sp.Rational(193,100)**2; result = abs(float(g) - 9.803) < 0.01"},
{"claim": "Q1: percentage uncertainty ~1.25%", "code": "dL=0.002/0.925; dT=0.5/96.5; frac=dL+2*dT; result = abs(frac-0.01253) < 0.001"},
{"claim": "Q2: F2 = 7i-4j and F1xF2 z-component = -40", "code": "F1=(3,4); F2=(7,-4); cross=F1[0]*F2[1]-F1[1]*F2[0]; result = cross == -40"},
{"claim": "Q3: strategy b faster by 10s (40 vs 50)", "code": "import sympy as sp; ta=200/(5*sp.cos(sp.asin(sp.Rational(3,5)))); tb=200/5; result = abs(float(ta)-50)<0.01 and tb==40 and float(ta)-tb==10"},
{"claim": "Q4: time of flight ~4.218s", "code": "import sympy as sp; t=sp.symbols('t',positive=True); sol=sp.solve(sp.Eq(10*t-sp.Rational(49,10)*t**2,-45),t); result = any(abs(float(s)-4.218)<0.01 for s in sol)"},
{"claim": "Q5: total distance = 8m, displacement = 0", "code": "x=lambda t:4+3*t**2-t**3; disp=x(3)-x(0); dist=abs(x(2)-x(0))+abs(x(3)-x(2)); result = disp==0 and dist==8"}
]