Unit 6 Foundations: Accumulation, Riemann Sums, and Definite Integrals

Exploring Accumulations of Change

What “accumulation” means (and why calculus cares)

In everyday terms, accumulation is what you get when you keep adding small contributions over time (or over distance, or over any input variable). Calculus formalizes this idea because many important quantities are naturally described by rates of change rather than by direct formulas.

For example:

  • Your car’s velocity tells you how fast position is changing; accumulating velocity over time gives change in position (displacement).
  • A tank’s inflow rate (liters per minute) tells you how fast volume is changing; accumulating inflow over time gives change in volume.
  • A marginal cost function (dollars per item) tells you how cost changes with production; accumulating it over an interval gives change in total cost.

The key perspective shift is:

  • A derivative answers “how fast is it changing right now?”
  • An integral answers “how much change built up over an interval?”

Rate-of-change models and net change

Suppose a quantity Q depends on time t. If you know the **rate of change** Q'(t), then over a small time step \Delta t, the change in Q is approximately

\Delta Q \approx Q'(t)\Delta t

That approximation is the engine behind accumulation: break an interval into lots of small pieces, approximate the change on each piece, and add them up.

Over an interval from t=a to t=b, you should distinguish:

  • Net change in Q: the overall change, accounting for increases and decreases.
  • Total change (total accumulation): sometimes you want “how much was accumulated no matter the direction,” which may require absolute values (this comes up often with velocity and “total distance traveled”).

If Q'(t) is positive, Q is increasing; if Q'(t) is negative, Q is decreasing. When you “accumulate” the rate, negative contributions subtract from the total—this is why integrals naturally represent net change.

Accumulation as “area,” but with meaning

When the independent variable is x and the rate function is f(x), the definite integral

\int_a^b f(x)\,dx

represents the net accumulation of f from a to b.

If f(x) is a **rate** like “gallons per hour,” then the integral has units “gallons.” If f(x) is velocity “meters per second,” integrating over seconds gives meters.

When f(x) is nonnegative, this net accumulation matches the geometric **area under the curve**. When f(x) dips below the x-axis, the integral counts that part as negative area—so it is signed area.

This is not just a geometric trick; it’s a consistent way to compute net change:

Q(b)-Q(a)=\int_a^b Q'(t)\,dt

That relationship is a core idea (it is a direct expression of the Fundamental Theorem of Calculus as “net change equals the integral of the rate”).

The accumulation function (building a new function from a rate)

Often you define a new function by accumulating a rate from a fixed starting point. Given a function f, define

A(x)=\int_a^x f(t)\,dt

Here’s what this means conceptually:

  • You start at t=a.
  • You move to t=x.
  • You add up all the contributions f(t)\Delta t along the way.

So A(x) is not a number—it’s a **function** of the upper limit x.

Two extremely important interpretations follow:

  1. A(x) measures accumulated net change from a to x.
  2. The derivative of A is the original rate function:

A'(x)=f(x)

This is powerful because it connects accumulation (integral) back to instantaneous rate (derivative). It also gives you a way to reason about graphs: if you know where f(x) is positive or negative, you know where A(x) is increasing or decreasing.

Example 1: Net change from a rate

A tank’s volume changes at rate r(t)=3-0.5t liters/min for 0 \le t \le 6. If V(0)=10 liters, find V(6).

Step 1: Write net change.

V(6)=V(0)+\int_0^6 r(t)\,dt

Step 2: Compute the integral.

\int_0^6 (3-0.5t)\,dt=\left[3t-0.25t^2\right]_0^6

Evaluate:

\left(3\cdot 6-0.25\cdot 36\right)-0=18-9=9

Step 3: Add initial value.

V(6)=10+9=19

Interpretation: the net accumulated inflow over 6 minutes is 9 liters.

Example 2: Understanding signed area vs “total amount”

If v(t) is velocity, then

\int_a^b v(t)\,dt

is displacement (net change in position). If you want total distance traveled, you need

\int_a^b |v(t)|\,dt

A common mistake is to compute displacement when the question asks for total distance—always check whether direction matters.

Exam Focus
  • Typical question patterns:
    • You’re given a rate function (velocity, flow rate, marginal cost) and an initial value, and you must compute the accumulated quantity using an integral.
    • You’re asked to interpret a definite integral’s meaning in context, including units.
    • You’re given a graph of f and asked about where the accumulation function A(x)=\int_a^x f(t)\,dt is increasing/decreasing or has maxima/minima.
  • Common mistakes:
    • Treating the integral as “area” even when f is negative and the situation requires signed accumulation.
    • Forgetting to add the initial value (computing \int_a^b r(t)\,dt but not converting it to the final quantity).
    • Mixing up displacement and total distance (using \int v instead of \int |v|).

Approximating Areas with Riemann Sums

Why you approximate at all

Not every accumulation problem starts with an easy-to-integrate formula. Sometimes you’re given:

  • A table of values of a rate.
  • A graph without an equation.
  • A function that is difficult to integrate exactly.

In these cases, you approximate the definite integral by breaking the interval into small subintervals and approximating the function on each piece with a rectangle. This is the idea behind Riemann sums.

Partitions and subinterval width

To approximate accumulation on [a,b], you choose a partition of the interval:

a=x_0