To Draw an Ellipse

Standard Equation

The equation x2/a2 + y2/b2 = 1 represents an ellipse centered at the origin. The values of a and b determine the shape and size of the ellipse.

If a > b, the ellipse is horizontal, with vertices at (±a,0) and foci at (±c,0), where c2 = a2 - b2.

If b > a, the ellipse is vertical, with vertices at (0,±b) and foci at (0,±c), where c2 = b2 - a2.

    y = ± √(b2 - b2(x2/a2))
    x = ± √(a2 - a2(y2/b2))

image missing
Image From: commons.wikimedia.org