Evaluating $\int_a^b \frac12 r^2\ \mathrm d\theta$ to find the area of an ellipse

Solution 1:

There are already a lot of good answers here, so I'm adding this one primarily to dazzle people w/ my Mathematica diagram-creating skills.

As noted previously,

$x(t)=a \cos (t)$

$y(t)=b \sin (t)$

does parametrize an ellipse, but t is not the central angle. What is the relation between t and the central angle?:

cool, huh?

Since y is bSin[t] and x is aCos[t], we have:

$\tan (\theta )=\frac{b \sin (t)}{a \cos (t)}$

or

$\tan (\theta )=\frac{b \tan (t)}{a}$

Solving for t, we have:

$t(\theta )=\tan ^{-1}\left(\frac{a \tan (\theta )}{b}\right)$

We now reparametrize using theta:

$x(\theta )=a \cos (t(\theta ))$

$y(\theta )=b \sin (t(\theta ))$

which ultimately simplifies to:

$x(\theta)=\frac{a}{\sqrt{\frac{a^2 \tan ^2(\theta )}{b^2}+1}}$

$y(\theta)=\frac{a \tan (\theta )}{\sqrt{\frac{a^2 \tan ^2(\theta )}{b^2}+1}}$

Note that, under the new parametrization, $y(\theta)/x(\theta) = tan(\theta)$ as desired.

To compute area, we need $r^2$ which is $x^2+y^2$, or:

$r(\theta )^2 = (\frac{a}{\sqrt{\frac{a^2 \tan ^2(\theta )}{b^2}+1}})^2+ (\frac{a \tan (\theta )}{\sqrt{\frac{a^2 \tan ^2(\theta )}{b^2}+1}})^2$

(note that we could take the square root to get r, but we don't really need it)

The above ultimately simplifies to:

$r(\theta)^2 = \frac{1}{\frac{\cos ^2(\theta )}{a^2}+\frac{\sin ^2(\theta )}{b^2}}$

Now, we can integrate $r^2/2$ to find the area:

$A(\theta) = (\int_0^\theta \frac{1}{\frac{\cos ^2(x )}{a^2}+\frac{\sin ^2(x )}{b^2}} \, dx)/2$

which yields:

$A(\theta) = \frac{1}{2} a b \tan ^{-1}\left(\frac{a \tan (\theta )}{b}\right)$

good for $0\leq \theta <\frac{\pi }{2}$

Interestingly, it doesn't work for $\theta =\frac{\pi }{2}$ so we can't test the obvious case without using a limit:

$\lim_{\theta \to \frac{\pi }{2}} \, \frac{1}{2} a b \tan ^{-1}\left(\frac{a \tan (\theta )}{b}\right)$

which gives us $a*b*Pi/4$ as expected.

Solution 2:

Your question has been answered, so now we look at how to find the area, using your parametrization, which is a perfectly good one.

The area is the integral of $|y\,dx|$ (or alternately of $|x\,dy|$. over the appropriate interval.

We have $y=b\sin\theta$ and $dx=-a\sin\theta\,d\theta$. So the area is $$\int_0^{2\pi} |-ab\sin^2\theta|\,d\theta.$$ Using $\sin^2\theta=\frac{1-\cos 2\theta}{2}$, we find that the area is $$\int_0^{2\pi} ab\frac{1-\cos 2\theta}{2}\,d\theta.$$ This is indeed $\pi ab$.

Solution 3:

HINT:

Putting $x=r\cos\theta,y=r\sin\theta$

$$\frac {x^2}{a^2}+\frac{y^2}{b^2}=1,$$

$$r^2=\frac{a^2b^2}{b^2\cos^2\theta+a^2\sin^2\theta}=b^2\frac{\sec^2\theta}{\frac{b^2}{a^2}+\tan^2\theta}$$

Solution 4:

Here you go - this person even made your mistake, then someone else corrected it.

http://mathforum.org/library/drmath/view/53635.html

Solution 5:

This is another way to do it when one know the area of a circle: Consider the area of a circle with radius 1 in coordinates $(\xi, \eta)$ this is:

$$ \int d\xi d \eta = \pi $$

now if you define new coordinates in your ellipse equation $\xi = \frac{x}{a}, \quad \eta= \frac{y}{b}$ you obtain a circle of radius one: $\xi^2 + \eta^2 =1$

The area of the ellipse you want is $ \int dx dy = ab \int d\xi d\eta = \pi ab$.