Calculus Applications - Where the Theory Meets Reality
Calculus was invented to solve real problems. From finding the shortest path and the strongest bridge to modelling the spread of a disease, calculus turns abstract mathematics into practical tools. In this lesson you will see exactly how the ideas of limits, derivatives, and integrals are put to work in the real world.
The very first major application of calculus was astronomy: in his 1687 masterwork Philosophiæ Naturalis Principia Mathematica, Isaac Newton used the calculus he had invented two decades earlier to derive Johannes Kepler's laws of planetary motion from a single principle – the inverse-square law of gravity – showing for the first time that the same mathematics governing a falling apple also governs the orbit of the moon. That same optimisation idea used in this lesson's fencing problem is, in modern form, how NASA calculates fuel-efficient spacecraft trajectories, and it is the same core idea – adjusting inputs to minimise a quantity – behind gradient descent, the algorithm that trains today's machine learning models.
1. Optimisation – Finding Maximum and Minimum Values
Optimisation is the art of finding the best possible outcome – maximum profit, minimum cost, greatest efficiency. The derivative f′(x) = 0 locates where a function reaches its peak or trough. The second derivative confirms whether it is a maximum or a minimum.
Let the side perpendicular to the wall have length x. The side parallel to the wall = 100 − 2x.
Area A = x(100 − 2x) = 100x − 2x².
dA/dx = 100 − 4x = 0 → x = 25 m.
Parallel side = 100 − 50 = 50 m. Maximum area = 25 × 50 = 1250 m².
2. Area Between Two Curves
The area between y = f(x) (upper curve) and y = g(x) (lower curve) from x = a to x = b is:
Area = ∫ab [f(x) − g(x)] dx
Always subtract the lower curve from the upper curve.
Find intersections: x² = x → x = 0, x = 1.
On [0,1], x ≥ x², so: ∫01 (x − x²) dx = [x²/2 − x³/3]01 = 1/2 − 1/3 = 1/6 square units.
3. Rates of Change in Science
Physics: Velocity = ds/dt (derivative of position). Acceleration = dv/dt (derivative of velocity).
Chemistry: Reaction rates are expressed as derivatives of concentration with respect to time.
Biology: Population growth models use dP/dt = rP(1 − P/K) (logistic equation).
Economics: Marginal cost = dC/dq (rate of change of total cost with respect to quantity).
v = ds/dt = 6t² − 18t + 12. At t = 2: v = 24 − 36 + 12 = 0 m/s (momentarily at rest).
a = dv/dt = 12t − 18. At t = 2: a = 24 − 18 = 6 m/s².
4. Related Rates
Related rates problems involve two or more quantities that both change with time. Differentiate the linking equation implicitly with respect to time t, then substitute known rates to find the unknown rate.
Volume V = (4/3)πr³. dV/dt = 4πr² · dr/dt.
100 = 4π(25) · dr/dt. dr/dt = 100 / (100π) = 1/π ≈ 0.318 cm/s.
5. Volume of Revolution
Rotating the curve y = f(x) around the x-axis from x = a to x = b creates a solid. Its volume is:
V = π ∫ab [f(x)]² dx
This is how engineers calculate volumes of curved objects like bottles, vases, and machine parts.
V = π ∫04 x dx = π [x²/2]04 = π × 8 = 8π ≈ 25.1 cubic units.
6. Calculus in Engineering and Technology
- Structural engineering: Beam deflection equations are second-order DEs.
- Electrical engineering: Circuit behaviour is governed by differential equations linking charge, current, and voltage.
- Computer graphics: Bezier curves (used in every font and design tool) are defined using integrals of parametric functions.
- Machine learning: Gradient descent – the algorithm that trains neural networks – is a direct application of derivatives.
- Medicine: Drug dosage models use differential equations to track how drug concentration changes over time in the bloodstream.
Common Mistakes
| Mistake | Correction |
|---|---|
| Forgetting to check that f′(x) = 0 is a maximum not a minimum (or vice versa) | Use the second derivative test or evaluate f at endpoints |
| Subtracting curves in the wrong order when finding area between curves | Always subtract the lower curve from the upper curve |
| Omitting units in applied problems | Carry units through the calculation; state them in the final answer |
Key Takeaways
- Optimisation: set f′(x) = 0, then use f″ to classify the turning point.
- Area between curves: integrate the difference of the upper and lower functions.
- Related rates: differentiate a geometric or physical relationship implicitly with respect to time.
- Calculus underpins engineering, physics, economics, biology, and computing.
Practice: Applying Calculus
You have completed the Calculus section. Continue your maths journey with the topics below.