Courses / Physics I
Principles of Laboratory Practice

Kinematics and Dynamics Lab Experiments

Physics I 237 words Free to read

Laboratory experiments in mechanics test the predictions of kinematics and dynamics against real data.

Classic experiments

ExperimentMeasuredKey equation
Free falltt vs hhh=12gt2h = \frac{1}{2}gt^{2}
Inclined planeaa vs sinθ\sin\thetaa=gsinθa = g\sin\theta
Newton's second lawaa vs FFF=maF = ma
Simple pendulumTT vs LLT=2πL/gT = 2\pi\sqrt{L/g}
Spring constantFF vs xxF=kxF = kx

Measuring gg from a pendulum

g=4π2LT2g = \frac{4\pi^2 L}{T^2}

Plot T2T^{2} vs LL: the slope is 4π2/g4\pi^{2}/g.

Practical tips

import math
L = 1.00    # metres
T = 2.006   # seconds (measured)
g = 4 * math.pi**2 * L / T**2
print(f"g = {g:.2f} m/s^{2}")

Key insight: The best lab experiments are designed so that one variable is plotted against another to give a straight line. The slope or intercept gives the physical quantity of interest.
Common pitfall: Change one variable at a time. Varying mass and force together "to save runs" produces data from which neither effect can be untangled — a lost afternoon disguised as efficiency.
Placeholder: Kinematics and Dynamics Lab Experiments

Practise this lesson

The explanation above is free to read. The graded practice for this lesson lives in the Tryals app.

14practice questions
2interactive scenes
Start Physics I free

Principles of Laboratory Practice