Integration and the Fundamental Theorem of Calculus
The integral as accumulated area, the Fundamental Theorem linking it to antiderivatives, and its use in present value and accumulated cash flows.
Leads to: Integration underpins expectation (Phase 7), the Itô integral (Phase 9), and continuous-time valuation.
Learning Objectives
Click a status chip to cycle: Not started → In progress → Studied → Practiced → Needs review → Mastered.
- Define the definite integral as a limit of Riemann sums and interpret it as signed area.
- State both parts of the Fundamental Theorem of Calculus and use them to evaluate integrals.
- Apply substitution to compute integrals.
- Compute the present value of a continuous cash-flow stream by integration.
Key Vocabulary
- Riemann sum
- ∑ f(x_i*) Δx, an approximation of area by rectangles over a partition.
- Definite integral
- ∫_a^b f dx = limit of Riemann sums as the mesh → 0; the signed area under f.
- Antiderivative
- A function F with F′=f; unique up to an additive constant.
- FTC Part 1
- d/dx ∫_a^x f(t)dt = f(x): integration and differentiation are inverse operations.
- FTC Part 2
- ∫_a^b f dx = F(b)−F(a) for any antiderivative F of f.
- Present value
- Today’s worth of future money, discounted at rate r; a future dollar at time t is worth e^{−rt}.
The integral as accumulated area
Partition \([a,b]\) into slices, approximate the area under \(f\) by rectangles, and refine. The limit - when it exists - is the definite integral, the signed area between the curve and the axis:
The Fundamental Theorem
The FTC is the hinge of calculus: it says differentiation and integration undo each other. Part 1: the area-so-far function \(G(x)=\int_a^x f(t)\,dt\) has derivative \(G'(x)=f(x)\). Part 2: to evaluate a definite integral, find any antiderivative \(F\) and subtract:
Substitution reverses the chain rule: for \(\int f(g(x))g'(x)\,dx\), let \(u=g(x)\) so \(du=g'(x)\,dx\), turning it into \(\int f(u)\,du\).
Finance link: present value of a cash-flow stream
Suppose income arrives continuously at rate \(c(t)\) dollars per year, discounted continuously at rate \(r\). A dollar at time \(t\) is worth \(e^{-rt}\) today, so the present value of the whole stream over \([0,T]\) is an integral:
For a constant stream \(c(t)=c\), this evaluates to \(\mathrm{PV}=\frac{c}{r}\big(1-e^{-rT}\big)\) - the continuous analogue of an annuity, derived in the exercise.
Interactive: Riemann sum in real Python
- Forgetting the +C on an indefinite integral, or worse, carrying it into a definite integral where it cancels.
- Not changing the limits (or back-substituting) when using substitution - a and b are x-values, not u-values.
- Treating ∫ as always positive; it is SIGNED area and is negative where f<0.
- Discounting a continuous stream with a discrete factor instead of e^{−rt}.
- FTC Part 2 turns area into an antiderivative evaluation - master a table of antiderivatives.
- For substitution, either convert the limits to u or resubstitute x before plugging in; never mix.
- Present value is just a discounted integral; the discount factor e^{−rt} is the continuous cousin of 1/(1+r)^t.
- Sanity-check any symbolic integral with a quick numerical Riemann sum.
Knowledge Check
Practical Exercise
A perpetual project pays a constant \(c\) dollars/year continuously, discounted at rate \(r\gt 0\). (a) Compute the present value over \([0,T]\). (b) Take \(T\to\infty\) to get the value of the perpetuity.
(a) With \(c(t)=c\) constant:
(b) As \(T\to\infty\), \(e^{-rT}\to0\), so \(\mathrm{PV}\to c/r\). A continuous perpetuity paying \(c\) per year is worth \(c/r\) today - the continuous-time version of the classic perpetuity formula.
Lesson Summary
Formula Sheet Additions
Retrieval Practice
Close the lesson and answer from memory before checking. This is deliberate, effortful recall - the single highest-yield study action.
A: Part 1: if G(x)=∫_a^x f(t)dt then G′(x)=f(x). Part 2: ∫_a^b f dx=F(b)−F(a) for any antiderivative F of f. Together they make differentiation and integration inverse operations.
A: PV=∫_0^T c(t)e^{−rt}dt; for a constant rate c over an infinite horizon this equals c/r, the continuous perpetuity value.
Completion Checklist
- I can explain the core ideas in my own words
- I worked the derivations/examples by hand
- I completed the interactive workbench(es)
- I passed the knowledge check
Source References
This lesson synthesizes and paraphrases concepts from the sources below. No copyrighted text, problem sets, or solutions are reproduced. Return to the originals for full depth.
- Calculus, Vol. I (Tom Apostol, 2nd ed., 1967) foundational - Vol. I, Ch. 1-2, 5 - The integral as a limit of sums and the Fundamental Theorem of Calculus.
- Stochastic Calculus for Finance II (Steven Shreve, 2004) foundational - discounting - Continuous discounting and integrals of cash flows as the setting for later risk-neutral valuation.