Primitive 8 of 9

ACCUMULATION

The cognitive act of gathering—the whole from the parts.

RATE asks how fast. ACCUMULATION asks how much in total.

The bucket fills drop by drop. The distance grows step by step. The energy transfers quantum by quantum. The yield accumulates molecule by molecule. Each increment is small; the total is what matters.

ACCUMULATION is the inverse of RATE. Where RATE breaks a total into instantaneous pieces (differentiation), ACCUMULATION reassembles pieces into a total (integration).

ACCUMULATION answers: What is the sum of all the parts?

Part I

The Cognitive Basis of ACCUMULATION

1.1 Perception of Totality

Humans perceive totals directly.

Subitizing: For small numbers (1-4), we perceive quantity instantly without counting. We see "three apples," not "one apple and one apple and one apple."

Estimation: For larger quantities, we perceive approximate magnitude—"about a hundred," "thousands"—without enumeration.

Accumulation over time: We sense that effort accumulates (fatigue), that resources deplete (hunger), that experience builds (learning). The perception that small increments sum to significant totals is ecologically fundamental.

1.2 Accumulation Requires Parts and Whole

ACCUMULATION involves:

A. A domain: The range over which we accumulate. Time interval. Spatial region. Set of objects.

B. Increments: The small pieces being gathered. Rate × dt. Density × dx. Value of each element.

C. A total: The result of gathering all increments. The whole.

The cognitive act is: given the pieces and how they're distributed, what is the aggregate?

1.3 Discrete vs. Continuous

Discrete accumulation: Summation. Add distinct items.

$$\text{Total} = \sum_{i=1}^{n} a_i = a_1 + a_2 + \cdots + a_n$$

Continuous accumulation: Integration. Add infinitely many infinitesimal pieces.

$$\text{Total} = \int_a^b f(x) \, dx$$

The integral is the limit of sums as the pieces become infinitesimally small and infinitely numerous.

Part II

Summation

2.1 Sigma Notation

The sum of terms a₁, a₂, ..., aₙ:

$$\sum_{i=1}^{n} a_i = a_1 + a_2 + \cdots + a_n$$

2.2 Common Sums

Arithmetic series (constant difference):

$$\sum_{i=1}^{n} i = 1 + 2 + \cdots + n = \frac{n(n+1)}{2}$$

Geometric series (constant ratio):

$$\sum_{i=0}^{n-1} r^i = \frac{1 - r^n}{1 - r} \quad (r \neq 1)$$

For |r| < 1, as n → ∞: $\sum_{i=0}^{\infty} r^i = \frac{1}{1-r}$

2.3 Properties of Sums

PropertyFormula
Constant factorΣ(caᵢ) = cΣaᵢ
Sum of sumsΣ(aᵢ + bᵢ) = Σaᵢ + Σbᵢ
Splitting rangeΣᵢ₌₁ⁿ = Σᵢ₌₁ᵐ + Σᵢ₌ₘ₊₁ⁿ
Part III

The Integral

3.1 The Problem

How much total "stuff" lies under a curve?

If f(x) gives the rate (or density) at each point x, the total over interval [a,b] is the area under the curve.

For constant f = c: Total = c × (b - a). Easy.

For varying f(x): The rate changes. We cannot simply multiply.

3.2 Riemann Sums

Approximate the area by rectangles. Partition [a,b] into n subintervals of width Δx = (b-a)/n. In each subinterval, approximate f by a constant. Sum the rectangle areas:

$$S_n = \sum_{i=1}^{n} f(x_i) \Delta x$$

As n → ∞ (Δx → 0), the approximation improves.

Interactive: Riemann Sums
Number of Rectangles n = 6
Approximate Area ≈ 0.00
Exact Integral = 0.00

The integral is the limit of Riemann sums as rectangles become infinitely thin.

3.3 The Definite Integral

The definite integral is the limit:

$$\int_a^b f(x) \, dx = \lim_{n \to \infty} \sum_{i=1}^{n} f(x_i) \Delta x$$

3.4 Geometric Interpretation

The definite integral equals the signed area between f(x) and the x-axis:

Net area = (area above axis) - (area below axis)

Part IV

The Fundamental Theorem of Calculus

4.1 The Connection

The Fundamental Theorem of Calculus connects RATE and ACCUMULATION:

Part 1: Differentiation undoes integration.

If $F(x) = \int_a^x f(t) \, dt$, then $F'(x) = f(x)$.

The rate of accumulation equals the integrand.

Part 2: Integration undoes differentiation.

If F'(x) = f(x), then $\int_a^b f(x) \, dx = F(b) - F(a)$.

The total accumulation equals the net change in the antiderivative.

Interactive: Fundamental Theorem of Calculus
Upper Limit x x = 2.00
Area A(x) = ∫₀ˣ f(t)dt = 0.00
dA/dx = f(x) = 0.00

The rate of area accumulation equals the function value. This is the heart of calculus.

4.2 Antiderivatives

An antiderivative of f(x) is a function F(x) such that F'(x) = f(x).

Antiderivatives are not unique: if F is an antiderivative, so is F + C for any constant C.

Interactive: Antiderivative Families
Constant C C = 0
f(x) = 2x
F(x) = x² + C

All antiderivatives differ by a constant. All have the same derivative (same slope at each x).

4.3 Basic Antiderivatives

f(x)∫f(x)dx
xⁿ (n ≠ -1)xⁿ⁺¹/(n+1) + C
1/xln|x| + C
eˣ + C
sin(x)-cos(x) + C
cos(x)sin(x) + C

4.4 Evaluating Definite Integrals

Using FTC Part 2:

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

Example: $\int_0^2 x^2 \, dx = \left[\frac{x^3}{3}\right]_0^2 = \frac{8}{3} - 0 = \frac{8}{3}$

Part V

Integration Techniques

5.1 Substitution (u-substitution)

For integrals of the form ∫f(g(x))g'(x)dx:

Let u = g(x), then du = g'(x)dx.

$$\int f(g(x))g'(x) \, dx = \int f(u) \, du$$

Example: $\int 2x e^{x^2} dx$. Let u = x², du = 2x dx.

$\int e^u \, du = e^u + C = e^{x^2} + C$

5.2 Integration by Parts

For integrals of products:

$$\int u \, dv = uv - \int v \, du$$

Example: $\int x e^x dx$. Let u = x, dv = eˣdx. Then du = dx, v = eˣ.

$\int x e^x dx = xe^x - \int e^x dx = xe^x - e^x + C = e^x(x-1) + C$

5.3 Partial Fractions

For rational functions P(x)/Q(x) where degree(P) < degree(Q):

Factor Q(x) and decompose into simpler fractions.

Part VI

Applications of Integration

6.1 Area Under a Curve

$$A = \int_a^b f(x) \, dx$$

For area between two curves: $A = \int_a^b [f(x) - g(x)] \, dx$ where f(x) ≥ g(x) on [a,b].

6.2 Average Value

The average value of f(x) on [a,b]:

$$f_{avg} = \frac{1}{b-a} \int_a^b f(x) \, dx$$

6.3 Work

Work done by a variable force F(x) over displacement from a to b:

$$W = \int_a^b F(x) \, dx$$
Interactive: Work as Integral of Force
Upper Limit b b = 2.0 m
Work W = ∫F dx = 0.00 J

Work is the integral of force over displacement. The area under F(x) equals total work done.

6.4 Heat and Enthalpy

Heat required to raise temperature from T₁ to T₂:

$$q = \int_{T_1}^{T_2} C_p(T) \, dT$$

If Cₚ is constant: q = Cₚ(T₂ - T₁). If Cₚ varies with T: the integral is required.

Part VII

ACCUMULATION in Chemical Systems

7.1 Reaction Yield

Total moles of product formed from t = 0 to t = τ:

$$n_P = \int_0^\tau r(t) \, dt$$

where r(t) is the rate of production (mol/s).

7.2 Pressure-Volume Work

Work done by expanding gas:

$$w = -\int_{V_1}^{V_2} P_{ext} \, dV$$
Interactive: PV Work
Isothermal
Isobaric
Adiabatic
Final Volume V₂/V₁ 2.5

Work depends on the path. Different thermodynamic processes give different areas under the P-V curve.

7.3 State Functions vs. Path Functions

State functions are path-independent. Their changes are differences, not integrals over paths:

$$\Delta U = U_2 - U_1$$

But path-dependent quantities (heat, work) require integration along the specific path taken.

7.4 Normalization

Probability distributions must integrate to 1:

$$\int_{-\infty}^{\infty} P(x) \, dx = 1$$
Interactive: Normalization
Amplitude A A = 1.00
Width σ σ = 0.70
∫P(x)dx = 1.00

Probability distributions must integrate to 1. Adjust parameters to see the normalization constraint.

7.5 Expectation Values

The average (expectation) value of quantity A:

$$\langle A \rangle = \int_{-\infty}^{\infty} A(x) P(x) \, dx$$
Part VIII

Multiple Integrals

8.1 Double Integrals

For functions of two variables:

$$\iint_R f(x,y) \, dA = \int_a^b \int_{c(x)}^{d(x)} f(x,y) \, dy \, dx$$

Interpretation: Volume under the surface z = f(x,y) over region R.

8.2 Triple Integrals

For functions of three variables:

$$\iiint_V f(x,y,z) \, dV$$

Interpretation: Accumulated "density" f over volume V.

8.3 Change of Variables

In multiple integrals, changing coordinates requires the Jacobian:

Polar coordinates: x = r cos θ, y = r sin θ → dx dy = r dr dθ

Spherical coordinates: dx dy dz = r² sin φ dr dφ dθ

Part IX

ACCUMULATION and Other Primitives

9.1 ACCUMULATION and RATE

ACCUMULATION is the inverse of RATE.

RATE: d/dt (how fast at this instant)
ACCUMULATION: ∫dt (total over time)

The Fundamental Theorem of Calculus formalizes this inverse relationship.

9.2 ACCUMULATION and CHANGE

CHANGE gives infinitesimal increments. ACCUMULATION gathers them into finite totals.

The differential df = f'(x)dx represents CHANGE.
The integral ∫f'(x)dx = f(x) + C represents ACCUMULATION.

9.3 ACCUMULATION and SPREAD

Probability distributions (SPREAD) are normalized by ACCUMULATION:

$$\int P(x) \, dx = 1$$

Cumulative distribution functions accumulate probability:

$$F(x) = P(X \leq x) = \int_{-\infty}^{x} p(t) \, dt$$
Part X

Summary

10.1 What ACCUMULATION Is

ACCUMULATION is gathering—the assembly of parts into a whole.

The perception is primary. We sense totals directly: the full bucket, the long journey, the accumulated fatigue. Small increments sum to large effects.

The formalization is secondary: summation for discrete quantities, integration for continuous ones. The Fundamental Theorem connects ACCUMULATION to RATE as inverse operations.

Key Concepts

Summation: Σaᵢ. Discrete accumulation.

Definite integral: ∫ₐᵇ f(x)dx. Continuous accumulation. Limit of Riemann sums.

Antiderivative: F such that F' = f. Indefinite integral.

Fundamental Theorem: ∫ₐᵇ f dx = F(b) - F(a). Links integration and differentiation.

Multiple integrals: Accumulation over regions in 2D, 3D.

10.2 Forward

ACCUMULATION completes the calculus pair with RATE. The final primitive, SPREAD, addresses distribution—how quantities are allocated across possibilities.

Endnotes

[1] Subitizing and numerosity perception are discussed in Dehaene, S. (2011). The Number Sense: How the Mind Creates Mathematics (Revised ed.). Oxford University Press.
[2] The historical development of integration is traced in Boyer, C.B. (1959). The History of the Calculus and Its Conceptual Development. Dover.
[3] Thermodynamic applications of integration are covered in Atkins, P. & de Paula, J. (2014). Atkins' Physical Chemistry (10th ed.). Oxford University Press.
[4] Multiple integrals in quantum chemistry appear in Levine, I.N. (2014). Quantum Chemistry (7th ed.). Pearson.