What is the length of a sine wave from $0$ to $2\pi$?

What is the length of a sine wave from $0$ to $2\pi$? Physically I would plot $$y=\sin(x),\quad 0\le x\le {2\pi}$$ and measure line length.

I think part of the answer is to integrate this: $$ \int_0^{2\pi} \sqrt{ 1 + (\sin(x))^2} \ \rm{dx} $$

Any ideas?


I'm nowhere near a computer with elliptic integrals handy, so I'll give the explicit evaluation of

$$\int_0^{2 \pi} \sqrt{1+\cos^2 x}\,\mathrm dx$$

Note that an entire sine wave can be cut up into four congruent arcs; we can thus consider instead the integral

$$4\int_0^{\pi/2} \sqrt{1+\cos^2 x}\,\mathrm dx$$

(alternatively, one can split the integral into four "chunks" and find that those four chunks can be made identical; I'll leave that manipulation to somebody else.)

Now, after some Pythagorean manipulation:

$$4\int_0^{\pi/2} \sqrt{1+\cos^2 x}\,\mathrm dx=4\int_0^{\pi/2} \sqrt{2-\sin^2 x}\,\mathrm dx$$

and then a bit of algebraic massage:

$$4\sqrt{2}\int_0^{\pi/2} \sqrt{1-\frac12\sin^2 x}\,\mathrm dx$$

we then recognize the complete elliptic integral of the second kind $E(m)$

$$E(m):=\int_0^{\pi/2}\sqrt{1-m\sin^2u}\mathrm du$$

(where $m$ is a parameter):

$$4\sqrt{2}E\left(\frac12\right)$$

As Robert notes in a comment, different computing environments have different argument conventions for elliptic integrals; Maple for instance uses the modulus $k$ (thus, $E(k)$) instead of the parameter $m$ as input (as used by Mathematica and MATLAB), but these conventions are easy to translate to and from: $m=k^2$. So, using the modulus, the answer is then $4\sqrt{2}E\left(\frac1{\sqrt 2}\right)$.


Now to address the noted equivalence for negative parameter and a parameter in the interval $(0,1)$ by Henry, there is what's called the "imaginary modulus transformations"; the DLMF link gives the transformation for the incomplete case, but I'll explicitly do the complete case here for reference since it's not too gnarly to do (all you have to remember are the symmetries of the trigonometric functions):

Letting $E(-1)=\int_0^{\pi/2}\sqrt{1+\sin^2 u}\,\mathrm du$, we then go this way:

$$\int_0^{\pi/2}\sqrt{1+\sin^2 u}\,\mathrm du=\int_{-\pi/2}^0\sqrt{1+\sin^2 u}\,\mathrm du$$

$$=\int_0^{\pi/2}\sqrt{1+\sin^2\left(u-\frac{\pi}{2}\right)}\,\mathrm du=\int_0^{\pi/2} \sqrt{1+\cos^2 u}\,\mathrm du$$

from which I've shown what you're supposed to do earlier.


Computationally, the complete elliptic integral of the second kind isn't too difficult to evaluate, thanks to the arithmetic-geometric mean. Usually, this method is used for computing the complete elliptic integral of the first kind, but the iteration is easily hijacked to compute the integral of the second kind as well.

Here's some C(-ish) code for computing $E(m)$:

#include <math.h>

double ellipec(double m)
{
    double f, pi2, s, v, w;

    if (m == 1.0)
        return 1.0;

    pi2 = 2.0 * atan(1.0);

    v = 0.5 * (1.0 + sqrt(1 - m));
    w = 0.25 * m / v;
    s = v * v;
    f = 1.0;

    do {
        v = 0.5 * (v + sqrt((v - w) * (v + w)));
        w = 0.25 * w * w / v;
        f *= 2.0;
        s -= f * w * w;
    } while (abs(v) + abs(w) != abs(v))

    return pi2 * s / v;
}

(make sure either your compiler does not (aggressively) optimize out the while (abs(v) + abs(w) != abs(v)) portion, or you'll have to use a termination criterion of the form abs(w) < tinynumber.)


Finally,

"I am also puzzled: a circle's circumference is $2\pi r$ and yet an ellipse's is an infinite series - why?"

My belief is that we are actually very lucky that the arclength function for a circle is remarkably simple compared to most other curves, the symmetry of the circle (and thus also the symmetry properties of the trigonometric functions that can parametrize it) being one factor. The reduction in symmetry in going from a circle to an ellipse means that you will have to compensate for those "perturbations", and that's where the series comes in...


The arc length of the graph of a function $f$ between $x=a$ and $x=b$ is given by $ \int_{a}^{b} \sqrt { 1 + [f'(x)]^2 }\, dx$. So, if you're considering $f(x)=\sin(x)$ then the correct integral is $\int_{0}^{2\pi} \sqrt { 1 + [\cos(x)]^2 }\, dx$. Unfortunately, this integral cannot be expressed in elementary terms. This is quite common for arc-length integrals. However, the definite integral might be expressible in elementary terms; Wolfram Alpha says it cannot.


It is given by $$I = \int_{0}^{2 \pi} \sqrt{ 1 + (\cos{x})^{2}} \ \rm{dx}$$ and I think this is an elliptic integral of the second kind. (That's what Wolfram says.)