The Fundamental Theorem of Calculus (FTC) is the crown jewel of mathematics. It connects two seemingly unrelated concepts: the derivative (slopes) and the integral (areas). Before this discovery, calculating areas was a tedious process of infinite sums. After the FTC, it became a simple matter of finding an anti-derivative.
Part 1: The Area Function
The first part of the theorem states that if we define an “area function” that accumulates the area under a function from a fixed point to :
Then the derivative of this area function is simply the original function:
The Intuition: The rate at which area is being added at point is exactly equal to the “height” of the function at that point. If the function is tall, the area grows quickly. If it is zero, the area stops growing.
Part 2: The Shortcut to Integration
The second part provides the formula we use in practice to evaluate definite integrals. If is any anti-derivative of (meaning ), then:
This is revolutionary. To find the area under a curve, you don’t need to draw rectangles. You just need to find the “inverse” of the derivative and plug in the endpoints.
Interactive Lab
import sympy as sp
# Define the variable and the function
x = sp.Symbol('x')
f = x**2
# Find the anti-derivative (Indefinite Integral)
F = sp.integrate(f, x)
print(f"Function: f(x) = {f}")
print(f"Anti-derivative: F(x) = {F}")
# Evaluate the definite integral from 0 to 3 using FTC Part 2
# Integral = F(3) - F(0)
a, b = 0, 3
result = F.subs(x, b) - F.subs(x, a)
print(f"\nIntegral from {a} to {b} of x^2 dx:")
print(f"F({b}) - F({a}) = {F.subs(x, b)} - {F.subs(x, a)} = {result}")
# Verify with sympy's definite integral tool
assert result == sp.integrate(f, (x, a, b))
python
1import sympy as sp
2
3# Define the variable and the function
4x = sp.Symbol('x')
5f = x**2
6
7# Find the anti-derivative (Indefinite Integral)
8F = sp.integrate(f, x)
9print(f"Function: f(x) = {f}")
10print(f"Anti-derivative: F(x) = {F}")
11
12# Evaluate the definite integral from 0 to 3 using FTC Part 2
The FTC is fundamental because it shows that differentiation and integration are inverse operations. It turns a geometry problem (area) into an algebra problem (anti-derivatives).
Every time a physicist calculates the energy lost by a falling object or an engineer calculates the total stress on a bridge, they are relying on this 300-year-old bridge between two worlds.
Exercises
Knowledge Check
If F(x) is the integral of f(t) from 0 to x, and f(x) = cos(x), what is F'(x)?
Answer: cos(x)
By FTC Part 1, the derivative of the accumulation function is the function inside the integral.
If F(x) is the integral of f(t) from 0 to x, and f(x) = cos(x), what is F'(x)?
Knowledge Check
What is the result of applying the FTC to calculate ∫(2x) dx from 1 to 4?
Answer: 16 - 1 = 15
The anti-derivative of 2x is x². So the integral is (4)² - (1)² = 16 - 1 = 15.
What is the result of applying the FTC to calculate ∫(2x) dx from 1 to 4?
Knowledge Check
What must be true about the function f(x) for the FTC to apply on the interval [a, b]?
Answer: It must be continuous.
Continuity is the minimal requirement to ensure the area function is well-defined and differentiable.
What must be true about the function f(x) for the FTC to apply on the interval [a, b]?