Physics interleaved practice
Instructions: Solve each problem showing full working. Watch out — consecutive problems test different topics, so decide the correct method before you start. Use unless stated otherwise. Marks shown in brackets.
1. A force acts on a particle that undergoes displacement . Find the work done and the angle between and . [4]
2. Check whether the equation is dimensionally consistent, where are velocities, acceleration, displacement. [3]
3. A ball is thrown vertically upward at . Find (a) time to reach maximum height, (b) maximum height, (c) velocity when it returns to launch point. [4]
4. The period of a simple pendulum is suspected to depend on length , mass , and . Use dimensional analysis to derive the form and find . [4]
5. A swimmer can swim at in still water. A river wide flows at . If the swimmer heads straight across (perpendicular to bank), find (a) time to cross, (b) downstream drift, (c) resultant speed relative to ground. [5]
6. In a measurement, length and breadth . Report the area with the correct number of significant figures. [3]
7. A projectile is launched at at above horizontal. Find the time of flight, maximum height, and horizontal range. [5]
8. Given and , compute and hence the area of the parallelogram formed by and . [4]
9. The radius of a sphere is measured as . Find the percentage error in its volume. [3]
10. A particle's position is . Find (a) the velocity at , (b) the average velocity between and , and (c) the instantaneous acceleration. [5]
Total: 40 marks
Answer keyMark scheme & solutions
1. (Tests 1.1.11 — Dot product / work) Work . , . . Why: Work asks for a scalar projection → dot product, not cross.
2. (Tests 1.1.3 — Dimensional analysis, checking) . . . All terms match → dimensionally consistent. Why: "Check equation" cues dimensional consistency, not solving.
3. (Tests 1.1.17 — Free fall / SUVAT) (a) At top : . (b) . (c) By symmetry (downward, same magnitude). Why: Vertical single-axis motion with → free-fall SUVAT.
4. (Tests 1.1.3 — Dimensional analysis, deriving) . Match: : . : . So . (Mass drops out — cannot appear.) Why: "Derive relation" cues dimensional method; mass has no way to enter.
5. (Tests 1.1.21 — River-boat relative motion) Heading straight across, crossing speed . (a) . (b) Drift . (c) Ground speed . Why: Perpendicular components are independent → cross-time uses only swim speed.
6. (Tests 1.1.4 — Significant figures) Area round to 2 sig figs (limited by ): . Why: Multiplication → fewest sig figs of the factors governs.
7. (Tests 1.1.20 — Range/height/time of flight) , . . . . Why: Full projectile → apply derived formulas after resolving.
8. (Tests 1.1.12 — Cross product / area) . Area (units²). Why: Parallelogram area = magnitude of cross product, not dot.
9. (Tests 1.1.5 — Errors / relative error) . Why: Power in formula multiplies fractional error by the exponent.
10. (Tests 1.1.14 & 1.1.15 — Avg vs instantaneous velocity/accel) . At : (mag ). (b) , . Avg . (c) (constant). Why: Instantaneous → differentiate; average → displacement/time.
[
{"claim":"Q1 work = 2 J and angle approx 79.7 deg",
"code":"import sympy as sp\nF=sp.Matrix([3,4]); d=sp.Matrix([2,-1])\nW=F.dot(d)\nctheta=W/(F.norm()*d.norm())\nang=sp.deg(sp.acos(ctheta))\nresult = (W==2) and abs(float(ang)-79.695)<0.1"},
{"claim":"Q4 exponents a=1/2, b=-1/2",
"code":"import sympy as sp\na,b=sp.symbols('a b')\nsol=sp.solve([a+b,-2*b-1],[a,b])\nresult = (sol[a]==sp.Rational(1,2)) and (sol[b]==-sp.Rational(1,2))"},
{"claim":"Q8 cross product = (5,-5,-5), area = 5*sqrt3",
"code":"import sympy as sp\nA=sp.Matrix([2,3,-1]); B=sp.Matrix([1,-1,2])\nc=A.cross(B)\nresult = (c==sp.Matrix([5,-5,-5])) and sp.simplify(c.norm()-5*sp.sqrt(3))==0"}
]