Search Knowledge

© 2026 LIBREUNI PROJECT

Calculus & Analysis / Overview

The Fundamental Theorem of Calculus

The Fundamental Theorem of Calculus

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” F(x)F(x) that accumulates the area under a function f(t)f(t) from a fixed point aa to xx: F(x)=axf(t)dtF(x) = \int_a^x f(t) \, dt Then the derivative of this area function is simply the original function: F(x)=f(x)F'(x) = f(x)

The Intuition: The rate at which area is being added at point xx 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 FF is any anti-derivative of ff (meaning F=fF' = f), then: abf(x)dx=F(b)F(a)\int_a^b f(x) \, dx = F(b) - F(a)

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.

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
13# Integral = F(3) - F(0)
14a, b = 0, 3
15result = F.subs(x, b) - F.subs(x, a)
16 
17print(f"\nIntegral from {a} to {b} of x^2 dx:")
18print(f"F({b}) - F({a}) = {F.subs(x, b)} - {F.subs(x, a)} = {result}")
19 
20# Verify with sympy's definite integral tool
21assert result == sp.integrate(f, (x, a, b))
22 

Why “Fundamental”?

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

If F(x) is the integral of f(t) from 0 to x, and f(x) = cos(x), what is F'(x)?

What is the result of applying the FTC to calculate ∫(2x) dx from 1 to 4?

What must be true about the function f(x) for the FTC to apply on the interval [a, b]?

Previous Module Functional Analysis