Unit 3: Geometrical Applications of Integration
Table of Contents
Plane Curves (Cartesian & Parametric)
This unit applies integration to curves defined in two primary ways:
- Cartesian Equation: The relationship between x and y is given directly, usually as
y = f(x)orx = g(y).
Example: The parabolay = x². - Parametric Equation: Both x and y are defined as separate functions of a third variable (a parameter), usually
torθ.x = f(t),y = g(t)
Example: The circlex = a cos(t),y = a sin(t).
For parametric equations, we often need the derivative dy/dx, which is found using the chain rule:
dy/dx = (dy/dt) / (dx/dt)
Rectification of Plane Curves (Arc Length)
Rectification is the process of finding the length of a curve, also known as its **arc length**.
Arc Length Element (ds)
We start by finding the length of an infinitesimally small segment of the curve, ds. By the Pythagorean theorem:
ds² = dx² + dy²
We can factor this in different ways:
ds = sqrt(dx² + dy²)ds = sqrt(1 + (dy/dx)²) dxds = sqrt((dx/dy)² + 1) dyds = sqrt((dx/dt)² + (dy/dt)²) dt(for parametric)
To find the total arc length L, we integrate this ds element over the desired interval.
Cartesian Formula
To find the arc length of y = f(x) from x = a to x = b:
L = ∫ [from a to b] sqrt(1 + (dy/dx)²) dx
To find the arc length of x = g(y) from y = c to y = d:
L = ∫ [from c to d] sqrt(1 + (dx/dy)²) dy
Parametric Formula
To find the arc length of x = f(t), y = g(t) from t = t₁ to t = t₂:
L = ∫ [from t₁ to t₂] sqrt((dx/dt)² + (dy/dt)²) dt
Example: Find the circumference of a circle x = a cos(t), y = a sin(t) from t = 0 to t = 2π.
- Find derivatives:
dx/dt = -a sin(t)dy/dt = a cos(t) - Square and add:
(dx/dt)² + (dy/dt)² = (-a sin(t))² + (a cos(t))²= a²sin²(t) + a²cos²(t) = a²(sin²(t) + cos²(t)) = a² - Set up the integral:
L = ∫ [from 0 to 2π] sqrt(a²) dt = ∫ [from 0 to 2π] a dt - Evaluate:
L = a [t] from 0 to 2π = a(2π - 0) = 2πa.
Areas of Surfaces of Revolution
This is the area of the 3D surface created when a plane curve is rotated around an axis. The general formula involves integrating the circumference of a small "strip" (2π * radius) along the arc length (ds).
Area = ∫ 2π · (radius) · ds
Revolution about the x-axis
When rotating around the x-axis, the radius of rotation for any point (x, y) is its y-coordinate.
- Cartesian:
Aₓ = ∫ [from a to b] 2πy ds = ∫ [from a to b] 2πy · sqrt(1 + (dy/dx)²) dx - Parametric:
Aₓ = ∫ [from t₁ to t₂] 2πy(t) · sqrt((dx/dt)² + (dy/dt)²) dt
Revolution about the y-axis
When rotating around the y-axis, the radius of rotation for any point (x, y) is its x-coordinate.
- Cartesian:
Aᵧ = ∫ 2πx ds = ∫ [from a to b] 2πx · sqrt(1 + (dy/dx)²) dx - Parametric:
Aᵧ = ∫ [from t₁ to t₂] 2πx(t) · sqrt((dx/dt)² + (dy/dt)²) dt
Volumes of Solids of Revolution
This is the volume of the 3D solid created when a 2D area (under a curve) is rotated around an axis.
Disk Method (about x-axis)
We find the volume by summing an infinite number of thin "disks" (cylinders) of radius y and thickness dx. The volume of each disk is dV = (Area of base) · (height) = (πy²) · dx.
Vₓ = ∫ [from a to b] πy² dx = ∫ [from a to b] π[f(x)]² dx
Parametric: Vₓ = ∫ [from t₁ to t₂] π[y(t)]² · (dx/dt) dt
Disk Method (about y-axis)
Similarly, when rotating around the y-axis, the disks have radius x and thickness dy. The volume of each disk is dV = (πx²) · dy.
Vᵧ = ∫ [from c to d] πx² dy = ∫ [from c to d] π[g(y)]² dy
Parametric: Vᵧ = ∫ [from t₁ to t₂] π[x(t)]² · (dy/dt) dt
Example: Find the volume of a sphere of radius r.
- We can rotate the semi-circle
y = sqrt(r² - x²)around the x-axis, fromx = -rtox = r. - Use the Disk Method:
Vₓ = ∫ [from -r to r] πy² dx - Substitute
y² = r² - x²:V = ∫ [from -r to r] π(r² - x²) dx - Since
(r² - x²)is an even function, we can use Property P-7:V = 2π ∫ [from 0 to r] (r² - x²) dx - Integrate:
V = 2π [r²x - x³/3] from 0 to rV = 2π [(r³ - r³/3) - (0 - 0)]V = 2π [2r³/3] = (4/3)πr³.
Unit 3: Exam Quick Tips
Do NOT confuse the formulas! This is the most common mistake.
| Application | Core Formula (about x-axis) | Key Element |
|---|---|---|
| Arc Length (L) | ∫ ds | ds = sqrt(1 + (y')²) dx |
| Surface Area (A) | ∫ 2πy ds | 2πy · sqrt(1 + (y')²) dx |
| Volume (V) | ∫ πy² dx | πy² · dx |
- Arc Length & Surface Area both use the arc length element
ds. - Volume uses the simple
dx(ordy). - Parametric is easy: Always find
ds/dt = sqrt((dx/dt)² + (dy/dt)²)first. Then the formulas areL = ∫ (ds/dt) dt,Aₓ = ∫ 2πy(t) (ds/dt) dt, etc.