Integration Techniques
1011 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
# Integration Techniques ## 🎯 Learning Objectives By the end of this topic, you will be able to: 1. **Apply** substitution method for composite functions 2.

Integration Techniques
🎯 Learning Objectives
By the end of this topic, you will be able to:
- Apply substitution method for composite functions
- Use integration by parts for products of functions
- Decompose rational functions using partial fractions
- Integrate piecewise-defined functions
📋 Prerequisites
- Definite Integrals — FTC, properties
- Algebra — polynomial division, factoring
📖 Core Content
17.1 Review of Substitution
∫f(g(x))⋅g′(x)dx=∫f(u)duwhere u=g(x)Example: ∫2xcos(x2)dx
Let u=x2, du=2xdx. ∫cosudu=sinu+C=sin(x2)+C
17.2 Integration by Parts
∫udv=uv−∫vduIntuition: The reverse of the product rule. Choose u as the part that simplifies when differentiated.
LIATE rule (order of choosing u): Logarithms, Inverse trig, Algebraic, Trigonometric, Exponential.
Worked Examples
Example 2.1: ∫xexdx
Let u=x, dv=exdx. Then du=dx, v=ex.
∫xexdx=xex−∫exdx=xex−ex+C=ex(x−1)+C
Example 2.2: ∫lnxdx
Let u=lnx, dv=dx. Then du=x1dx, v=x.
∫lnxdx=xlnx−∫x⋅x1dx=xlnx−∫1dx=xlnx−x+C
Example 2.3: ∫x2exdx (repeated parts)
Let u=x2, dv=exdx. du=2xdx, v=ex.
=x2ex−∫2xexdx=x2ex−2(xex−ex)+C=ex(x2−2x+2)+C
17.3 Partial Fractions
For ∫Q(x)P(x)dx where degree of P < degree of Q:
Step 1: Factor Q(x)
Step 2: Write partial fraction decomposition
Step 3: Integrate each term
| Factor in Q(x) | Term in Decomposition |
|---|---|
| (ax+b) | ax+bA |
| (ax+b)k | ax+bA1+(ax+b)2A2+⋯+(ax+b)kAk |
| (ax2+bx+c) irreducible | ax2+bx+cAx+B |
Worked Example
Example 3.1: ∫x2+x−22x+3dx
Step 1 — Factor: x2+x−2=(x−1)(x+2)
Step 2 — Decompose: (x−1)(x+2)2x+3=x−1A+x+2B
2x+3=A(x+2)+B(x−1)=(A+B)x+(2A−B)
A+B=2, 2A−B=3⟹A=5/3, B=1/3
Step 3 — Integrate: ∫x−15/3dx+∫x+21/3dx=35ln∣x−1∣+31ln∣x+2∣+C
17.4 Trigonometric Integrals
| Type | Strategy |
|---|---|
| ∫sinmxcosnxdx | If m odd, save sinx , convert rest to cos |
| If n odd, save cosx , convert rest to sin | |
| If both even, use half-angle formulas | |
| ∫tanmxsecnxdx | If n even, save sec2x |
| If m odd, save secxtanx |
Example: ∫sin2xdx=∫21−cos2xdx=2x−4sin2x+C
17.5 Integration of Piecewise Functions
Split the integral at the piece boundaries and integrate each piece separately.
Example: ∫−12f(x)dx where
∫−10xdx+∫02x2dx=[2x2]−10+[3x3]02=(0−21)+(38−0)=−21+38=613
📐 Key Formulas — Summary Table
| Technique | Formula | When to Use |
|---|---|---|
| Substitution | ∫f(g(x))g′(x)dx=∫f(u)du | Composite functions |
| Parts | ∫udv=uv−∫vdu | Product of functions |
| Partial fractions | Q(x)P(x)=∑factorAi | Rational functions |
| Trig identities | sin2x=21−cos2x | Powers of trig |
⚠️ Common Pitfalls
Pitfall 1: Wrong Choice of u in Parts
Choose u that simplifies when differentiated. Use LIATE: lnx before algebraic, exponential last.
Pitfall 2: Forgetting Absolute Values in Log Integrals
∫x1dx=ln∣x∣+C, not lnx+C (which is only valid for x>0).
Pitfall 3: Partial Fractions Requires Proper Rational Functions
If degree of numerator ≥ degree of denominator, divide first.
📝 Practice Questions
>f(x)={12x<0x≥0>Q1: Find ∫xsinxdx.Parts: u=x, dv=sinxdx, du=dx, v=−cosx. =−xcosx+∫cosxdx=−xcosx+sinx+C−xcosx+sinx+C Q2: Find ∫x2−1dx.(x−1)(x+1)1=x−11/2−x+11/2 ∫=21ln∣x−1∣−21ln∣x+1∣+C=21lnx+1x−1+C21lnx+1x−1+C Q3: Find ∫ln(x2)dx.ln(x2)=2lnx 2∫lnxdx=2(xlnx−x)+C2xlnx−2x+C Q4: Find ∫xe2xdx.Parts: u=x, dv=e2xdx, du=dx, v=e2x/2. =2xe2x−21∫e2xdx=2xe2x−4e2x+C4e2x(2x−1)+C Q5: Find ∫01xexdx.[xex−ex]01=(e−e)−(0−1)=11 Q6: Find ∫x2+4dx.21arctan(2x)+C21arctan(2x)+C **Q7: Find ∫−11f(x)dx where
.**∫−101dx+∫012dx=1+2=33 Q8: Find ∫cos2xdx.21+cos2x → 2x+4sin2x+C2x+4sin2x+C
🔗 Cross-References
- Previous: Definite Integrals
- Next: Graph Fundamentals
- Across courses: BSMA1003 Maths 2 (advanced integration techniques, multiple integrals) Join Discord Previous9.2 Definite Integrals & FTCNext10.1 Graph Fundamentals