# Further integration and applications

> CIE A-Level Further Mathematics · FP2
> Source: https://www.owlsprep.com/study/cie-9231-u2-further-integration-and-applications/

This sub-topic covers improper integration, arc length calculation, surface area of revolution, and reduction formulas, core FP2 topics frequently assessed in extended, high-mark exam questions.

**Prerequisites:** [Basic A-Level integration techniques](https://www.owlsprep.com/study/cie-9231-integration-techniques/); [Differentiation of Cartesian and parametric functions](https://www.owlsprep.com/study/cie-9231-u1-differentiation/)

## Learning objectives

- Evaluate convergent and divergent improper integrals
- Calculate arc length of Cartesian and parametric curves
- Find the surface area of a solid of revolution
- Derive and use reduction formulas for definite integrals

## Improper Integrals

**Improper Integral** — An integral is improper if one or both limits are infinite, or the integrand has a discontinuity (vertical asymptote) at or within the integration bounds.

*Example:* $\int_1^\infty \frac{1}{x^2} dx$ (infinite bound); $\int_0^1 \frac{1}{\sqrt{x}} dx$ (discontinuity at $x=0$)

To evaluate an improper integral, replace the problematic bound/discontinuity with a variable, take the limit as the variable approaches the bound, and evaluate the definite integral if the limit exists. If the limit is not finite, the integral is divergent.

**Worked example:** Evaluate $\int_0^1 \frac{1}{\sqrt{1-x^2}} dx$, and state if it diverges.

1. The integrand has a discontinuity at $x=1$, so rewrite as a left-hand limit:

   $$\lim_{a \to 1^-} \int_0^a \frac{1}{\sqrt{1-x^2}} dx$$
2. The antiderivative of $\frac{1}{\sqrt{1-x^2}}$ is $\sin^{-1}x$, so evaluate the definite integral:

   $$\lim_{a \to 1^-} \left[ \sin^{-1}x \right]_0^a = \lim_{a \to 1^-} \left( \sin^{-1}(a) - 0 \right)$$
3. Substitute the limit to get the final result:

   $$\sin^{-1}(1) = \frac{\pi}{2}$$
4. The limit exists, so the integral converges to $\frac{\pi}{2}$.

> **warning**
>
> Always check for discontinuities inside the integration interval, not just at endpoints. Split the integral at any internal discontinuity.

## Arc Length of a Curve

**Arc Length** — The total length of a curve between two points, calculated by summing infinitesimal straight segments via integration.

*Notation:* For $y=f(x)$, $a \leq x \leq b$: $s = \int_a^b \sqrt{1 + \left( \frac{dy}{dx} \right)^2} dx$. For parametric $x=x(t), y=y(t)$, $t_1 \leq t \leq t_2$: $s = \int_{t_1}^{t_2} \sqrt{ \left( \frac{dx}{dt} \right)^2 + \left( \frac{dy}{dt} \right)^2 } dt$

The formula comes from applying Pythagoras' theorem to tiny segments of the curve, then integrating to find the total length. Exam questions are always designed so the expression under the square root simplifies to a perfect square.

**Worked example:** Find the arc length of $y = \frac{x^2}{2} - \frac{\ln x}{4}$ between $x=1$ and $x=2$.

1. Differentiate $y$ with respect to $x$:

   $$\frac{dy}{dx} = x - \frac{1}{4x}$$
2. Simplify $1 + (dy/dx)^2$:

   $$1 + \left(x - \frac{1}{4x}\right)^2 = x^2 + \frac{1}{2} + \frac{1}{16x^2} = \left(x + \frac{1}{4x}\right)^2$$
3. Substitute into the arc length formula and integrate:

   $$s = \int_1^2 \sqrt{\left(x + \frac{1}{4x}\right)^2} dx = \int_1^2 \left(x + \frac{1}{4x}\right) dx$$
4. Evaluate the definite integral:

   $$\left[ \frac{x^2}{2} + \frac{\ln x}{4} \right]_1^2 = \frac{3}{2} + \frac{\ln 2}{4}$$

> **Exam tip**
>
> If your expression under the square root does not simplify to a perfect square, you have made a differentiation or algebra mistake, so check your work early.

## Surface Area of Revolution

**Surface Area of Revolution** — The total curved surface area of the solid formed when a curve is rotated around an axis.

*Notation:* Rotation around $x$-axis ($y=f(x)$, $a \leq x \leq b$): $S = 2\pi \int_a^b y \sqrt{1 + \left( \frac{dy}{dx} \right)^2} dx$. Rotation around $y$-axis: $S = 2\pi \int_a^b x \sqrt{1 + \left( \frac{dy}{dx} \right)^2} dx$

This formula is derived by approximating the surface as a series of thin frustums of cones, then taking the limit as the number of frustums increases. It is easy to mix up this formula with the volume of revolution formula, so memorize it carefully.

**Worked example:** Find the surface area of the solid formed when $y = \sqrt{4 - x^2}$ between $x=0$ and $x=1$ is rotated 360° around the $x$-axis.

1. Differentiate $y$ with respect to $x$:

   $$\frac{dy}{dx} = \frac{-x}{\sqrt{4 - x^2}}$$
2. Simplify $1 + (dy/dx)^2$:

   $$1 + \frac{x^2}{4 - x^2} = \frac{4}{4 - x^2}$$
3. Substitute into the surface area formula:

   $$S = 2\pi \int_0^1 \sqrt{4 - x^2} \times \sqrt{\frac{4}{4 - x^2}} dx = 2\pi \int_0^1 2 dx$$
4. Evaluate the integral:

   $$4\pi \left[ x \right]_0^1 = 4\pi$$

> **warning**
>
> Unless explicitly asked, you only need to calculate the curved surface area, not add the area of flat circular ends.

## Reduction Formulas

**Reduction Formula** — A recurrence relation that relates an integral $I_n$ (dependent on integer $n$) to an integral with a lower index, to allow evaluation for large $n$.

*Example:* For $I_n = \int_0^{\pi/2} \sin^n x dx$, $nI_n = (n-1)I_{n-2}$

Virtually all reduction formulas are derived using integration by parts. Once you have derived the formula, you work down from the required $n$ to a base case (usually $I_0$ or $I_1$) to get the final numerical result.

**Worked example:** For $I_n = \int_0^1 x^n e^x dx$, show that $I_n = e - nI_{n-1}$, hence find $I_3$.

1. Integrate by parts with $u = x^n$, $dv = e^x dx$:

   $$du = n x^{n-1} dx, v = e^x$$
2. Apply integration by parts $\int u dv = uv - \int v du$:

   $$I_n = \left[ x^n e^x \right]_0^1 - \int_0^1 n x^{n-1} e^x dx$$
3. Evaluate the boundary term to get the reduction formula:

   $$I_n = e - n I_{n-1}$$
4. Evaluate base cases and work up to $I_3$:

   $$I_0 = e-1, I_1 = e - I_0 = 1, I_2 = e - 2I_1 = e-2, I_3 = e - 3I_2 = 6 - 2e$$

## Common pitfalls

- **Wrong:** Forgetting to check for discontinuities inside the integration interval for improper integrals.
  - Why it fails: An internal discontinuity means the integral is improper even if both endpoints are finite; ignoring it leads to an incorrect result.
  - Correct: Always check for points where the integrand is undefined before starting integration.
- **Wrong:** Mixing up surface area and volume of revolution formulas, forgetting the extra $y$ or $x$ term in surface area.
  - Why it fails: This is one of the most common exam mistakes, and loses all marks for the question.
  - Correct: Memorize: Volume uses $\pi y^2$, surface area uses $2\pi y$ multiplied by the square root term.
- **Wrong:** Taking the square root of a squared term and keeping a negative sign over the integration interval.
  - Why it fails: Square roots produce non-negative results, so a negative root gives an incorrect arc length/surface area.
  - Correct: Always confirm that the simplified expression under the square root is non-negative, and take the positive root.
- **Wrong:** Only deriving the reduction formula and forgetting to evaluate it for the required value of $n$.
  - Why it fails: Exam questions almost always ask for both the derivation and the final evaluation, so missing the second part loses easy marks.
  - Correct: Always double check the question requirement after deriving the reduction formula.
- **Wrong:** Memorizing the wrong formula for arc length, missing the $1 +$ inside the square root.
  - Why it fails: This formula is not given in the booklet, so a small mistake leads to zero marks.
  - Correct: Derive the formula from Pythagoras in your head during the exam to confirm: $(ds)^2 = (dx)^2 + (dy)^2$, so $ds = \sqrt{1 + (dy/dx)^2} dx$.

## Cheatsheet

| Concept | Formula for $y=f(x)$, $a \leq x \leq b$ |
| --- | --- |
| Improper integral (infinite upper bound) | $\int_a^\infty f(x) dx = \lim_{b \to \infty} \int_a^b f(x) dx$ |
| Improper integral (discontinuity at $x=b$) | $\int_a^b f(x) dx = \lim_{c \to b^-} \int_a^c f(x) dx$ |
| Arc length | $s = \int_a^b \sqrt{1 + (dy/dx)^2} dx$ |
| Surface area (rotation around $x$-axis) | $S = 2\pi \int_a^b y \sqrt{1 + (dy/dx)^2} dx$ |
| Surface area (rotation around $y$-axis) | $S = 2\pi \int_a^b x \sqrt{1 + (dy/dx)^2} dx$ |
| Reduction formula | Recurrence relation for $I_n$, derived via integration by parts |

## What's next

This sub-topic builds on core integration techniques from AS and A-Level Mathematics, forming a solid foundation for more advanced calculus topics in CIE A-Level Further Mathematics, including further differential equations and multivariable calculus. The skills you learn here, especially evaluating improper integrals and working with reduction formulas, are also widely used in applied topics like mechanics, statistics, and theoretical physics, where integrating over infinite intervals or solving recursive integrals is common. Mastering the geometric applications of integration for arc length and surface area will also help you when solving applied problems involving curves of constant or varying length. Below are related topics to study next.

- [Complex Numbers](https://www.owlsprep.com/study/cie-9231-u2-complex-numbers/)
- [Differential Equations](https://www.owlsprep.com/study/cie-9231-u2-differential-equations/)

---

From [OwlsPrep](https://www.owlsprep.com) — free study guides for A-Level, IB, AP and IGCSE, written against the official syllabus. Canonical page: https://www.owlsprep.com/study/cie-9231-u2-further-integration-and-applications/
