Estimating gradients and areas under curves
Real-life graphs are often curves, not straight lines. To extract physical information you estimate the gradient at a point (instantaneous rate of change) and the area under the curve (total accumulated quantity).
Gradient at a point — the tangent method
To estimate the gradient of a curve at a specific x:
- Draw a tangent at that point — a straight line just touching the curve at that spot.
- Pick two clear lattice points along the tangent.
- Calculate
gradient = (Δy)/(Δx)between them.
Example: on a speed-time graph, the tangent at t = 5 has gradient 4 → instantaneous acceleration is 4 m/s² at t = 5.
Area under a curve — counting squares & trapezium rule
For a non-rectangular region, you have two pencil-and-paper options:
Counting squares (rough):
- Count whole squares fully inside the region.
- Count partial squares as roughly half each (or use judgement).
- Multiply by the area each grid square represents.
Trapezium rule (more accurate):
Divide the region into n equal-width strips. Estimate each strip's area as a trapezium:
Area_strip = ½h(y_left + y_right). Sum the strips.
Or: Total ≈ ½h × [y₀ + 2(y₁ + y₂ + … + y_{n-1}) + y_n] — first and last heights once, middle ones twice.
✦Worked example— Worked example — gradient at a point
A curve y = x² is sketched. Estimate the gradient at x = 3 by drawing a tangent.
Drawing a careful tangent through (3, 9), continuing through e.g. (4, 15) and (2, 3) gives:
gradient ≈ (15 − 3)/(4 − 2) = 12/2 = 6.
(Calculus gives the exact answer dy/dx = 2x = 6 — but GCSE expects the tangent estimate.)
✦Worked example— Worked example — area under speed-time using trapezium rule
A speed-time table:
| t (s) | 0 | 2 | 4 | 6 | 8 |
|---|---|---|---|---|---|
| v (m/s) | 0 | 5 | 12 | 18 | 22 |
Use trapezium rule with h = 2:
Area ≈ ½ × 2 × [0 + 2(5 + 12 + 18) + 22] = 1 × [0 + 70 + 22] = 92 m.
So the car covers approximately 92 m in 8 s.
Interpretation in context
| Curve | Gradient at a point | Area underneath |
|---|---|---|
| Distance-time | Instantaneous speed | (no standard meaning) |
| Speed-time | Instantaneous acceleration | Distance travelled |
| Volume-time | Flow rate at that instant | Volume change |
| Pressure-volume | (specialist context) | Work done |
⚠Common mistakes— Common mistakes (examiner traps)
- Tangent that crosses the curve instead of just touching it. Re-draw — the touch should be a single point.
- Picking close points along the tangent that exaggerate small drawing errors. Pick two clear lattice points well apart.
- Forgetting units on gradient or area answers. m/s², m, litres — be explicit.
- Using counting squares for high-precision questions. When marks > 3, use trapezium rule.
- Confusing area with distance only when relevant. Area under speed-time = distance; area under distance-time has no standard meaning.
➜Try this— Quick check
Tangent to a distance-time curve at t = 4 has gradient 12 (in m/s). The instantaneous speed at t = 4 is 12 m/s. State units!
AI-generated · claude-opus-4-7 · v3-deep-algebra