Finding Ellipse equation from 3 points

1.3k Views Asked by At

I have 3 points

f1: (6,0)      // Foci point
f2: (-6,0)     // Foci point
p:  (8.1, 4.7) // point on the ellipse

Ellipse equation is: $$ \frac{x^{2}}{a^2}+\frac{y^{2}}{b^2}=1 $$

How do I find $ a $ and $b$?

enter image description here

2

There are 2 best solutions below

3
On BEST ANSWER

Hint:

use the fact that if the foci of the ellipse are $F=(\pm c,0)$ than we have $b^2+c^2=a^2$. So you have only one free parameter in the equation that can be determined using the coordinates of the given point.


e have $c=6$, so: $a^2=36+b^2$ and the equation of the ellipse becomes: $$ \frac{x^2}{36+b^2}+\frac{y^2}{b^2}=1 $$ substitute $x=8.1$ and $y=4.7$ and solve the equation for $b^2$.

6
On

Let $d(p_1,p_2)$ mean distance between points $p_1$ and $p_2$ then we have $d(f_1,p)+d(f_2,p)=2a$,

then use the steps from here to find b.