Compute ellipse foci from center, axes, and orientation. Visualize the curve with plotted focal points. Export tables instantly and verify every intermediate value clearly.
| # | Center | a | b | Orientation | c = √(a² - b²) | Focus 1 | Focus 2 |
|---|---|---|---|---|---|---|---|
| 1 | (0, 0) | 5 | 3 | Horizontal | 4 | (-4, 0) | (4, 0) |
| 2 | (2, -1) | 6 | 4 | Horizontal | 4.472 | (-2.472, -1) | (6.472, -1) |
| 3 | (-3, 1) | 7 | 2 | Vertical | 6.708 | (-3, -5.708) | (-3, 7.708) |
| 4 | (4, 3) | 8 | 5 | Vertical | 6.245 | (4, -3.245) | (4, 9.245) |
Standard form: ((x - h)² / a²) + ((y - k)² / b²) = 1
Foci: (h ± c, k), where c = √(a² - b²)
Standard form: ((x - h)² / b²) + ((y - k)² / a²) = 1
Foci: (h, k ± c), where c = √(a² - b²)
Eccentricity: e = c / a
Major axis length: 2a
Minor axis length: 2b
Area: πab
It finds both foci of an axis-aligned ellipse. It also returns the center, vertices, co-vertices, eccentricity, standard equation, directrices, area, and a plotted graph.
The value a is the semi-major axis. The value b is the semi-minor axis. For this calculator, a must be greater than or equal to b.
The value c is the center-to-focus distance. It is computed using c = √(a² - b²). Once c is known, the foci are placed along the major axis.
Then the ellipse becomes a circle. In that special case, c becomes zero and both foci coincide at the center point.
No. This version handles standard ellipses aligned with the x-axis or y-axis. Rotated ellipses require an additional rotation term and a different coordinate transformation.
Orientation tells the calculator whether the major axis runs left-right or up-down. That choice decides whether the focal shift is applied to x or y coordinates.
Yes. After calculation, you can download a CSV summary or a PDF report that includes the computed values and the example table.
The most common issue is entering a semi-minor axis larger than the semi-major axis. Negative or zero axis lengths also fail validation.
Important Note: All the Calculators listed in this site are for educational purpose only and we do not guarentee the accuracy of results. Please do consult with other sources as well.