Question 826426
<pre>
{{{drawing(400,1000/3,-6,6,-2,8,graph(400,1000/3,-6,6,-2,8,(x^2+4)/4),
locate(0,2,"(0,2)"), green(line(-4.5,6.0625,-4.5,0),line(-3.5,4.0625,-3.5,0),line(-2.5,2.5625,-2.5,0),line(-1.5,1.5625,-1.5,0),line(-0.5,1.0625,-0.5,0),line(0.5,1.0625,0.5,0),line(1.5,1.5625,1.5,0),line(2.5,2.5625,2.5,0),line(3.5,4.0625,3.5,0),line(4.5,6.0625,4.5,0),line(5.5,8.5625,5.5,0),
line(-4.5,6.0625,0,2),line(-3.5,4.0625,0,2),line(-2.5,2.5625,0,2),line(-1.5,1.5625,0,2),line(-0.5,1.0625,0,2),line(0.5,1.0625,0,2),line(1.5,1.5625,0,2),line(2.5,2.5625,0,2),line(3.5,4.0625,0,2),line(4.5,6.0625,0,2),line(5.5,8.5625,0,2)) )}}}

Every one of those vertical green lines from the curve down to the
x-axis must be equal to the slanted line that it's connected to that
goes to the point (0,2). Not only those but also an infinite number of 
possible pairs of green lines that COULD be drawn.

Let's pick one of those pairs of green line at random, and label it
with the variable coordinates (x,y).  the bottom of the green line
must have the same x-coordinate, so it has the coodinates (x,0).

{{{drawing(400,1000/3,-6,6,-2,8,graph(400,1000/3,-6,6,-2,8,(x^2+4)/4),
locate(0,2,"(0,2)"), green(line(3.7,4.4225,0,2),line(3.7,4.4225,3.7,0)),locate(3.7,4.6,"(x,y)"),locate(3.7,.6,"(x,0)")  )}}}



We use the distance formula

d = &#8730;<span style="text-decoration: overline">(x<sub>2</sub>-x<sub>1</sub>)²+(y<sub>2</sub>-y<sub>1</sub>)²</span>

to set the distance from (x,y) to (x,0) equal to the distance between
(x,y) to (0,2)

 
    &#8730;<span style="text-decoration: overline">(x-x)²+(0-y)²</span> = &#8730;<span style="text-decoration: overline">(0-x)²+(2-y)²</span> 

Squaring both sides takes away the radicals

     (x-x)²+(0-y)² = (0-x)²+(2-y)²

        (0)²+(-y)² = (-x)²+(2-y)²

              0+y² = x²+(4-4y+y²)

                y² = x²+4-4y+y²

                 0 = x²+4-4y

                4y = x²+4

                 y = {{{1/4}}}x²+1

That's the equation.

Edwin</pre>