← Back to FractionRush

Integration Techniques A-Level Pure 1

Grade 11 · Pure Mathematics 1 · Cambridge A-Level 9709 · Age 16–17

Welcome to Integration Techniques!

Integration is the reverse process of differentiation — the second great pillar of calculus. In Cambridge A-Level Pure Mathematics 1, you build from basic indefinite integrals right through to definite integrals, trigonometric and exponential integrals, integration by substitution, and using integration to find curves from gradient functions and to compute areas.

∫xⁿ dx = xⁿ⁺¹/(n+1) + C  |  ∫eˣ dx = eˣ + C  |  ∫[a,b] f(x) dx = F(b) − F(a)

Learning Objectives

  • Integrate polynomials using the power rule (including negative and fractional powers)
  • Recognise and handle the special case ∫(1/x) dx = ln|x| + C
  • Apply the constant of integration C and explain why it is essential
  • Evaluate definite integrals using the Fundamental Theorem of Calculus
  • Handle negative areas (curve below x-axis) and compute absolute area by splitting at roots
  • Integrate sin x, cos x, sec²x, eˣ directly
  • Apply the reverse chain rule for linear composites (ax + b)
  • Use integration by substitution u = g(x) for more complex integrands
  • Find the equation of a curve given its gradient function and a boundary condition
  • Calculate area under a curve and area between two curves

Indefinite Integration

Power rule, +C, term-by-term, simplify first

Definite Integration

F(b) − F(a), signed vs unsigned area

Trig & Exponential

∫sin x, ∫cos x, ∫sec²x, ∫eˣ and reverse chain rule

Substitution

u = g(x), change dx, back-substitute or change limits

Finding Curves

Integrate dy/dx, apply boundary condition to find C

Area Between Curves

∫[a,b] (top − bottom) dx

Reverse Chain Rule

∫(ax+b)ⁿ and ∫e^(ax+b) short-cuts

Absolute Area

Split at roots, take absolute values of each section

Learn 1 — Indefinite Integration

Integration as Reverse Differentiation

Integration is the reverse (anti-derivative) of differentiation. If d/dx[F(x)] = f(x), then ∫f(x) dx = F(x) + C. The symbol ∫ is the integral sign, dx indicates the variable of integration, and C is the constant of integration.

The Power Rule for Integration

∫xⁿ dx = xⁿ⁺¹/(n+1) + C    (n ≠ −1)

In words: increase the power by 1, then divide by the new power. This works for any rational power n except n = −1 (which gives division by zero).

The Special Case: n = −1

∫(1/x) dx = ∫x⁻¹ dx = ln|x| + C

The modulus signs are needed because ln is only defined for positive numbers — but 1/x exists for negative x too. For exam purposes, writing ln x + C is accepted when the context implies x > 0.

Why the Constant of Integration C is Essential

When we differentiate, any constant term disappears. So when reversing the process, we cannot know what constant was there. The family of functions F(x) + C all have the same derivative f(x):

d/dx[x² + 5] = 2x    d/dx[x² − 3] = 2x    d/dx[x² + 100] = 2x

Therefore ∫2x dx = x² + C, not just x². Omitting C loses a mark in every Cambridge question.

Constant Multiple Rule

∫k·f(x) dx = k·∫f(x) dx
∫5x³ dx = 5 · x⁴/4 + C = 5x⁴/4 + C
∫(−3)x^(1/2) dx = −3 · x^(3/2)/(3/2) + C = −2x^(3/2) + C

Sum and Difference Rule

∫(f(x) ± g(x)) dx = ∫f(x) dx ± ∫g(x) dx

Integrate polynomials term by term:

Integrate y = 4x³ − 6x + 5
∫(4x³ − 6x + 5) dx = x⁴ − 3x² + 5x + C

Integrate f(x) = 3x² + 2/x³ = 3x² + 2x⁻³
= x³ + 2x⁻²/(−2) + C = x³ − x⁻² + C = x³ − 1/x² + C

Simplifying Before Integrating

Always expand brackets or split fractions before applying the power rule. You cannot integrate products or quotients directly using these rules (unless one is a constant).

Integrate (x + 3)² = x² + 6x + 9 first, then integrate:
∫(x + 3)² dx = ∫(x² + 6x + 9) dx = x³/3 + 3x² + 9x + C

Integrate (x³ + 4x) / x² = x + 4/x = x + 4x⁻¹ first, then integrate:
∫(x + 4x⁻¹) dx = x²/2 + 4 ln|x| + C

Integrate x(2x − 1) = 2x² − x first:
∫(2x² − x) dx = 2x³/3 − x²/2 + C
The most important preparation step: always rewrite expressions as a sum of terms of the form axⁿ before integrating. Expand all brackets. Split all fractions where the denominator is a monomial (single power of x). Never try to integrate a product or quotient directly with the power rule.

Learn 2 — Definite Integration

The Fundamental Theorem of Calculus

A definite integral has limits of integration (numbers a and b) and gives a numerical answer — no + C needed. The result equals the area under the curve from x = a to x = b (with sign).

∫[a,b] f(x) dx = [F(x)]ₐᵇ = F(b) − F(a)

where F(x) is any antiderivative of f(x).

Step-by-Step Method

Step 1: Find the indefinite integral F(x) (no + C needed for definite integrals).
Step 2: Write [F(x)] with limits as square bracket notation [F(x)]ₐᵇ.
Step 3: Substitute the upper limit: F(b).
Step 4: Substitute the lower limit: F(a).
Step 5: Calculate F(b) − F(a).

Example: ∫[1,3] (x² + 2x) dx

F(x) = x³/3 + x²
[x³/3 + x²]₁³ = (27/3 + 9) − (1/3 + 1)
= (9 + 9) − (1/3 + 1) = 18 − 4/3 = 50/3

Example: ∫[0,2] (3x² − 1) dx

[x³ − x]₀² = (8 − 2) − (0 − 0) = 6

Negative Areas — Curve Below the x-axis

When the curve y = f(x) lies below the x-axis on [a, b], the definite integral gives a negative value. This is the signed area. The unsigned (actual geometric) area is the absolute value.

Example: ∫[0,2] (x² − 4) dx
Note: x² − 4 < 0 for x ∈ [0, 2) since 0 − 4 = −4 < 0.
[x³/3 − 4x]₀² = (8/3 − 8) − 0 = 8/3 − 24/3 = −16/3
The signed area is −16/3. The geometric (absolute) area is 16/3.

Absolute Area — Splitting at Roots

When a curve crosses the x-axis between a and b, split the integral at each root. Add the absolute values of each part.

Find the total area enclosed by y = x² − 1, x = −1 and x = 2.
Root at x = 1 (where x² − 1 = 0 in [−1, 2]).
∫[−1,1] (x² − 1) dx = [x³/3 − x]₋₁¹ = (1/3 − 1) − (−1/3 + 1) = −2/3 − 2/3 = −4/3 → area = 4/3
∫[1,2] (x² − 1) dx = [x³/3 − x]₁² = (8/3 − 2) − (1/3 − 1) = 2/3 − (−2/3) = 4/3 → area = 4/3
Total absolute area = 4/3 + 4/3 = 8/3

Geometric Interpretation

The definite integral ∫[a,b] f(x) dx equals the net signed area between the curve y = f(x) and the x-axis from x = a to x = b.

• Area above x-axis contributes positively.
• Area below x-axis contributes negatively.
• Absolute (total shaded) area requires splitting at x-intercepts.
Always sketch the curve or check where it crosses the x-axis before evaluating a definite integral representing an area. If the question says "find the area", it means the geometric (positive) area — you must handle any regions below the x-axis separately and take their absolute values.

Learn 3 — Trig & Exponential Integration

Standard Trigonometric Integrals

∫sin x dx = −cos x + C    ∫cos x dx = sin x + C    ∫sec²x dx = tan x + C

These three must be memorised. Notice that integrating sin gives −cos (the negative sign is critical and frequently lost in exams).

∫sin x dx = −cos x + C    ✓ note the minus
∫3 cos x dx = 3 sin x + C
∫sec²x dx = tan x + C    (used whenever you see sec²x or 1/cos²x)

Standard Exponential Integral

∫eˣ dx = eˣ + C

The exponential function eˣ integrates to itself — just as it differentiates to itself.

Reverse Chain Rule — Linear Composite Functions

When the argument is a linear function (ax + b) rather than just x, divide by the inner derivative a:

∫(ax + b)ⁿ dx = (ax + b)ⁿ⁺¹ / (a(n+1)) + C    (n ≠ −1)
∫e^(ax+b) dx = e^(ax+b) / a + C
∫sin(ax+b) dx = −cos(ax+b) / a + C
∫cos(ax+b) dx = sin(ax+b) / a + C
∫sec²(ax+b) dx = tan(ax+b) / a + C
∫1/(ax+b) dx = (1/a) ln|ax+b| + C

Worked Examples — Reverse Chain Rule

∫(3x + 2)⁴ dx
a = 3, n = 4: Result = (3x+2)⁵/(3×5) + C = (3x+2)⁵/15 + C

∫e^(5x−1) dx
a = 5: Result = e^(5x−1)/5 + C

∫sin(2x) dx
a = 2: Result = −cos(2x)/2 + C

∫cos(4x + π/3) dx
a = 4: Result = sin(4x + π/3)/4 + C

∫e^(−3x) dx
a = −3: Result = e^(−3x)/(−3) + C = −e^(−3x)/3 + C

∫1/(2x + 7) dx
a = 2: Result = (1/2) ln|2x + 7| + C

∫(2 − x)³ dx
a = −1: Result = (2−x)⁴/(−1×4) + C = −(2−x)⁴/4 + C

Why This Works

To verify ∫cos(ax+b) dx = sin(ax+b)/a + C, differentiate the result:
d/dx[sin(ax+b)/a] = a·cos(ax+b)/a = cos(ax+b) ✓

The division by a compensates for the chain rule factor that would appear on differentiation. This is why this technique is called the reverse chain rule.
The reverse chain rule only works when the inner function is linear (ax + b). If the inner function is quadratic (e.g. x² + 1), you cannot use this shortcut — you need integration by substitution instead. Always check: is the argument of the function a simple linear expression in x?

Learn 4 — Integration by Substitution

What Is Substitution?

Integration by substitution is the integration equivalent of the chain rule. When an integrand contains a composite function f(g(x)) and g'(x) appears as a factor (or can be arranged to appear), we substitute u = g(x) to simplify the integral.

The Step-by-Step Method

Step 1: Choose a substitution u = g(x) — typically the "inside" function of the composite.
Step 2: Differentiate: du/dx = g'(x), so du = g'(x) dx. Rearrange to express dx in terms of du.
Step 3: Replace all occurrences of x (and dx) with expressions in u.
Step 4: Integrate with respect to u.
Step 5: Back-substitute u = g(x) to write the answer in terms of x.
For definite integrals: Either change the limits to u-values using u = g(a) and u = g(b), OR back-substitute and apply the original limits.

Example 1: ∫2x(x² + 1)⁴ dx

Let u = x² + 1 → du/dx = 2x → du = 2x dx
Replace 2x dx with du and (x²+1)⁴ with u⁴:
∫u⁴ du = u⁵/5 + C
Back-substitute: (x² + 1)⁵/5 + C

Example 2: ∫x·e^(x²) dx

Let u = x² → du = 2x dx → x dx = du/2
∫e^u · (du/2) = (1/2)eᵘ + C
Back-substitute: e^(x²)/2 + C

Example 3: ∫cos x · sin³x dx

Let u = sin x → du = cos x dx
∫u³ du = u⁴/4 + C
Back-substitute: sin⁴x/4 + C

Example 4: ∫x√(x² + 3) dx (indefinite)

Let u = x² + 3 → du = 2x dx → x dx = du/2
∫√u · (du/2) = (1/2)∫u^(1/2) du = (1/2) · u^(3/2)/(3/2) + C = u^(3/2)/3 + C
Back-substitute: (x² + 3)^(3/2)/3 + C

Definite Integral with Substitution — Changing Limits

∫[0,2] 2x(x² + 1)³ dx
Let u = x² + 1, du = 2x dx
When x = 0: u = 1    When x = 2: u = 5
∫[1,5] u³ du = [u⁴/4]₁⁵ = 625/4 − 1/4 = 624/4 = 156

When to Use Substitution

Spot a composite function f(g(x)) where the derivative g'(x) appears as a factor (possibly up to a constant multiple). Common patterns:

• f(x²+1) · x    → let u = x²+1
• f(sin x) · cos x    → let u = sin x
• f(eˣ) · eˣ    → let u = eˣ
• f(ln x) · (1/x)    → let u = ln x
The key skill is recognising when substitution is needed. If the inner function's derivative is a constant multiple of what appears in the integrand, substitution will work cleanly. If not, check whether the reverse chain rule shortcut applies. After substituting, confirm that no x terms remain before integrating — if x is still present, the substitution was not complete.

Learn 5 — Finding Curves & Constants

Finding a Curve from Its Gradient Function

If you are given dy/dx = f(x) and a point (a, b) that lies on the curve, integrate to find y = F(x) + C, then substitute the known point to determine C.

y = ∫(dy/dx) dx    then sub in (a, b) to find C

Example 1 — Polynomial Gradient

Given dy/dx = 3x² − 4x + 1 and the curve passes through (2, 3). Find y.

Integrate: y = x³ − 2x² + x + C
Substitute (2, 3): 3 = 8 − 8 + 2 + C → 3 = 2 + C → C = 1
Equation of curve: y = x³ − 2x² + x + 1

Example 2 — Rational Gradient

Given dy/dx = 2x + 3/x² and the curve passes through (1, 5). Find y.

Rewrite: dy/dx = 2x + 3x⁻²
Integrate: y = x² + 3x⁻¹/(−1) + C = x² − 3/x + C
Substitute (1, 5): 5 = 1 − 3 + C → C = 7
Equation of curve: y = x² − 3/x + 7

Area Under a Curve

The area between the curve y = f(x), the x-axis, and the lines x = a and x = b is given by the definite integral (taking the absolute value if the curve dips below the axis):

Area = ∫[a,b] f(x) dx    (provided f(x) ≥ 0 on [a,b])
Find the area under y = x² + 1 from x = 0 to x = 3.
∫[0,3] (x² + 1) dx = [x³/3 + x]₀³ = (9 + 3) − 0 = 12

Area Between Two Curves

When two curves y = f(x) and y = g(x) intersect, the area between them from x = a to x = b (where f is the top curve) is:

Area = ∫[a,b] (f(x) − g(x)) dx
Find the area enclosed between y = 4 − x² (top) and y = x + 2 (bottom).
Intersection: 4 − x² = x + 2 → x² + x − 2 = 0 → (x+2)(x−1) = 0 → x = −2, x = 1
Area = ∫[−2,1] (4 − x² − x − 2) dx = ∫[−2,1] (2 − x² − x) dx
= [2x − x³/3 − x²/2]₋₂¹
= (2 − 1/3 − 1/2) − (−4 + 8/3 − 2)
= (12/6 − 2/6 − 3/6) − (−6 + 8/3)
= 7/6 − (−10/3) = 7/6 + 20/6 = 27/6 = 9/2

Area Between Curve and y-axis

To find the area between a curve and the y-axis, integrate x as a function of y:

Area between y = x², y-axis, y = 0 to y = 4:
x = √y = y^(1/2)
Area = ∫[0,4] y^(1/2) dy = [2y^(3/2)/3]₀⁴ = 2·8/3 = 16/3
When finding the area between two curves, always identify which curve is on top (greater y-value) in the region of interest. If the two curves swap which is on top at some point, you must split the integral there. Also remember: the area found by integration is always expressed as a positive number of square units.

Worked Examples

Eight fully worked examples covering all key integration techniques for Cambridge A-Level 9709.

Example 1 — Polynomial Indefinite Integration

Q: Find ∫(6x² − 4x + 3) dx.
M1: Apply power rule term by term. Increase each power by 1, divide by new power.
A1: ∫6x² dx = 6x³/3 = 2x³  |  ∫(−4x) dx = −4x²/2 = −2x²  |  ∫3 dx = 3x
A1: Answer: 2x³ − 2x² + 3x + C 3 marks

Example 2 — Definite Integral with Negative Area Below Axis

Q: Find the area between y = x² − 4 and the x-axis, from x = 0 to x = 3.
M1: Roots of x² − 4 = 0 are x = ±2. The curve is below x-axis on [0, 2], above on [2, 3]. Split.
M1: ∫[0,2] (x²−4) dx = [x³/3 − 4x]₀² = (8/3 − 8) − 0 = −16/3. Area below axis = 16/3.
M1: ∫[2,3] (x²−4) dx = [x³/3 − 4x]₂³ = (9 − 12) − (8/3 − 8) = −3 − (−16/3) = −3 + 16/3 = 7/3.
A1: Total area = 16/3 + 7/3 = 23/3 square units. 4 marks

Example 3 — Reverse Chain Rule (Trig)

Q: Find ∫sin(3x + 1) dx.
M1: Inner function is (3x + 1), which is linear. Use reverse chain rule formula ∫sin(ax+b) dx = −cos(ax+b)/a + C.
A1: a = 3, so ∫sin(3x+1) dx = −cos(3x+1)/3 + C 2 marks

Example 4 — Reverse Chain Rule (Exponential)

Q: Evaluate ∫[0,1] e^(2x−1) dx.
M1: ∫e^(2x−1) dx = e^(2x−1)/2 + C. Write with square bracket notation.
M1: [e^(2x−1)/2]₀¹ = e^(2·1−1)/2 − e^(2·0−1)/2 = e¹/2 − e^(−1)/2
A1: = (e − 1/e)/2 = (e² − 1)/(2e) 3 marks

Example 5 — Integration by Substitution (u = x² + 1)

Q: Find ∫3x²(x³ + 1)⁴ dx using the substitution u = x³ + 1.
M1: u = x³ + 1 → du/dx = 3x² → du = 3x² dx. The factor 3x² dx becomes du exactly.
M1: ∫u⁴ du = u⁵/5 + C
A1: Back-substitute: (x³ + 1)⁵/5 + C 3 marks

Example 6 — Find Curve from Gradient with Boundary Condition

Q: A curve has gradient dy/dx = 4x − 6x⁻² and passes through (1, 3). Find the equation of the curve.
M1: Integrate: y = ∫(4x − 6x⁻²) dx = 2x² − 6x⁻¹/(−1) + C = 2x² + 6/x + C
M1: Substitute (1, 3): 3 = 2(1) + 6/1 + C = 2 + 6 + C → C = −5
A1: y = 2x² + 6/x − 5 3 marks

Example 7 — Area Under a Curve

Q: Find the area enclosed between y = x(4 − x) and the x-axis.
M1: Find roots: x(4−x) = 0 → x = 0 or x = 4. Curve is above x-axis on [0, 4].
M1: ∫[0,4] (4x − x²) dx = [2x² − x³/3]₀⁴ = (32 − 64/3) − 0
A1: = 96/3 − 64/3 = 32/3 square units. 3 marks

Example 8 — Area Between Two Curves

Q: Find the area between y = x + 6 and y = x² (where the line is above the parabola).
M1: Intersection: x + 6 = x² → x² − x − 6 = 0 → (x−3)(x+2) = 0 → x = −2, x = 3.
M1: ∫[−2,3] (x + 6 − x²) dx = [x²/2 + 6x − x³/3]₋₂³
M1: At x = 3: 9/2 + 18 − 9 = 9/2 + 9 = 27/2. At x = −2: 4/2 − 12 + 8/3 = 2 − 12 + 8/3 = −28/3.
A1: Area = 27/2 − (−28/3) = 81/6 + 56/6 = 125/6 square units. 4 marks

Common Mistakes in Integration

These are the errors examiners see most often in Cambridge 9709 scripts. Knowing why each is wrong is the best way to avoid them.

Mistake 1 — Forgetting the constant of integration +C

✗ ∫(3x² + 2) dx = x³ + 2x
✓ ∫(3x² + 2) dx = x³ + 2x + C. The constant C is lost every time you differentiate a constant — so it must be added back every time you integrate. In Cambridge exams, a missing +C in an indefinite integral typically costs 1 mark.

Mistake 2 — The n = −1 edge case

✗ ∫x⁻¹ dx = x⁰/0 + C (undefined)
✓ ∫x⁻¹ dx = ∫(1/x) dx = ln|x| + C. The power rule fails for n = −1 because dividing by (n+1) = 0 is undefined. This case must be treated separately using the logarithm integral.

Mistake 3 — Wrong sign when integrating cos x

✗ ∫cos x dx = −sin x + C
✓ ∫cos x dx = sin x + C (positive). It is d/dx(cos x) = −sin x (negative derivative). But the integral reverses: ∫cos x dx = sin x. The minus sign belongs to ∫sin x dx = −cos x, not to ∫cos x dx.

Mistake 4 — Not changing limits in definite substitution

✗ ∫[0,2] 2x(x²+1)³ dx with u = x²+1 → ∫[0,2] u³ du (still using x-limits)
✓ When u = x²+1: at x=0, u=1; at x=2, u=5. The limits must become ∫[1,5] u³ du. Alternatively, back-substitute to x before applying the original limits — but never use x-limits with a u-integrand.

Mistake 5 — Absolute vs signed area

✗ Area between y = x²−4 and x-axis from x=0 to x=3 = ∫[0,3](x²−4)dx (gives −7/3, not the area)
✓ When the curve goes below the x-axis, split at the root (x=2). Take |∫[0,2](x²−4)dx| + ∫[2,3](x²−4)dx = 16/3 + 7/3 = 23/3. Always check whether the curve crosses the axis in the interval.

Mistake 6 — Incorrect reverse chain rule — not dividing by inner derivative

✗ ∫(3x+2)⁵ dx = (3x+2)⁶/6 + C
✓ ∫(3x+2)⁵ dx = (3x+2)⁶/(6×3) + C = (3x+2)⁶/18 + C. You must divide by both (n+1) and the coefficient a of x. Forgetting to divide by a is the most common reverse chain rule error.

Mistake 7 — Splitting a fraction with a variable denominator incorrectly

✗ ∫(x² + 3)/(x²) dx treated as ∫1 dx + ∫3/x² dx = x − 3/x + C... then getting confused about whether this is correct
✓ Split correctly: (x² + 3)/x² = 1 + 3x⁻² → ∫(1 + 3x⁻²) dx = x + 3x⁻¹/(−1) + C = x − 3/x + C. The method is correct but you must rewrite each term as axⁿ first.

Mistake 8 — Trying to integrate a product without substitution

✗ ∫x·(x²+1)³ dx = (x²/2)·(x²+1)⁴/4 + C
✓ You cannot integrate products by multiplying the separate integrals. Use substitution u = x²+1, du = 2x dx → (1/2)∫u³ du = u⁴/8 + C = (x²+1)⁴/8 + C. Integration has no product rule analogue.

Mistake 9 — Forgetting to find C when a boundary condition is given

✗ Given dy/dx = 2x + 1 passing through (1, 4): writes y = x² + x (no C, no substitution)
✓ Integrate to get y = x² + x + C. Substitute (1, 4): 4 = 1 + 1 + C → C = 2. Final answer: y = x² + x + 2. The specific curve requires a specific C.

Key Formulas — Integration Techniques

Function f(x)Integral ∫f(x) dxNotes
xⁿ (n ≠ −1)xⁿ⁺¹/(n+1) + Cpower rule; n can be negative or fractional
x⁻¹ = 1/xln|x| + Cspecial case n = −1; note modulus
k (constant)kx + C= kx¹ by power rule
eˣ + Cself-integral
e^(ax+b)e^(ax+b)/a + Creverse chain rule, divide by a
sin x−cos x + Cnote the minus sign
cos xsin x + Cpositive
sec²xtan x + C1/cos²x → tan x
sin(ax+b)−cos(ax+b)/a + Creverse chain rule
cos(ax+b)sin(ax+b)/a + Creverse chain rule
sec²(ax+b)tan(ax+b)/a + Creverse chain rule
(ax+b)ⁿ (n≠−1)(ax+b)ⁿ⁺¹/[a(n+1)] + Creverse chain rule; divide by a AND (n+1)
1/(ax+b)(1/a)ln|ax+b| + Creverse chain rule for n=−1
f(g(x))·g'(x)F(g(x)) + Csubstitution u = g(x)
Definite ∫[a,b]f(x)dxF(b) − F(a)no + C; upper minus lower
Area under curve∫[a,b] f(x) dxf(x) ≥ 0; absolute value if below x-axis
Area between curves∫[a,b] (top−bottom) dxfind intersections first for limits
Find curve from dy/dxy = ∫f(x) dx + C, then find Cuse given point (a,b) to solve for C

Proof Bank

Three proofs that underpin the theory of integration at A-Level. Understanding these deepens your grasp of why the rules work.

Proof 1 — Integration as Anti-Differentiation (Reverse Power Rule)

We verify that d/dx[xⁿ⁺¹/(n+1)] = xⁿ, confirming the power rule for integration.

Let F(x) = xⁿ⁺¹/(n+1) for n ≠ −1.
Differentiate using the power rule for differentiation:
F'(x) = d/dx[xⁿ⁺¹/(n+1)] = (n+1)xⁿ/(n+1) = xⁿ

Since F'(x) = xⁿ = f(x), we have confirmed:
∫xⁿ dx = xⁿ⁺¹/(n+1) + C    Q.E.D.

The constant C arises because any constant has derivative zero, so we cannot determine it from differentiation alone.

Proof 2 — The Fundamental Theorem of Calculus (Statement & Intuition)

Statement: If F is an antiderivative of f (i.e. F'(x) = f(x)) and f is continuous on [a,b], then:
∫[a,b] f(x) dx = F(b) − F(a)

Intuition via Riemann sums:
Define A(x) = ∫[a,x] f(t) dt as the area function from a to x.
A small increase in x by h adds a thin strip of width h and height ≈ f(x):
A(x + h) − A(x) ≈ f(x) · h
Dividing by h and taking the limit: A'(x) = f(x)
So A is an antiderivative of f. Since F is also an antiderivative, F(x) = A(x) + constant.
At x = a: F(a) = A(a) + constant = 0 + constant.
Therefore: ∫[a,b] f(x) dx = A(b) = F(b) − F(a). Q.E.D.

Proof 3 — Riemann Sum Concept

The definite integral is defined as the limit of a Riemann sum. Divide [a,b] into n equal subintervals each of width Δx = (b−a)/n.
Choose a sample point xᵢ* in each subinterval [xᵢ₋₁, xᵢ].

The area of the i-th rectangle is f(xᵢ*) · Δx.
Sum all rectangles: S_n = Σᵢ₌₁ⁿ f(xᵢ*) · Δx

As n → ∞ (and Δx → 0), if f is continuous, this sum converges:
∫[a,b] f(x) dx = lim[n→∞] Σᵢ₌₁ⁿ f(xᵢ*) · (b−a)/n

This definition shows that integration literally sums infinitely many infinitely thin rectangles to compute exact area. The Fundamental Theorem then provides an efficient computational method avoiding this limit.

Area Under Curve Visualiser

Drag the upper limit slider to see the shaded area under y = x² from 0 to b. Area above x-axis is shown in pink; area below in blue. The exact value is computed and displayed.

2.00
Area = 0
Pink = positive area (above x-axis)
Blue = negative area (below x-axis)
|Signed area| shown

Exercise 1 — Polynomial Indefinite Integration (10 Questions)

Exercise 2 — Definite Integrals (10 Questions)

Exercise 3 — Trig & Exponential with Reverse Chain Rule (10 Questions)

Exercise 4 — Integration by Substitution (10 Questions)

Exercise 5 — Find Curve from Gradient & Area Calculations (10 Questions)

Practice — 30 Mixed Questions

Challenge — 15 Harder Questions

Exam Style Questions

8 exam-style questions with mark schemes. Attempt each before revealing the solution.

Q1 [3 marks]

Find ∫(5x⁴ − 3x² + 7) dx.

Apply power rule term by term:   [M1]
∫5x⁴ dx = x⁵    ∫(−3x²) dx = −x³    ∫7 dx = 7x   [A1]
x⁵ − x³ + 7x + C   [A1 for +C]

Q2 [4 marks]

Evaluate ∫[1,4] (√x + 1/√x) dx, giving your answer as an exact fraction.

Rewrite: √x = x^(1/2), 1/√x = x^(−1/2)   [B1]
∫(x^(1/2) + x^(−1/2)) dx = (2/3)x^(3/2) + 2x^(1/2)   [M1 A1]
[(2/3)x^(3/2) + 2x^(1/2)]₁⁴ = ((2/3)·8 + 2·2) − ((2/3) + 2) = (16/3 + 4) − (2/3 + 2)   [M1]
= 28/3 − 8/3 = 20/3   [A1]

Q3 [4 marks]

A curve has equation y = f(x) where f'(x) = 6x² − 4x + 3. Given that the curve passes through (1, 7), find f(x).

Integrate: f(x) = 2x³ − 2x² + 3x + C   [M1 A1]
Substitute (1, 7): 7 = 2 − 2 + 3 + C = 3 + C → C = 4   [M1]
f(x) = 2x³ − 2x² + 3x + 4   [A1]

Q4 [5 marks]

Find the area of the region enclosed between the curve y = x² − 2x and the x-axis.

Find roots: x² − 2x = x(x−2) = 0 → x = 0, x = 2   [M1]
Curve is below x-axis on (0,2) since y(1) = −1 < 0   [M1]
∫[0,2] (x² − 2x) dx = [x³/3 − x²]₀² = (8/3 − 4) − 0 = −4/3   [M1 A1]
Area = |−4/3| = 4/3 square units   [A1]

Q5 [5 marks]

Use the substitution u = 3x + 1 to find ∫x(3x+1)⁴ dx.

u = 3x+1 → du = 3dx → dx = du/3. Also x = (u−1)/3   [M1]
∫((u−1)/3)·u⁴·(du/3) = (1/9)∫(u⁵ − u⁴) du   [M1 A1]
= (1/9)[u⁶/6 − u⁵/5] + C = (3x+1)⁶/54 − (3x+1)⁵/45 + C   [M1]
= (3x+1)⁵[(3x+1)/54 − 1/45] + C   [A1 accept unsimplified]

Q6 [5 marks]

Find the area enclosed between the curves y = x² and y = 2x + 3.

Intersections: x² = 2x+3 → x²−2x−3 = 0 → (x−3)(x+1) = 0 → x = −1, x = 3   [M1]
Top curve is y = 2x+3 on [−1, 3] (check at x=1: 3 vs 2, so line is above)   [B1]
∫[−1,3] (2x+3 − x²) dx = [x² + 3x − x³/3]₋₁³   [M1]
At x=3: 9+9−9 = 9. At x=−1: 1−3+1/3 = −5/3   [A1]
Area = 9 − (−5/3) = 9 + 5/3 = 32/3 square units   [A1]

Q7 [4 marks]

Evaluate ∫[0, π/6] sin(2x) dx, giving your answer as an exact value.

∫sin(2x) dx = −cos(2x)/2 + C   [M1 A1 reverse chain rule]
[−cos(2x)/2]₀^(π/6) = −cos(π/3)/2 − (−cos(0)/2)   [M1]
= −(1/2)/2 + 1/2 = −1/4 + 1/2 = 1/4   [A1]

Q8 [6 marks]

The curve C has equation y = 2x^(3/2) − 3x + 1. (i) Find the x-coordinates where C crosses the x-axis in the interval x ≥ 0. (ii) Find the area bounded by C and the x-axis between these two crossings.

(i) Set 2x^(3/2) − 3x + 1 = 0. Let t = x^(1/2): 2t³ − 3t² + 1 = 0   [M1]
Factor: (t−1)(2t²−t−1) = (t−1)(2t+1)(t−1) = (t−1)²(2t+1) = 0   [M1]
t = 1 (double root) → x = 1; t = −1/2 rejected (t ≥ 0). Also x = 0: y = 1 ≠ 0. Check: x = 0 gives y = 1.
Wait — recheck at x=0: y=1. Root only at x=1 with multiplicity 2 (tangency). Also check x=1: y = 2−3+1 = 0 ✓   [A1 x=1]
For the region: curve from x=0 to x=1 (y ≥ 0 since y(0)=1, y(1)=0)   [B1]
(ii) Area = ∫[0,1] (2x^(3/2) − 3x + 1) dx = [4x^(5/2)/5 − 3x²/2 + x]₀¹   [M1]
= 4/5 − 3/2 + 1 = 4/5 − 1/2 = 8/10 − 5/10 = 3/10 square units   [A1]

Past Paper Questions

5 questions drawn from Cambridge A-Level 9709 Pure 1 past papers on Integration. Attempt each before revealing the solution.

Past Paper Q1 — 9709/11/O/N/20 Q3 [5 marks]

Find ∫(2x + 3)⁵ dx. Hence evaluate ∫[0,1] (2x + 3)⁵ dx.

∫(2x+3)⁵ dx = (2x+3)⁶/(2×6) + C = (2x+3)⁶/12 + C   [M1 A1]
[(2x+3)⁶/12]₀¹ = (5)⁶/12 − (3)⁶/12   [M1]
= 15625/12 − 729/12 = 14896/12 = 3724/3   [M1 A1]

Past Paper Q2 — 9709/12/M/J/19 Q4 [6 marks]

The gradient of a curve is given by dy/dx = (2x − 1)/(x²(x − 1)) which can be written as A/x + B/x² + C/(x−1). Given the curve passes through (2, 3), find the equation of the curve.

Partial fractions: (2x−1)/(x²(x−1)) = A/x + B/x² + C/(x−1)
Multiply through: 2x−1 = Ax(x−1) + B(x−1) + Cx²
x=0: −1 = −B → B = 1. x=1: 1 = C. x=−1: −3 = 2A−2·(−2)−1→A = 1.   [M1 A1]
So dy/dx = 1/x + 1/x² + 1/(x−1)   [A1]
y = ln|x| − 1/x + ln|x−1| + C   [M1 A1]
Substitute (2,3): 3 = ln2 − 1/2 + ln1 + C = ln2 − 1/2 + C → C = 3 − ln2 + 1/2 = 7/2 − ln2   [M1]
y = ln x − 1/x + ln(x−1) + 7/2 − ln 2   [A1]

Past Paper Q3 — 9709/11/M/J/18 Q5 [7 marks]

The curve y = f(x) has a gradient function f'(x) = 3x^(1/2) − 6x^(−1/2). Find the area enclosed between the curve, the x-axis and the lines x = 1 and x = 9, given that f(4) = 0.

Integrate: f(x) = 2x^(3/2) − 12x^(1/2) + C   [M1 A1]
Substitute f(4) = 0: 0 = 2·8 − 12·2 + C = 16 − 24 + C → C = 8   [M1 A1]
f(x) = 2x^(3/2) − 12x^(1/2) + 8
Check sign: f(1) = 2 − 12 + 8 = −2 < 0; f(9) = 54 − 36 + 8 = 26 > 0. Root between 1 and 9.
Set f(x) = 0: 2x^(1/2)(x^(1/2)−6)+8=0. Try x=4: 0 ✓. Factor: 2(x−6√x+4)... root at x=4.
Area on [1,4] is below axis: |∫[1,4] f dx| + ∫[4,9] f dx   [M1]
∫[1,4] (2x^(3/2)−12x^(1/2)+8) dx = [4x^(5/2)/5 − 8x^(3/2) + 8x]₁⁴
= (4·32/5 − 64 + 32) − (4/5 − 8 + 8) = (128/5 − 32) − 4/5 = 124/5 − 32 = −36/5 → area = 36/5   [A1]
∫[4,9] = [4·243/5 − 8·27 + 72] − [128/5 − 64 + 32] = (972/5−144) − (128/5−32) = 844/5 − 112 = 284/5   [A1]
Total area = 36/5 + 284/5 = 320/5 = 64 square units   [A1]

Past Paper Q4 — 9709/13/O/N/17 Q6 [6 marks]

Use the substitution u = x − 2 to find ∫[3,6] x√(x−2) dx.

u = x−2 → x = u+2, dx = du   [M1]
Limits: x=3 → u=1; x=6 → u=4   [M1]
∫[1,4] (u+2)√u du = ∫[1,4] (u^(3/2) + 2u^(1/2)) du   [A1]
= [2u^(5/2)/5 + 4u^(3/2)/3]₁⁴   [M1 A1]
At u=4: 2·32/5 + 4·8/3 = 64/5 + 32/3 = 192/15 + 160/15 = 352/15
At u=1: 2/5 + 4/3 = 6/15 + 20/15 = 26/15   [A1]
Answer = 352/15 − 26/15 = 326/15

Past Paper Q5 — 9709/12/O/N/16 Q10 [8 marks]

The curves y = x² − 2x and y = 2x − x² intersect at O(0,0) and P. (i) Find P. (ii) Find the area of the region enclosed between the two curves.

(i) x²−2x = 2x−x² → 2x²−4x = 0 → 2x(x−2) = 0 → x = 0 or x = 2   [M1]
At x=2: y = 4−4 = 0. P = (2, 0)   [A1]
(ii) On (0,2): top curve is y = 2x−x² (check at x=1: y=1 vs y=−1).   [M1]
Area = ∫[0,2] (2x−x² − (x²−2x)) dx = ∫[0,2] (4x−2x²) dx   [M1 A1]
= [2x² − 2x³/3]₀² = (8 − 16/3) − 0 = 24/3 − 16/3 = 8/3   [M1 A1]
Area = 8/3 square units   [A1]