Integrals and Accumulation

How Riemann-sum intuition becomes the definite integral, why integrals measure accumulated change, and how the Fundamental Theorem reconnects integrals with derivatives.
Modified

April 26, 2026

Keywords

definite integral, accumulation, Riemann sum, Fundamental Theorem of Calculus, net change

1 Role

This page is the accumulation half of first calculus.

Its job is to explain how many small local contributions add up into one global quantity, and how integration reconnects to differentiation through the Fundamental Theorem of Calculus.

2 First-Pass Promise

Read this page after Derivatives and Local Approximation.

If you stop here, you should still understand:

  • why a definite integral is a limit of sums
  • why an integral measures accumulated change, not only area
  • how to read \(\int_a^b f(x)\,dx\) as one number attached to an interval
  • why derivatives and integrals are linked by the Fundamental Theorem of Calculus

3 Why It Matters

Derivatives tell you about local change.

Integrals answer the reverse-looking question:

if I know the small local contributions along an interval, what total quantity do they build up to?

That viewpoint is everywhere:

  • velocity accumulates into displacement
  • marginal cost accumulates into total cost
  • power accumulates into energy
  • density accumulates into mass or probability
  • gradient-based methods implicitly reason about accumulated local effects along trajectories

So the integral is not just a geometric trick. It is the first general language for turning local information into global totals.

4 Prerequisite Recall

  • a derivative is the first local linear description of change
  • limits turn many small-step approximations into exact quantities
  • average rate of change summarizes an interval, while the derivative describes a point

5 Intuition

Suppose a quantity changes over time with rate \(r(t)\).

Over a small time step \(\Delta t\), the change is approximately

\[ r(t_i)\Delta t. \]

Add these across many small subintervals:

\[ r(t_1)\Delta t + r(t_2)\Delta t + \cdots + r(t_n)\Delta t. \]

That is a Riemann-sum picture: total accumulation is approximated by summing many tiny rate × width contributions.

As the partition gets finer, this approximation can converge to an exact number. That limit is the definite integral.

This is why the integral should be read first as:

accumulated contribution across an interval

and only second as area in special geometric cases.

6 Formal Core

Definition 1 (Definite Integral) If the limit exists, the definite integral of \(f\) from \(a\) to \(b\) is the limit of Riemann sums over partitions of \([a,b]\) whose mesh tends to zero:

\[ \int_a^b f(x)\,dx = \lim_{\lVert P\rVert \to 0}\sum_{i=1}^n f(x_i^*)\Delta x_i. \]

Here \(\lVert P\rVert\) is the width of the largest subinterval in the partition. This makes the idea precise: the pieces must get uniformly fine, not merely numerous.

The result is a number, not a new function.

Definition 2 (Net Accumulation) When \(f\) represents a rate of change, the integral

\[ \int_a^b f(x)\,dx \]

represents the net accumulated change from \(a\) to \(b\).

If parts of the graph lie below the axis, those contributions count negatively. So the definite integral records signed accumulation, not only unsigned area.

Proposition 1 (Fundamental Theorem Of Calculus) At a first-pass level, the key message is:

  • derivatives describe local change
  • integrals add local change across an interval
  • the two operations are tightly linked

If \(f\) is continuous on \([a,b]\) and \(F'(x)=f(x)\) on that interval, then

\[ \int_a^b f(x)\,dx = F(b)-F(a). \]

So a definite integral can often be evaluated by finding an antiderivative and taking an endpoint difference.

Proposition 2 (Definite Versus Indefinite Integral)  

  • A definite integral such as \(\int_a^b f(x)\,dx\) is a number.
  • An indefinite integral such as \(\int f(x)\,dx\) refers to a family of antiderivatives.

These are related by the Fundamental Theorem, but they are not the same object.

7 Worked Example

Suppose the velocity of a particle is

\[ v(t)=2t+1 \]

for \(0 \le t \le 3\).

We want the net displacement from \(t=0\) to \(t=3\).

The accumulation viewpoint says:

\[ \text{displacement} = \int_0^3 (2t+1)\,dt. \]

Find an antiderivative:

\[ F(t)=t^2+t. \]

Then apply the Fundamental Theorem:

\[ \int_0^3 (2t+1)\,dt = F(3)-F(0) = (9+3)-0 = 12. \]

So the particle’s net displacement is \(12\) units.

What does this mean conceptually?

  • the derivative-style quantity was velocity
  • the integral turned that local rate into total accumulated motion
  • the final answer is one number for the whole interval

That is the basic derivative-to-integral pipeline.

8 Computation Lens

A practical first-pass workflow for integration problems is:

  1. identify what is being accumulated
  2. decide the interval over which the accumulation happens
  3. write the definite integral using the relevant rate or density
  4. interpret signs carefully if values can go below zero
  5. use the Fundamental Theorem when an antiderivative is available

This keeps the integral connected to meaning instead of reducing it to symbol pushing.

9 Application Lens

In later optimization and ML pages, accumulation ideas show up in more abstract forms:

  • losses are aggregated across data points
  • continuous-time dynamics accumulate local updates into trajectories
  • probability densities integrate to total mass \(1\)
  • expectations are weighted accumulations

Even before multivariable calculus, this page teaches the core habit:

when many small local effects combine, integration is the natural global language.

10 Stop Here For First Pass

If you can now explain:

  • why a definite integral is a limit of sums
  • why integrals represent net accumulation
  • how \(\int_a^b f(x)\,dx\) differs from \(\int f(x)\,dx\)
  • why the Fundamental Theorem reconnects derivatives and integrals

then this page has done its main job.

11 Go Deeper

The strongest next steps after this page are:

  1. Sequences and Series, because infinite processes and convergence are the next major calculus idea
  2. Probability, if you want to see accumulation become expectation and total probability
  3. Optimization, if you want to see how local update rules become pathwise or objective-level reasoning

12 Optional Deeper Reading

13 Optional After First Pass

If you want more practice before moving on:

  • take a rate function and write the corresponding accumulation integral
  • compare signed accumulation with geometric area when a graph dips below the axis
  • explain in words why endpoint subtraction works in the Fundamental Theorem

14 Common Mistakes

  • treating the definite integral as just another antiderivative symbol
  • forgetting that negative values contribute negatively to net accumulation
  • writing an integral without saying what is being accumulated
  • confusing geometric area with signed integral value
  • using the Fundamental Theorem mechanically without interpreting the interval

15 Sources and Further Reading

Back to top