Question 147195
Write an equation in standard form for: 
1. An ellipse with center a the origin, one vertex at (0,5) and one co-vertex at (0,2). 
<pre><font size = 4 color = "indigo"><b> 
Draw those points: 
 
{{{drawing(400,400,-10,10,-10,10, grid(1), locate(-.2,5.4,"@"),
locate(-.2,2.4,"@")
 
)}}}
 
It is impossible to have a standard ellipse with a vertex and a 
co-vertex both on the y-axis.  So you have copied one of those 
points backward. I'll first assume the vertex should have been 
(5,0) instead of (0,5). Then we have this graph:
 
{{{drawing(400,400,-10,10,-10,10, grid(1), locate(-.2,2.4,"@"), locate(5-.2,0.4,"@")
 
)}}}

It is now easy to sketch in an ellipse with one vertex (5,0) and a co-vertex (0,2), as you see:

{{{drawing(400,400,-10,10,-10,10, grid(1), locate(-.2,2.4,"@"), locate(5-.2,0.4,"@"), graph(400,400,-10,10,-10,10,sqrt((100-4x^2)/25)),
graph(400,400,-10,10,-10,10,-sqrt((100-4x^2)/25))
 
)}}}

This ellipse is elongated horizontally like an egg resting on a 
table top.  Such an ellipse has the equation:

{{{(x-h)^2/a^2 + (y-k)^2/b^2=1}}}

where 

({{{h}}}, {{{k}}}) is the center,

{{{a=DISTANCE_FROM_CENTER_TO_VERTEX}}}, and

{{{b=DISTANCE_FROM_CENTER_TO_CO-VERTEX}}}, 

So in your problem, using (h,k) = (0,0)

{{{(x-h)^2/a^2 + (y-k)^2/b^2=1}}} becomes

{{{(x-0)^2/5^2 + (y-0)^2/2^2=1}}}

{{{x^2/25 + y^2/4=1}}}
 
-------------------------------------

Next I'll assume the co-vertex should have been (2,0) 
instead of (0,2). Then we have this graph instead:
 
{{{drawing(400,400,-10,10,-10,10, grid(1), locate(-.2,5.4,"@"), locate(2-.2,0.4,"@")
 
)}}}

As you see, it is also easy to sketch in an ellipse with one vertex
(0,5) and a co-vertex (2,0):

{{{drawing(400,400,-10,10,-10,10, grid(1), locate(-.2,5.4,"@"), locate(2-.2,0.4,"@"), graph(400,400,-10,10,-10,10,sqrt(100-25x^2)/2),
graph(400,400,-10,10,-10,10,-sqrt(100-25x^2)/2)
 
)}}}

This ellipse is elongated vertically like the character zero "0".  It
has this equation:

{{{(x-h)^2/b^2 + (y-k)^2/a^2=1}}}

[Notice that {{{a^2}}} is under the term in {{{y}}} and that
{{{b^2}}} is under the term in {{{x}}}, which was the other
way around in the case above. It is always true, though,
that {{{a}}} and {{{a^2}}} are always greater than {{{b}}}
and {{{b^2}}} respectively.]
 
where 

({{{h}}}, {{{k}}}) is the center,

{{{a=DISTANCE_FROM_CENTER_TO_VERTEX}}}, and

{{{b=DISTANCE_FROM_CENTER_TO_CO-VERTEX}}}, 

So in interpreting your problem this way, we have,
again using (h,k) = (0,0),:

{{{(x-h)^2/b^2 + (y-k)^2/a^2=1}}} becomes

{{{(x-0)^2/2^2 + (y-0)^2/5^2=1}}}

{{{x^2/4 + y^2/25=1}}}
 
-------------------------------------

2. A parabola with vertex at the origin and directrix y=-2


Such a parabola has equation:

{{{(x-h)^2 = 4p(y-k)}}} where the vertex is ({{{h}}}, {{{k}}}).

Since this parabola has vertex ({{{0}}},{{{0}}}), it has this
equation

{{{x^2=4py}}}


We mark the origin and draw the directrix, in green, which is given as a
horizontal line 2 units below and parallel to the x-axis.

{{{drawing(400,400,-10,10,-10,10, locate(-.2,.4,"@"), graph(400,400,-10,10,-10,10,11,-2) )}}}

The vertex is 2 units ABOVE the directrix.  That's 2 units upward,
so therefore p = 2.  </b><i><font size = 2 color="red">---(If the vertex had been BELOW the directrix, we would have used p = -2</i>)</font><b>

Since the directrix is always entirely OUTSIDE the parabola,
we know that the parabola opens upward like this:

{{{drawing(400,400,-10,10,-10,10, locate(-.2,.4,"@"), graph(400,400,-10,10,-10,10,x^2/8,-2) )}}}

So since p=2 the equation of the parabola is

{{{x^2=4py}}}

{{{x^2=4(2)y}}}

{{{x^2=8y}}}

If you need the focus, (or focal point), it is a
point inside the parabola which is just as far from
the vertex as the directrix, but on the inside of
the parabola.  In other words, the focus (or focal
point) is (0,2) as you see in the graph below. Since
you asked about 'directrix' and 'foci' in one of the 
other problems, you have to understand focus (or focal point).
I did not mention the focus in the ellipse problems.  Perhaps
I should have.  All conics have at least one focal
point and a directrix.

{{{drawing(400,400,-10,10,-10,10, locate(-.2,.4,"@"), graph(400,400,-10,10,-10,10,x^2/8,-2), locate(-.2,2.4,"o<-Focus(0,2)") )}}}

---------------------------------

A circle with center (0,0) passing through (-3,4). 

First we'll draw it.  We draw the center and the point(-3,4):

{{{drawing(400,400,-10,10,-10,10, locate(-.2,.4,"@"),locate(-.2,1,"/center"), graph(400,400,-10,10,-10,10), locate(-.2-3,4.4,"o<-GivenPoint(-3,4)")  )}}}

Next we draw the radius from (0,0) to (-3,4)

{{{drawing(400,400,-10,10,-10,10, locate(-.2,.4,"@"),locate(-.2,1,"/center"), graph(400,400,-10,10,-10,10), locate(-.2-3,4.4,"o<-GivenPoint(-3,4)"),line(-3,4,0,0)  )}}}


Then we get a compass and draw the circle:

{{{drawing(400,400,-10,10,-10,10, locate(-.2,1,"/center)"), graph(400,400,-10,10,-10,10), locate(-.2-3,4.4,"o<-GivenPoint(-3,4)"),circle(0,0,5),line(-3,4,0,0)  )}}}

The equation of a circle with center (h,k) and radius r is

{{{(x-h)^2+(y-k)^2=r^2}}}

We know that the center is (0,0), so this becomes

{{{x^2+y^2=r^2}}}

We can find the radius either by using the distance formula

{{{d=sqrt(  (x[2]-x[1])^2+(y[2]-y[1])^2)}}}
={{{sqrt((-3-0)^2+(4-0)^2)}}}
={{{sqrt((-3)^2+(4)^2)}}}
={{{sqrt(9+16)}}}
={{{5}}}

or an easier way would be to have plugged (x,y)=(-3.4) into the
equation:

{{{x^2+y^2=r^2}}}
{{{(-3)^2+(4)^2=r^2}}}
{{{9+16=r^2}}}
{{{25=r^2}}}
{{{sqrt(25)=r}}}
{{{5=r}}}

So the equation

{{{x^2+y^2=r^2}}}

becomes

{{{x^2+y^2=5^2}}}

or

{{{x^2+y^2=25}}}

---------------------------------------------

Hyperbola with vertices (8,-4) and (8,4) and foci (8,-6) and (8,6).

Let's draw those points:

{{{drawing(400,400,-5,15,-10,10, locate(8-.2,-4+.4,"@"), locate(8-.2,4+.4,"@"), graph(400,400,-5,15,-10,10),
graph(400,400,-5,15,-10,10),
locate(8-.2,-6+.4,"@"), locate(8-.2,6+.4,"@")
 
)}}}

The center of a hyperbola is the point midway between
the two vertices, which is also the point midway between 
the two foci.  So the center of the hyperbola is (8,0), so
we plot it:

{{{drawing(400,400,-5,15,-10,10, locate(8-.2,-4+.4,"@"), locate(8-.2,4+.4,"@"), graph(400,400,-5,15,-10,10),
graph(400,400,-5,15,-10,10),
locate(8-.2,-6+.4,"@"), locate(8-.2,6+.4,"@"), locate(8-.2,0+.4,"@")
 
)}}}

The value of {{{a}}} is the distance from the center to a vertex.
The distance between (8,0) and the vertex (8,4) is 4 units, so {{{a=4}}}

The value of {{{c}}} is the distance from the center to a focus.
The distance between (8,0) and the vertex (8,6) is 6 units, so {{{c=6}}}

Now there is a Pythagorean relationship hyperbolas, that is,

{{{c^2=a^2+b^2}}}

Substituting:

{{{6^2=4^2+b^2}}}
{{{36=16+b^2}}}
{{{20=b^2}}}
{{{sqrt(20)=b}}}
{{{4.47=b}}} approximately.

Draw horizontal line segments through each vertex,
both right and left of each vertex, each equaling
to {{{b=4.47}}}

{{{drawing(400,400,-5,15,-10,10, locate(8-.2,-4+.4,"@"), locate(8-.2,4+.4,"@"), graph(400,400,-5,15,-10,10), line(8-sqrt(20),4,8+sqrt(20),4),
graph(400,400,-5,15,-10,10), line(8-sqrt(20),-4,8+sqrt(20),-4),
locate(8-.2,-6+.4,"@"), locate(8-.2,6+.4,"@"), locate(8-.2,0+.4,"@") )}}} 
 
Now complete the defining rectangle for the hyperbola:

{{{drawing(400,400,-5,15,-10,10, locate(8-.2,-4+.4,"@"), locate(8-.2,4+.4,"@"), graph(400,400,-5,15,-10,10), rectangle(8-sqrt(20),4,8+sqrt(20),-4),
graph(400,400,-5,15,-10,10),
locate(8-.2,-6+.4,"@"), locate(8-.2,6+.4,"@"), locate(8-.2,0+.4,"@") )}}} 

Draw the extended diagonals of that rectangle:

{{{drawing(400,400,-5,15,-10,10, locate(8-.2,-4+.4,"@"), locate(8-.2,4+.4,"@"), graph(400,400,-5,15,-10,10), rectangle(8-sqrt(20),4,8+sqrt(20),-4),
graph(400,400,-5,15,-10,10),
locate(8-.2,-6+.4,"@"), locate(8-.2,6+.4,"@"), locate(8-.2,0+.4,"@"),
line(-6,(2/(sqrt(5)))(-6-8),16,(2/(sqrt(5)))(16-8)),
line(-6,(-2/(sqrt(5)))(-6-8),16,(-2/(sqrt(5)))(16-8)) )}}}

Draw in the hyperbola:

{{{drawing(400,400,-5,15,-10,10, locate(8-.2,-4+.4,"@"), locate(8-.2,4+.4,"@"), graph(400,400,-5,15,-10,10,sqrt((80+4(x-8)^2)/5)), rectangle(8-sqrt(20),4,8+sqrt(20),-4),
graph(400,400,-5,15,-10,10,-sqrt((80+4(x-8)^2)/5)),
locate(8-.2,-6+.4,"@"), locate(8-.2,6+.4,"@"), locate(8-.2,0+.4,"@"),
line(-6,(2/(sqrt(5)))(-6-8),16,(2/(sqrt(5)))(16-8)),
line(-6,(-2/(sqrt(5)))(-6-8),16,(-2/(sqrt(5)))(16-8)) )}}}

Hyperbolas which open up and down have this equation:

{{{(y-k)^2/a^2-(x-h)^2/b^2=1}}}

where {h,k) = the vertex, a = distance from center to vertex,
and b= distance from vertex to nerest corner of defining 
rectangle.

So (h,k) = (8,0), {{{a= 4}}}, {{{b=sqrt(20)}}}

Therefore the equation is

{{{(y-0)^2/4^2-(x-8)^2/(sqrt(20))^2=1}}}

{{{y^2/16-(x-8)^2/20=1}}}

Edwin</pre></font></b>