The Fundamental Theorem of Calculus

πŸ“Š

Also Available as Interactive Presentation

Learn visually with slides and animations

View Presentation

The Fundamental Theorem of Calculus (FTC) is one of the most important theorems in mathematics. It establishes a profound connection between two central operations in calculus: differentiation and integration.

What is the Fundamental Theorem of Calculus?

The theorem has two parts, both of which reveal the inverse relationship between derivatives and integrals.

Part 1: The Integral Function

If ff is continuous on [a,b][a, b], then the function FF defined by:

F(x)=∫axf(t) dtF(x) = \int_a^x f(t) \, dt

is continuous on [a,b][a, b], differentiable on (a,b)(a, b), and:

Fβ€²(x)=f(x)F'(x) = f(x)

This tells us that integration and differentiation are inverse operations.

Part 2: The Evaluation Theorem

If ff is continuous on [a,b][a, b] and FF is any antiderivative of ff, then:

∫abf(x) dx=F(b)βˆ’F(a)\int_a^b f(x) \, dx = F(b) - F(a)

This gives us a practical way to compute definite integrals!

An Intuitive Example

Let’s say we want to find the area under the curve f(x)=x2f(x) = x^2 from x=0x = 0 to x=2x = 2.

Step 1: Find the antiderivative

The antiderivative of f(x)=x2f(x) = x^2 is:

F(x)=x33+CF(x) = \frac{x^3}{3} + C

Step 2: Apply the FTC (Part 2)

∫02x2 dx=F(2)βˆ’F(0)=233βˆ’033=83\int_0^2 x^2 \, dx = F(2) - F(0) = \frac{2^3}{3} - \frac{0^3}{3} = \frac{8}{3}

So the area is 83\frac{8}{3} square units!

Why Does This Work?

The key insight is that if we accumulate tiny areas under a curve (integration), the rate at which that accumulated area changes (differentiation) is exactly the height of the curve at that point.

Think of it like this:

  • Integration = Accumulation of area
  • Differentiation = Rate of change of that accumulation

Computing It in Code

Here’s how we might verify this numerically using Python:

import numpy as np
from scipy import integrate

# Define our function
def f(x):
    return x**2

# Numerical integration
result, error = integrate.quad(f, 0, 2)
print(f"Numerical integral: {result:.6f}")

# Analytical result using FTC
analytical = (2**3)/3 - (0**3)/3
print(f"Analytical (FTC): {analytical:.6f}")

# Verify they match
print(f"Difference: {abs(result - analytical):.10f}")

Output:

Numerical integral: 2.666667
Analytical (FTC): 2.666667
Difference: 0.0000000000

Applications

The FTC is used everywhere in mathematics, physics, and engineering:

  1. Physics: Computing work from force: W=∫abF(x) dxW = \int_a^b F(x) \, dx
  2. Probability: Finding probabilities from density functions
  3. Economics: Calculating total cost from marginal cost
  4. Engineering: Determining displacement from velocity

Practice Problems

Try these exercises to test your understanding:

  1. Evaluate: ∫13(2x+1) dx\int_1^3 (2x + 1) \, dx

    Solution: F(x)=x2+xF(x) = x^2 + x F(3)βˆ’F(1)=(9+3)βˆ’(1+1)=10F(3) - F(1) = (9 + 3) - (1 + 1) = 10

  2. If g(x)=∫0xsin⁑(t) dtg(x) = \int_0^x \sin(t) \, dt, find gβ€²(x)g'(x).

    Solution: By FTC Part 1, gβ€²(x)=sin⁑(x)g'(x) = \sin(x)

  3. Evaluate: ∫0Ο€cos⁑(x) dx\int_0^\pi \cos(x) \, dx

    Solution: F(x)=sin⁑(x)F(x) = \sin(x) F(Ο€)βˆ’F(0)=sin⁑(Ο€)βˆ’sin⁑(0)=0βˆ’0=0F(\pi) - F(0) = \sin(\pi) - \sin(0) = 0 - 0 = 0

Conclusion

The Fundamental Theorem of Calculus bridges the gap between the tangent line problem (derivatives) and the area problem (integrals). It’s the key that unlocks the power of calculus and makes it useful for solving real-world problems.

Understanding the FTC deeply will help you:

  • Compute integrals efficiently
  • Understand the relationship between rates and accumulation
  • Apply calculus to physics and engineering problems

Keep practicing, and these concepts will become second nature!


Next in this series: Integration Techniques: Substitution and Parts