freeCodeCamp/guide/english/mathematics/area-of-a-ellipse/index.md

33 lines
1.1 KiB
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Area of an Ellipse
---
## Area of an Ellipse
An ellipse is a 2D shape defined by a continuous curve and two focus points. The sum of the two distances from the foci to any point on the curve is constant.
#### Terminology
* Foci or focus points - these points are equidistant from the center of the ellipse
* Major axis - the line drawn cutting the ellipse in half and running through both foci
* Minor axis - the line drawn cutting the ellipse in half and running between both foci
<img src = "https://jwolfgang.info/wp-content/uploads/2017/10/area-of-ellipse2.png">
##### Formula
Area of ellipse = <span class="texhtml"><span class="texhtml">(π)</span>(1/2)(major axis)(1/2)(minor axis)</span>
##### Example
Given major axis = 2 in, minor axis = 7 in find area of the ellipse.<br><br>
Area = 1/2 * 2 in * 1/2 * 7 in * π = 11 in<sup>2</sup>
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->
<br><br>
#### More Information:
* [Wikipedia](https://en.wikipedia.org/wiki/Ellipse)
* [Math Is Fun](https://www.mathsisfun.com/geometry/ellipse.html)