Just like differentiation has rules, integration has its own set of basic rules. These rules allow you to find antiderivatives of common functions without starting from scratch every time.

🎯 In this section you will learn

📋 The Basic Integration Rules (Reference Table)

RuleFormulaExample
Power Rule (n ≠ -1)$\int x^n dx = \frac{x^{n+1}}{n+1} + C$$\int x^4 dx = \frac{x^5}{5} + C$
Constant Multiple Rule$\int c \cdot f(x) dx = c \int f(x) dx$$\int 5x^2 dx = 5 \cdot \frac{x^3}{3} + C$
Sum Rule$\int [f(x) + g(x)] dx = \int f(x) dx + \int g(x) dx$$\int (x^2 + \sin x) dx = \frac{x^3}{3} - \cos x + C$
Difference Rule$\int [f(x) - g(x)] dx = \int f(x) dx - \int g(x) dx$$\int (x^3 - e^x) dx = \frac{x^4}{4} - e^x + C$
Exponential$\int e^x dx = e^x + C$$\int 3e^x dx = 3e^x + C$
Natural Log$\int \frac{1}{x} dx = \ln|x| + C$$\int \frac{5}{x} dx = 5\ln|x| + C$
Sine$\int \sin x dx = -\cos x + C$$\int 2\sin x dx = -2\cos x + C$
Cosine$\int \cos x dx = \sin x + C$$\int 3\cos x dx = 3\sin x + C$

📌 Power Rule in Depth

$$ \int x^n \, dx = \frac{x^{n+1}}{n+1} + C \quad (n \neq -1) $$
Example 1Power Rule with Positive Exponents
Example 2Power Rule with Negative Exponents

📌 Constant Multiple and Sum/Difference Rules

Example 3Combining the Rules

Find $\int (3x^2 - 4x + 5) dx$.

Break into separate integrals
$\int 3x^2 dx - \int 4x dx + \int 5 dx$
Apply constant multiple rule
$3\int x^2 dx - 4\int x dx + 5\int 1 dx$
Apply power rule
$3 \cdot \frac{x^3}{3} - 4 \cdot \frac{x^2}{2} + 5x + C = x^3 - 2x^2 + 5x + C$

📌 Special Integrals

Example 4Exponential and Log
Example 5Trigonometric Integrals
Example 6Putting It All Together

Find $\int (x^2 + e^x + \frac{1}{x} + \sin x) dx$.

⚠️ Common Mistakes
🔍 Key Takeaways
← Back to Module Page