Indefinite Integrals
1064 words
5 min read
Visual companion
Python
Type and operator map
Python Week 1: the first filter for runtime behavior
View
Revision summary
What this note is really saying
Short form
# Indefinite Integrals ## 🎯 Learning Objectives By the end of this topic, you will be able to: 1. **Define** an anti-derivative and the indefinite integral 2.

Indefinite Integrals
🎯 Learning Objectives
By the end of this topic, you will be able to:
- Define an anti-derivative and the indefinite integral
- Apply basic integration rules (power, exponential, trigonometric)
- Find indefinite integrals using substitution method
- Recognize the constant of integration C
📋 Prerequisites
- Derivatives — differentiation rules (integration is the reverse)
📖 Core Content
15.1 Intuition: The Reverse of Differentiation
If differentiation tells you the rate of change, integration tells you the original quantity given its rate. If velocity v(t) is the derivative of position s(t), then position is the integral of velocity.
An anti-derivative of f(x) is a function F(x) such that F′(x)=f(x). The indefinite integral is the set of all anti-derivatives:
where C is the constant of integration (since derivative of a constant is 0).
💡 Why this matters: Integration is used everywhere: computing areas, volumes, work, probability (cumulative distribution functions), and solving differential equations.
15.2 Basic Integration Rules
| Derivative Rule | Integral Rule |
|---|---|
| dxdC=0 | ∫0dx=C |
| dxdxn=nxn−1 | ∫xndx=n+1xn+1+C (n=−1) |
| $\frac{d}{dx}\ln | x |
| dxdex=ex | ∫exdx=ex+C |
| dxdax=axlna | ∫axdx=lnaax+C |
| dxdsinx=cosx | ∫cosxdx=sinx+C |
| dxdcosx=−sinx | ∫sinxdx=−cosx+C |
| dxdtanx=sec2x | ∫sec2xdx=tanx+C |
Linearity: ∫[f(x)+g(x)]dx=∫f(x)dx+∫g(x)dx
∫cf(x)dx=c∫f(x)dx
15.3 Worked Examples
Example 1.1: Find ∫(3x2−2x+1)dx.
\int (3x^2 - 2x + 1)\,dx &= 3\int x^2\,dx - 2\int x\,dx + \int 1\,dx \\ &= 3\cdot\frac{x^3}{3} - 2\cdot\frac{x^2}{2} + x + C \\ &= x^3 - x^2 + x + C \end{aligned}
\boxed{\frac{x^5}{5} + C}
\boxed{x^4 - x^2 + 7x + C}
\boxed{-\frac{1}{x} + C}
\boxed{\frac{1}{2}e^{2x} + C}
\boxed{-3\cos x + C}
\boxed{\ln(x^2+1) + C}
\boxed{\frac{2}{3}x^{3/2} + C}
\boxed{\frac{(x+1)^5}{5} + C}
\boxed{\frac{1}{3}\ln|3x+2| + C}
\boxed{-\frac{2}{3}\cos^3 x + C}$$ --- ## 🔗 Cross-References - Next topic: [Definite Integrals & FTC](/courses/bsma1001/notes/integration-definite) - Related: [Integration Techniques](/courses/bsma1001/notes/integration-techniques) - Across courses: BSMA1003 Maths 2 (multivariable integration); BSMA1002 Stats 1 (probability densities)
Join Discord
Previous8.2 Applications of DerivativesNext9.2 Definite Integrals & FTC