Graphs & Data Analysis
A graph is data that has learned to speak — once you know its grammar, it tells you the whole story in a single glance.
Every Graph Tells a Story
Hand a physicist a table of numbers and they'll squint at it politely. Hand them a graph of the same data, and their eyes light up instantly. That's because a graph doesn't just display numbers — it reveals the relationship hiding inside them: how fast something changes, where it started, and whether the pattern is trustworthy or just noise.
Learning to read a graph fluently is one of the most transferable skills in science. Once you can do it, distance-time graphs, force-extension graphs, and velocity-time graphs all start to look like dialects of the same language.
Every experiment has an independent variable (the one you deliberately change, plotted on the x-axis) and a dependent variable (the one that responds, plotted on the y-axis). Once you plot enough points, two numbers summarize the whole relationship: the slope (how steeply y rises for each step of x) and the intercept (the value of y where the line crosses x = 0). Master those two numbers and you can describe — and predict — the entire dataset.
- Check the pattern using two pairs of points: from (0, 0) to (4, 20), slope = (20 − 0) / (4 − 0) = 5 m/s.
- Confirm with the next pair: from (4, 20) to (10, 50), slope = (50 − 20) / (10 − 4) = 30 / 6 = 5 m/s — the same value, so the data really is linear.
- Since the line passes through (0, 0), the intercept c = 0, giving the equation distance = 5t.
- Predict at t = 15 s: distance = 5 × 15 = 75 m.
Slope isn't the only thing a graph can tell you — the space enclosed underneath the line matters too. On a velocity-time graph, the slope gives you acceleration (how quickly velocity changes), but the area under the line gives you displacement (how far the object actually travelled). Same graph, two completely different physical quantities, depending on whether you look at the steepness or the shaded region beneath it.
- Acceleration is the slope: a = (12 − 2) / (5 − 0) = 10 / 5 = 2 m/s².
- Displacement is the area under the line, which forms a trapezoid with parallel sides 2 m/s and 12 m/s, and width 5 s.
- Area of a trapezoid = ½ × (sum of parallel sides) × width = ½ × (2 + 12) × 5 = ½ × 14 × 5 = 35.
A line of best fit is a summary of the data you actually collected — not a promise about what happens outside that range. Extending it far beyond your measured points (extrapolation) can quietly turn a good model into a wrong guess: real relationships bend, saturate, or break down entirely once conditions change enough. Always ask whether the pattern has a physical reason to keep holding before you trust it beyond the edge of the graph.
Check your understanding
- A graph turns a table of raw measurements into a visual relationship between two variables.
- Slope is the rate of change and intercept is the starting value; together they define y = mx + c.
- A line of best fit smooths out scatter in real data to reveal the underlying trend.
- The area under a graph can represent a completely different physical quantity than the slope, like displacement from a velocity-time graph.