This unit applies integration to curves defined in two primary ways:
y = f(x) or x = g(y).
y = x².
t or θ.
x = f(t), y = g(t)
x = 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 is the process of finding the length of a curve, also known as its **arc length**.
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.
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
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
x = a cos(t), y = a sin(t) from t = 0 to t = 2π.dx/dt = -a sin(t)
dy/dt = a cos(t)
(dx/dt)² + (dy/dt)² = (-a sin(t))² + (a cos(t))²
= a²sin²(t) + a²cos²(t) = a²(sin²(t) + cos²(t)) = a²
L = ∫ [from 0 to 2π] sqrt(a²) dt = ∫ [from 0 to 2π] a dt
L = a [t] from 0 to 2π = a(2π - 0) = 2πa.
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
When rotating around the x-axis, the radius of rotation for any point (x, y) is its y-coordinate.
Aₓ = ∫ [from a to b] 2πy ds = ∫ [from a to b] 2πy · sqrt(1 + (dy/dx)²) dxAₓ = ∫ [from t₁ to t₂] 2πy(t) · sqrt((dx/dt)² + (dy/dt)²) dtWhen rotating around the y-axis, the radius of rotation for any point (x, y) is its x-coordinate.
Aᵧ = ∫ 2πx ds = ∫ [from a to b] 2πx · sqrt(1 + (dy/dx)²) dxAᵧ = ∫ [from t₁ to t₂] 2πx(t) · sqrt((dx/dt)² + (dy/dt)²) dtThis is the volume of the 3D solid created when a 2D area (under a curve) is rotated around an 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
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
r.y = sqrt(r² - x²) around the x-axis, from x = -r to x = r.Vₓ = ∫ [from -r to r] πy² dxy² = r² - x²:
V = ∫ [from -r to r] π(r² - x²) dx
(r² - x²) is an even function, we can use Property P-7:
V = 2π ∫ [from 0 to r] (r² - x²) dx
V = 2π [r²x - x³/3] from 0 to r
V = 2π [(r³ - r³/3) - (0 - 0)]
V = 2π [2r³/3] = (4/3)πr³.
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 |
ds.dx (or dy).ds/dt = sqrt((dx/dt)² + (dy/dt)²) first. Then the formulas are L = ∫ (ds/dt) dt, Aₓ = ∫ 2πy(t) (ds/dt) dt, etc.