Audited 25 May 2026·Last updated 27 Jul 2026·5 citations·Tier 1·0 uses

Ellipse Area Calculator

Calculate ellipse area with A = πab using semi-major and semi-minor axes. Supports metric and imperial units with exact and approximate outputs.

Ellipse Area Calculator

Half the longest diameter
m
Half the shortest diameter
m
Unit
Area
157.0796
Exact area of the ellipse
Circumference (Approx)
48.4421m

Background.

An ellipse is the set of points in a plane such that the sum of the distances to two fixed points—the foci—is constant. This generalization of the circle appears in physics as planetary orbits, in engineering as cam profiles and whispering-gallery designs, and in statistics as confidence ellipses. Unlike a circle, which is defined by a single radius, an ellipse requires two parameters: the semi-major axis a and the semi-minor axis b. The calculator computes the exact area from these two axes and provides an accurate approximation of the circumference, supporting both metric and imperial units.

The area formula A = πab is remarkably compact given the geometric complexity of the ellipse. Johannes Kepler discovered in 1609 that planetary orbits are ellipses with the Sun at one focus, and the area swept by the radius vector in equal times is constant. This second law implies that the total orbital area is πab, where a is the semi-major axis and b is the semi-minor axis. For Earth, a ≈ 149.6 million km and the eccentricity e ≈ 0.0167, giving b = a√(1−e²) ≈ 149.59 million km. The orbital area is therefore π × 149.6 × 149.59 ≈ 70,280 million km², a figure used in estimating total insolation and in validating orbital-mechanics simulations.

In structural engineering, elliptical arches distribute load differently than circular arches because the curvature varies along the perimeter. The area of the opening determines how much masonry is removed and therefore how much reinforcing steel is required. An elliptical skylight with semi-major axis 1.2 m and semi-minor axis 0.8 m has an area of π × 1.2 × 0.8 = 3.016… m², which determines the amount of glazing and the heat-loss coefficient. In medicine, cross-sections of muscles and organs are often modeled as ellipses; the area of an elliptical ventricle cross-section is used in echocardiography to estimate stroke volume and ejection fraction.

The circumference of an ellipse has no closed-form expression in elementary functions; it requires an elliptic integral of the second kind. Srinivasa Ramanujan published several remarkable approximations in 1914, including C ≈ π[3(a+b) − √((3a+b)(a+3b))], which is accurate to within 0.4% for all eccentricities. The calculator includes this approximation as a secondary output because many users need both area and perimeter for fencing, edging, or framing applications. For high-precision work, the exact elliptic integral can be evaluated numerically, but Ramanujan's formula is sufficient for construction, manufacturing, and educational purposes.

Unlike polygons, ellipses have continuously varying curvature, which makes them mechanically favorable for certain seals and gaskets. The area determines the compressive force for a given pressure, while the circumference determines the length of the sealing element. In optics, elliptical mirrors focus light from one focal point to the other; the reflective area determines light-gathering power. The calculator's dual output therefore serves both geometric and physical design needs.

The historical development of ellipse area spans Greek antiquity through the scientific revolution. Apollonius of Perga, in his Conics (circa 200 BCE), proved that the area of an ellipse is proportional to the product of its axes, though he lacked the modern constant π. The full formula A = πab was established by European mathematicians in the seventeenth century using the method of indivisibles, a precursor to integral calculus. Today, the formula appears in every calculus textbook as a standard change-of-variables example: applying the affine transformation x = aX, y = bY to the unit circle yields the ellipse and scales the area by the determinant ab. This linear-algebraic perspective unifies the ellipse area formula with the general theory of area scaling under linear maps.

What is ellipse area calculator?

An ellipse is a closed conic section obtained by intersecting a right circular cone with a plane at an angle to the base that is greater than the angle between the base and the side of the cone. Algebraically, the standard equation is x²/a² + y²/b² = 1, where a is the semi-major axis and b is the semi-minor axis. By convention, a ≥ b > 0. The foci lie on the major axis at distance c = √(a² − b²) from the center, and the eccentricity e = c/a quantifies the deviation from circularity. When a = b, the ellipse reduces to a circle of radius r = a = b. The area of an ellipse is the two-dimensional measure of the region bounded by the curve. It is expressed in square units—m², cm², in², or ft²—corresponding to the linear unit of the axes. The semi-major axis a is half the longest diameter (the major axis), and the semi-minor axis b is half the shortest diameter (the minor axis). These must be measured in the same unit; mixing meters and centimeters produces an area in mixed units that is not physically meaningful without conversion. The circumference, or perimeter, is the one-dimensional length of the boundary. Unlike the area, it cannot be expressed using a finite combination of elementary functions; it is given exactly by the complete elliptic integral of the second kind. The calculator provides Ramanujan's approximation for applications where a simple formula is preferred over numerical integration.

How to use this calculator.

  1. Select the linear unit (mm, cm, m, in, or ft) that matches your axis measurements.
  2. Enter the semi-major axis, which is half the longest diameter of the ellipse.
  3. Enter the semi-minor axis, which is half the shortest diameter.
  4. Ensure both values are positive and in the same unit.
  5. Click Calculate to obtain the exact area and the approximate circumference.
  6. Use the area for material-cost estimates, tiling, or glazing calculations.
  7. Use the circumference for fencing, edging, or perimeter-trimming estimates.

The formula.

A = π × a × b

The area of an ellipse follows from a straightforward scaling argument applied to the unit circle. The unit circle defined by X² + Y² = 1 has area π. Apply the linear transformation x = aX and y = bY, which stretches the plane by factor a along the x-axis and factor b along the y-axis. The image of the unit circle under this map is the ellipse x²/a² + y²/b² = 1. A fundamental theorem of linear algebra states that a linear transformation scales all areas by the absolute value of its determinant. The Jacobian matrix of the transformation is diag(a, b), whose determinant is ab. Therefore, the area of the ellipse is π × ab. This derivation is elegant because it requires no integration beyond the known area of the circle. In calculus courses, the same result is obtained by integrating the upper half of the ellipse y = b√(1 − x²/a²) from x = −a to x = +a: A = ∫₋ₐᵃ 2b√(1 − x²/a²) dx = 2b × (aπ/2) = πab. The substitution x = a sin θ reduces the integral to the standard form ∫ cos² θ dθ, confirming the linear-algebraic result. Ramanujan's first approximation for the circumference is C ≈ π[3(a+b) − √((3a+b)(a+3b))]. The expression inside the square root expands to 3a² + 10ab + 3b², and the entire formula is homogeneous of degree one, meaning that doubling both axes doubles the circumference, as required. The error is bounded by approximately 0.4% for all values of a and b. A simpler but less accurate approximation is C ≈ π(a+b)(1 + 3h/(10+√(4−3h))), where h = (a−b)²/(a+b)²; the calculator uses Ramanujan's first formula for its balance of simplicity and accuracy. Dimensional analysis validates both formulas. The area formula contains a × b, each with units of length, yielding [L²]. The circumference formula contains a + b inside the brackets, also [L], multiplied by the dimensionless π. The semi-axes must be entered in the same unit; otherwise, the product ab mixes units and the computed area is dimensionally inconsistent.

A worked example.

Example

An architect designs a large elliptical conference table for a corporate boardroom with custom edge detailing and a semi-major axis of 1.8 meters and a semi-minor axis of 1.2 meters. The surface area is A = πab = π × 1.8 × 1.2 = π × 2.16 = 6.7858… m². Rounding to two decimal places, the table top covers approximately 6.79 square meters. If the material is marble costing $320 per square meter, the raw stone cost is 6.79 × 320 = $2,172.80 before cutting waste. The approximate circumference is C ≈ π[3(1.8+1.2) − √((3×1.8+1.2)(1.8+3×1.2))] = π[3×3.0 − √((5.4+1.2)(1.8+3.6))] = π[9.0 − √(6.6 × 5.4)] = π[9.0 − √35.64] = π[9.0 − 5.9699] = π × 3.0301 = 9.5193… m. A brass edge banding supplier would need approximately 9.52 meters of trim, plus allowance for miter joints. The example shows how area drives material cost while circumference drives linear trim length.

semi Minor1.2
unitm
semi Major1.8

Frequently asked questions.

Why does the ellipse area formula use πab instead of πr²?
The circle formula πr² is a special case of πab. When a = b = r, the ellipse becomes a circle and πab reduces to πr². For a non-circular ellipse, the product ab replaces the single squared radius because the shape is stretched by different factors along the major and minor axes. The linear transformation argument proves that area scales by the product of the stretch factors, giving ab as the determinant of the scaling matrix. This is not an approximation; it is an exact consequence of affine geometry. Using πr² with an average radius would introduce systematic errors. For example, an ellipse with a = 2 and b = 1 has area 2π ≈ 6.283, while the average radius 1.5 would give π × 2.25 ≈ 7.069, an error of over 12%.
What is the difference between the major axis and the semi-major axis?
The major axis is the longest diameter of the ellipse, passing through both foci and both vertices. Its length is 2a. The semi-major axis is half of this distance, extending from the center to one vertex along the major axis. Similarly, the minor axis is the shortest diameter, with length 2b, and the semi-minor axis is half of that. The calculator requires the semi-axes because the standard equations and formulas are written in terms of a and b, not 2a and 2b. Entering the full diameter instead of the semi-diameter would double the computed area and circumference, producing results that are too large by a factor of four for area and approximately two for circumference. Users should measure from the center to the edge along each axis.
Why is there no exact formula for the circumference?
The circumference of an ellipse is given by the complete elliptic integral of the second kind, C = 4aE(e), where e is the eccentricity and E is the elliptic integral function. This integral cannot be expressed in terms of elementary functions—polynomials, roots, exponentials, logarithms, or trigonometric functions—according to Liouville's theory of integration in finite terms. Joseph Liouville proved in the nineteenth century that certain integrals, including this one, have no closed-form antiderivative in elementary terms. Ramanujan's approximations and series expansions provide arbitrarily accurate numerical values, but the exact value always requires special functions or numerical quadrature. This is fundamentally different from the circle, whose circumference 2πr is an elementary expression.
How accurate is Ramanujan's circumference approximation?
Ramanujan's first approximation, C ≈ π[3(a+b) − √((3a+b)(a+3b))], has a maximum relative error of approximately 0.4% for all possible axis ratios. For nearly circular ellipses where a ≈ b, the error drops to less than 0.04%. For highly elongated ellipses where a >> b, the error approaches the 0.4% bound from below. This accuracy is sufficient for construction, manufacturing, and most scientific applications. Surveyors laying out elliptical flower beds or engineers designing elliptical gears can rely on this formula without resorting to numerical integration. The calculator displays this approximation with a label indicating that it is not exact, preventing confusion in contexts where the elliptic integral is required.
Can the axes be measured in different units?
No. The semi-major axis and semi-minor axis must be entered in the same linear unit. The calculator applies the same unit suffix to both inputs and computes the area in the corresponding square unit. If one axis is in meters and the other in centimeters, the user must convert one to match the other before entering values. Dimensional homogeneity is a prerequisite for the area formula; the product ab has units of length squared only when a and b share the same length unit. Mixing units without conversion would produce a numerically meaningless result. The unit selector applies globally to both axes and to the outputs.
What is eccentricity and how does it affect the shape?
The eccentricity e is defined as √(1 − b²/a²), where a is the semi-major axis and b is the semi-minor axis. It ranges from 0 to 1. When e = 0, a = b and the ellipse is a circle. As e approaches 1, the ellipse becomes increasingly elongated, approaching a line segment of length 2a. The eccentricity determines the spacing of the foci: each focus is at distance c = ae from the center. Planetary orbits have low eccentricity—Earth's is about 0.0167—while comets may have eccentricities near 0.9. The area depends only on a and b, not directly on e, but the circumference is strongly influenced by eccentricity because elongated ellipses have longer perimeters relative to their area.
How are ellipses used in orbital mechanics?
Kepler's first law states that planets move in elliptical orbits with the Sun at one focus. The semi-major axis determines the orbital period through Kepler's third law: T² ∝ a³. The area of the orbit, πab, is used to compute the areal velocity, which is constant by Kepler's second law. Astrodynamicists use these relationships to predict positions, plan spacecraft trajectories, and estimate fuel requirements for orbital transfers. The ellipse area formula is therefore not merely a geometric curiosity; it is a foundational equation in celestial mechanics. NASA's Jet Propulsion Laboratory uses precise values of a and b, derived from radar ranging and stellar occultation data, to navigate interplanetary missions.
What is the difference between an ellipse and an oval?
In mathematics, an ellipse is a specific curve with a precise algebraic definition: the locus of points whose distances to two foci sum to a constant. An oval is an informal term for any elongated closed curve that resembles an ellipse but does not necessarily satisfy the focal-sum property. Some ovals—such as the Cassini oval—have different geometric definitions and different area formulas. In everyday language, "oval" and "ellipse" are often used interchangeably, but the calculator applies only to true ellipses. Users working with stadium shapes, racetrack ovals, or egg-shaped curves should use specialized calculators because those shapes have perimeters and areas that differ from the ellipse formulas.
Can the calculator handle degenerate ellipses?
A degenerate ellipse occurs when one axis shrinks to zero, reducing the figure to a line segment. The calculator validates that both the semi-major and semi-minor axes are strictly positive. If b = 0, the area is zero and the circumference is 4a, which is the length of the line segment traversed twice. This case is physically meaningless for most calculator use cases, so the validation rejects zero axes. Similarly, negative axes are rejected because lengths are non-negative. The minimum valid inputs are therefore small positive numbers determined by the step size of the input field.
Why is the area of an ellipse important in statistics?
In multivariate statistics, confidence regions for two-dimensional data are often plotted as ellipses. The area of the confidence ellipse quantifies the joint uncertainty in the two variables. A smaller area indicates more precise estimates. In principal component analysis, the eigenvalues of the covariance matrix correspond to the squares of the semi-axes of the confidence ellipse, and the orientation is given by the eigenvectors. The area is proportional to the product of the eigenvalues, which is the determinant of the covariance matrix. This determinant measures the generalized variance of the dataset. Biologists plotting morphometric data, economists modeling correlated returns, and engineers analyzing tolerance stacks all use ellipse area as a compact summary of bivariate dispersion.

References& sources.

  1. [1]NIST SP 811 (2008). "Guide for the Use of the International System of Units (SI)." NIST. https://www.nist.gov/pml/special-publication-811
  2. [2]BIPM (2019). The International System of Units (SI Brochure), 9th ed. https://www.bipm.org/en/publications/si-brochure
  3. [3]Stewart, J. (2015). Calculus: Early Transcendentals, 8th ed. Cengage. Section 10.5: Conic Sections.
  4. [4]Ramanujan, S. (1914). "Modular Equations and Approximations to π." Quarterly Journal of Mathematics 45:350-372.
  5. [5]Kepler, J. (1609). Astronomia Nova. Trans. Donahue, W.H. (2015). Cambridge University Press.

In this category

Embed

Quanta Pro

Paid features are coming later.

  • All 313 calculators remain free
  • No billing is enabled
Coming soon