Measurement, Vectors & Kinematics
LEVEL 3 — Production Paper (From-Scratch Derivations & Explanation Prompts)
Time limit: 45 minutes Total marks: 60
Instructions: Derive from first principles where asked. State assumptions. Use , notation. Take unless stated.
Q1. [10 marks] From calculus, derive the three SUVAT equations for constant acceleration : (a) [3] (b) [3] (c) [3] (d) Explain out loud, in one sentence each, what area under a – graph and slope of an – graph physically represent. [1]
Q2. [12 marks] A projectile is launched from ground level with speed at angle above horizontal. (a) Writing the horizontal and vertical motion independently, derive expressions for the time of flight , maximum height , and horizontal range . [6] (b) Show that the range is maximum at and state . [2] (c) For , , compute , , numerically. [4]
Q3. [10 marks] Dimensional analysis & significant figures. (a) The period of a simple pendulum is believed to depend on length , mass , and gravity . Using dimensional analysis, derive the form of (up to a dimensionless constant). [5] (b) Check whether is dimensionally consistent. [2] (c) A rectangular plate measures by . Report its area with the correct number of significant figures, and justify. [3]
Q4. [10 marks] Vectors. Let and . (a) Find and the unit vector . [3] (b) Compute and the angle between them. [4] (c) Compute and state one physical quantity this operation could represent. [3]
Q5. [10 marks] Relative motion (river–boat). A river of width flows at . A boat can move at relative to water. (a) To cross in the shortest time, in which direction should the boat head, how long does it take, and how far downstream does it land? [4] (b) To cross by the shortest path (straight across), at what angle to the bank must the boat head, and how long does that crossing take? [4] (c) Explain out loud why the two answers differ — what is being optimised in each case? [2]
Q6. [8 marks] Errors & explanation. (a) A quantity is computed as . Given fractional errors , , , derive and compute the maximum percentage error in . [5] (b) Explain the difference between systematic and random error, giving one example of each and how each can be reduced. [3]
Answer keyMark scheme & solutions
Q1 [10]
(a) (definition of instantaneous acceleration) [0.5]. Constant ⇒ [1] ⇒ ⇒ [1.5].
(b) [0.5]. [1] ⇒ [1.5].
(c) From (a) [0.5]; substitute into (b): [1] ⇒ simplify ⇒ [1.5]. (Alt: chain rule .)
(d) Area under – = displacement; slope of – = instantaneous velocity. [1]
Q2 [12]
(a) Horizontal: (no acceleration). Vertical: , [1].
- Time of flight: at landing ⇒ [2].
- Max height: at top : [1.5].
- Range: [1.5].
(b) max when [1]; [1].
(c) : .
- [1.5]
- [1.5]
- [1]
Q3 [10]
(a) Assume [1]. Dimensions: , , , . [1]. Match: ; ; [2]. So — independent of mass [1].
(b) ; . All terms ⇒ consistent [2].
(c) [1]. Least sig figs = 2 (from 1.4) [1] ⇒ report [1].
Q4 [10]
(a) [1.5]; [1.5].
(b) [2]. . [1] ⇒ [1].
(c) [2]. Physical: torque () or area of parallelogram / angular momentum [1].
Q5 [10]
(a) Shortest time: head straight across (perpendicular to bank) so full crosses [1]. [1.5]. Downstream drift [1.5].
(b) Shortest path (straight across): cross-stream component of boat velocity must cancel current. Head upstream at angle from the direct-crossing line such that upstream from perpendicular (i.e. to the bank) [2]. Effective cross speed [1] ⇒ [1].
(c) Shortest-time maximises the cross-stream velocity component (all speed used to cross); shortest-path minimises distance by cancelling drift, at the cost of a longer time. [2]
Q6 [8]
(a) (powers add multiplied by exponent) [2] [3].
(b) Systematic: consistent bias in one direction (e.g. zero error of instrument / calibration); reduced by calibration/correction. Random: unpredictable scatter (e.g. reaction-time fluctuations in timing); reduced by averaging many readings. [3]
[
{"claim":"Q2c T=2.04s, H=5.10m, R=35.3m for u=20 theta=30",
"code":"import math\nu=20;th=math.radians(30);g=9.8\nT=2*u*math.sin(th)/g\nH=(u**2*math.sin(th)**2)/(2*g)\nR=(u**2*math.sin(2*th))/g\nresult = abs(T-2.04)<0.02 and abs(H-5.10)<0.05 and abs(R-35.3)<0.3"},
{"claim":"Q4b dot=-7 and angle ~117.2 deg",
"code":"import math\nA=[3,4,-1];B=[1,-2,2]\ndot=sum(a*b for a,b in zip(A,B))\nmA=math.sqrt(sum(x*x for x in A));mB=math.sqrt(sum(x*x for x in B))\nang=math.degrees(math.acos(dot/(mA*mB)))\nresult = dot==-7 and abs(ang-117.2)<0.3"},
{"claim":"Q4c cross product = (6,-7,-10)",
"code":"A=Matrix([3,4,-1]);B=Matrix([1,-2,2])\nc=A.cross(B)\nresult = list(c)==[6,-7,-10]"},
{"claim":"Q5 shortest-time drift 120m t40s; shortest-path t50s",
"code":"import math\nw=200;vc=3;vb=5\nt1=w/vb;drift=vc*t1\nphi=math.asin(vc/vb);t2=w/(vb*math.cos(phi))\nresult = t1==40 and drift==120 and abs(t2-50)<0.01"},
{"claim":"Q6 max percent error = 8%",
"code":"e=1+2*2+3\nresult = e==8"}
]