Integration as Accumulation: Not Just Reverse Differentiation
Integration has two faces: it reverses differentiation, and it computes accumulated quantities. Both matter in physics. Here is how to use both — starting from what integration actually means, not from formulas.
Integration as Accumulation: Not Just Reverse Differentiation
A car accelerates from rest. Its velocity at each moment is known. How far has it travelled after 10 seconds?
If the velocity were constant, the answer is easy: distance = velocity × time.
But velocity is changing. Every second, the car is moving faster. The formula distance = velocity × time uses a single velocity — which one do you pick? The velocity at the start? The end? The middle?
None of them is exactly right. The correct answer requires adding up infinitely many tiny contributions — each one the velocity at a particular instant, multiplied by the vanishingly small time during which that velocity held.
That infinite sum is an integral. And the remarkable fact is: you can compute it exactly, without actually summing infinitely many terms, by reversing differentiation.
The idea: adding up tiny pieces
Suppose a car's velocity is v(t) = 2t m/s — starting from rest, accelerating uniformly.
How far does it travel between t = 0 and t = 4 seconds?
Divide the 4 seconds into small intervals of width Δt. During each interval, the velocity is approximately constant at its value at the start of that interval. The distance covered in each interval is approximately v(t) · Δt.
Sum all these small distances:
With Δt = 1 second: 2(0)(1) + 2(1)(1) + 2(2)(1) + 2(3)(1) = 0 + 2 + 4 + 6 = 12 m
With Δt = 0.5 second: the sum has more terms but each is smaller. Try it — the answer approaches 16 m.
As Δt → 0, this sum approaches the exact answer. That limit of the sum is the definite integral:
The ∫ symbol is an elongated S — for sum. The dt at the end indicates the variable and the width of each infinitesimal piece.
The fundamental theorem: the shortcut
Evaluating the integral by summing tiny pieces directly is tedious. The fundamental theorem of calculus provides a shortcut:
If F(t) is a function whose derivative is f(t) — that is, dF/dt = f(t) — then:
Find a function whose derivative is the integrand. Evaluate it at the upper limit, subtract its value at the lower limit. Done.
For our velocity problem: we need a function whose derivative is 2t. From the derivative rules in the previous article, d/dt(t²) = 2t. So F(t) = t².
The exact answer is 16 m. The approximate sum with Δt = 0.5 was already approaching this.
This is the power of the fundamental theorem: the problem of summing infinitely many tiny pieces reduces to finding one function and evaluating it twice.
Integration rules
Since integration reverses differentiation, every differentiation rule gives an integration rule.
Power rule for integration:
Raise the exponent by one, divide by the new exponent. The opposite of differentiation.
The constant C is the constant of integration — it appears because differentiating any constant gives zero, so infinitely many functions have the same derivative. When you reverse the process, you cannot recover which constant was there.
Constant multiple and sum rules work the same as for differentiation:
Definite vs indefinite integrals
An indefinite integral has no limits:
The result is a family of functions — all differing by a constant. This is used when you want the general form of the position or velocity function, and will determine C from an initial condition.
A definite integral has limits:
The result is a number — the accumulated quantity between two specific moments. The constant C cancels when you subtract F(a) from F(b).
In physics, you use definite integrals to find distances, areas, work done, impulse — whenever you need a total accumulated over an interval. You use indefinite integrals when building the position or velocity function from scratch.
The kinematic chain in both directions
The previous article showed differentiation going forward:
Integration goes backward:
This is the general method for kinematics when acceleration is not constant. The standard equations of motion (v = u + at, s = ut + ½at²) are the special case when acceleration is constant — they are already-integrated results for a = constant.
The geometric meaning: area under the curve
The definite integral ∫ₐᵇ f(t) dt is the area under the curve y = f(t) between t = a and t = b.
This is not just a geometric curiosity — it is physically meaningful.
Velocity-time graph: the area under the curve is displacement. A car moving with varying velocity — the area under the v-t graph from t = 0 to t = T gives the displacement in that time.
Acceleration-time graph: the area under the curve is change in velocity.
Force-time graph: the area under the curve is impulse — change in momentum.
{/* DIAGRAM: v-t graph with shaded area representing displacement */}
When the curve dips below the t-axis, that area is negative — displacement in the negative direction, decrease in velocity, or negative impulse. Always account for sign when reading area from a graph.
Determining the constant of integration
When you integrate to find a velocity or position function, the constant C must be determined from initial conditions.
Example: a particle has acceleration a(t) = 6t − 4 m/s². At t = 0, its velocity is 3 m/s and its position is 2 m. Find x(t).
Step 1 — Integrate acceleration to get velocity:
Apply initial condition v(0) = 3:
Step 2 — Integrate velocity to get position:
Apply initial condition x(0) = 2:
Every integration step requires one initial condition to fix the constant. Two integrations require two initial conditions — typically initial velocity and initial position.
Common mistakes
A worked example
A ball is thrown downward from a height of 80 m with initial velocity 10 m/s. Taking downward as positive and g = 10 m/s², find (a) velocity as a function of time, (b) position as a function of time, (c) when it hits the ground.
Given: a = 10 m/s² (constant), v(0) = 10 m/s, x(0) = 0 (taking the starting point as origin, ground at x = 80 m).
(a) Velocity:
v(0) = 10: C₁ = 10
(b) Position:
x(0) = 0: C₂ = 0
(c) Hits ground when x = 80:
(Taking the positive root since t > 0.)
What to remember
An integral is an accumulated sum — infinitely many infinitely small pieces added together.
The fundamental theorem converts this into a practical calculation: find a function whose derivative is the integrand, evaluate at limits, subtract.
Integration reverses differentiation. The kinematic chain runs both ways — differentiate forward, integrate backward.
The area under a curve is the definite integral — and in physics, that area is always something physical: displacement, velocity change, impulse, work.
Initial conditions determine the constant of integration. Always apply them.
The next article completes the mathematical tools chapter: dimensional analysis — the technique of checking and discovering formulas using only the units involved. It requires no calculus and no vectors, but it is the most underused tool in physics.