An interesting example is calculating the perimeter of an ellipse. It’s an impotant calculation historically, since it can determine the length of elliptical orbits (among other applications). Assume that the ellipse is centred at the origin and positioned so its largest semi-axis is along the \(x\) axis. Let \(a\) be the semi-major axis and \(b\) be the semi-minor. Then \(\gamma(t) = (a
\cos t, b \sin t)\) for \(t \in [0,2\pi]\) describes the ellipse as a parametric curve.
Before calculating, it is convenient to also define a new quantity: the eccentricity of the ellipse. This is defined as \(e = \frac{\sqrt{a^2-b^2}}{a}\) (assuming that \(a\geq b\)) and it always a number in \([0,1)\text{.}\) Eccentricity is a nice way of measuring how close an ellipse is to a circle. If \(e = 0\) then \(a=b\) and the ellipse is exactly a circle. As \(e \rightarrow 1\) the ellipse becomes less circular and more elongated. With the eccentricity defined, I’ll try to calculate the arclength of the parametric curve the circumference of the ellipse. (This \(e\) is not to be confused with the notation for the exponential function. Sorry to re-use a letter that already has an important purpose, but the use of \(e\) for eccentricity here is conventional and, in this integral at least, I can avoid any exponential functions that would confuse the issue.)
\begin{align*}
L \amp = \int_0^{2\pi} \sqrt{ (x^\prime)^2 +
(y^\prime)^2} dt\\
\amp = \int_0^{2\pi} \sqrt{ a^2 \sin^2 t + b^2 \cos^2
t} dt\\
\amp = \int_0^{2\pi} \sqrt{a^2 \sin^2 t + (b^2 - a^2)
\cos^2 t + a^2 \cos^2 t} dt\\
\amp = \int_0^{2\pi} a\sqrt{1 + \frac{b^2-a^2}{a^2}
\cos^2 t} dt\\
\amp = a \int_0^{2\pi} \sqrt{1 - \frac{a^2 - b^2}{a^2}
\cos^2 t} dt
\end{align*}
The expression before the sine term here is exactly the square of eccentricity, so I’ll replace it with \(e\text{.}\)
\begin{equation*}
= a \int_0^{2\pi} \sqrt{ 1 - e^2 \cos^2 t}dt
\end{equation*}
If \(e=0\text{,}\) then the cosine disappears and I have an easy integral. In this form, however, the integration is very difficult. This is so difficult, in fact, that it has a special name: this is an elliptic integral of the second kind. These integrals have been studied for three hundred years, and with good cause, since they have no elementary anti-derivatives. Even without an elementary anti-derivative, however, the behaviour can be investigated. This has led to many insights in geometry; elliptic curves (a type of algebraic plane curve) come from the long process of trying to understand this integral.