Using polar coordinates to find the area of an ellipse

15.5k Views Asked by At

Considering an ellipse with the $x$ radius equal to $a$ and the $y$ radius equal to b$:$

I figured that some kind of parameterization might be:

$x=a\cos\theta$

$y=b\sin\theta$

and then polar $r^2$ is just $x^2 + y^2$

But then I tried to come up with some unit of infinitesimal area using triangles $\left(\dfrac{d\theta r^2}{2}\right)$ which does not give the correct answer. I read somewhere that my polar coordinates are wrong and that they are actually

$x=ar\cos\theta$

$y=br\sin\theta$

But this does not make sense to me as an engineer because that seems like it would have the dimension of area equal to the dimension of a distance. The integral also takes $r$ from $0$ to $1$ which I thought was eliminated because the equation for $r$ should be in terms of $\theta$ and the constants $a$ and $b.$

I would like some explanation of what I am doing wrong that would make some "physical" sense (or why physical intuition might fail for this problem)

6

There are 6 best solutions below

2
On

Your parametrization only covers the edge of the ellipse. This is not enough if you try to find the area, which is the full interior. Hence the second form with $r$ (which is integrated from 0 to 1) is correct to find the area. Yours would be ok, if you try to only find the circumference.

2
On

Hint:

Use one of the polar equations for the ellipse: if the pole is at the centre of the ellipse, it is $$r^2=\frac{b^2}{1-e^2\cos^2\theta}, \quad\text{where }e =\sqrt{a^2-b^2}\enspace\text{is the eccentricity of the ellipse}$$ and integrate $$\int_0^\pi r^2\,\mathrm d\mkern1mu\theta.$$

0
On

Notice, since the ellipse: $x=a\cos\theta$ & $y=b\sin\theta$ is equally divided into four symmetrical regions hence, the area of ellipse in Cartesian coordinates is given as $$=4\int_0^ay\ dx$$ Now changing in Polar-coordinates by setting $y=b\sin\theta$ & $x=a\cos\theta$ or $dx=-a\sin\theta\ d\theta$, one should get area of ellipse $$=4\int_{\pi/2}^0(b\sin\theta)(-a\sin\theta\ d\theta)$$ $$=4ab\int_0^{\pi/2}\sin^2\theta\ d\theta$$ $$=4ab\int_0^{\pi/2}\frac{1-\cos2\theta}{2}\ d\theta$$ $$=4ab\left(\frac{1}{2}\int_0^{\pi/2}\ d\theta-\frac 12\int_0^{\pi/2}\cos2\theta\ d\theta\right)$$

$$=2ab\int_0^{\pi/2}\ d\theta$$$$=2ab\frac{\pi}{2}=\color{red}{\pi ab}$$

1
On

You were on the right track, but didn't pick the right infinitesimal triangle. It looks like you used a right triangle built on the inside of the ellipse, but as you discovered, that doesn't approximate the area swept out by the radius vector well enough. Take instead a point along the curve and another a small distance away along it. The area of the resulting triangle is, in Cartesian coordinates, $\frac12(x\,dy-y\,dx)$. Plugging in your parametrization of the ellipse gives $dA=\frac12ab\,d\theta$, which will clearly give the correct result when integrated.

More generally, when approximating integrals with Riemann sums, you need to take care that they converge to the right thing. This is the same type of error that occurs in the fallacious “stairstep” constructions which “prove” that $\pi=4$ or that $\sqrt2=2$. In this case, I expect that if you also computed the sum of the areas of the right triangles built on the outside of the ellipse that the difference between the inner and outer sums would not vanish in the limit.

2
On

enter image description hereMy answer is linked here.

enter image description here

My name is Marco [email protected].

2
On

If we follow your reasoning, we get $$\frac12\int_0^{2\pi}(a^2\cos^2\theta+b^2\sin^2\theta)d\theta=\frac12\int_0^{2\pi}\frac{a^2(1+\cos2\theta)+b^2(1-\cos2\theta)}2d\theta \\=\frac\pi2(a^2+b^2),$$

which is wrong (except for a circle).

The mistake is to believe that $d\theta$ represents the angle of the infinitesimal triangles. This is wrong because $\theta$ is not the angle swept by a point on the ellipse. Instead we have

$$\tan\phi=\dfrac {b\sin\theta}{a\cos\theta}=\frac ba \tan\theta,$$ and

$$d\phi=\dfrac ba\sec^2\theta\,d\theta.$$

Now, $$\frac12\int_0^{2\pi}r^2\,d\phi=\frac b{2a}\int_0^{2\pi}(a^2\cos^2\theta+b^2\sin^2\theta)\sec^2\theta\,d\theta=\frac {ab}2\int_0^{2\pi}d\theta+\frac {b^3}{2a}\int_0^{2\pi}\tan^2\theta\,d\theta\\=\pi ab.$$