Development of a Hyperbola from the Definition

A hyperbola is the set of all points in a plane such that the difference of the distances from two fixed points (foci) is constant.

HyperbolaWhen the major axis is horizontal, the foci are at (-c,0) and at (0,c).

Let d1 be the distance from the focus at (-c,0) to the point at (x,y). Since this is the distance between two points, we'll need to use the distance formula.

d1 = sqrt ( (x+c)^2 + y^2 )

Similarly, d2 will involve the distance formula and will be the distance from the focus at the (c,0) to the point at (x,y).

d2 = sqrt ( (x-c)^2 + y^2 )

We can use the fact that the vertices are on the hyperbola to find out what the difference of the distances is.

If we take the vertex on the right, then d1 = c + a and d2 = c - a.

d1 - d2 = ( c + a ) - ( c - a ) = c + a - c + a = 2a

Therefore, the constant is 2a and d1 - d2 = 2a for every point on a hyperbola

Finding the equation of the hyperbola

Now that we know what the difference of the distances is, we can set about finding the equation of the hyperbola.

We start with d1 - d2 = 2a and substitute the formulas for d1 and d2. Because it is difficult to work with absolute values, we'll assume that d1 is greater than d2, although the process doesn't change much if it's the other way around.

sqrt( (x+c)^2 + y^2 ) - sqrt( (x-c)^2 + y^2 ) = 2a

We want to get rid of the radicals, so we'll move one term to the other side and then square both sides of the equation.

sqrt( (x+c)^2 + y^2 ) = 2a + sqrt( (x-c)^2 + y^2 )

(x+c)^2 + y^2 = 4a^2 + 4a sqrt( (x-c)^2 + y^2 ) + (x-c)^2 + y^2

Let's multiply out the squared terms

x^2 + 2cx + c^2 + y^2 = 4a^2 + 4a sqrt( (x-c)^2 + y^2 ) + x^2 - 2cx + c^2 + y^2

If we move everything except for the square root term to the left side, a lot of this will cancel out and we'll get

4cx - 4a^2 = 4a sqrt( (x-c)^2 + y^2 )

Let's divide everything by 4 to get

cx - a^2 = a sqrt( (x-c)^2 + y^2 )

Square both sides to get rid of the radical

(cx)^2 - 2(a^2)cx + a^4 = a^2 ( (x-c)^2 + y^2 )

Expand the (x-c)2 on the right hand side

(cx)^2 - 2(a^2)cx + a^4 = a^2 ( x^2 - 2cx + c^2 + y^2 )

Distribute the a2 on the right side

(cx)^2 - 2(a^2)cx + a^4 = (a^2) x^2 - 2(a^2)cx + (a^2)c^2 + (a^2)y^2

Move all the variable terms to one side and the constants to the other.

(cx)^2  - (ax)^2 - (ay)^2 = (ac)^2 - a^4

Factor and x2 out of the first two terms on the left and an a2 out of the right side.

(c^2 - a^2)x^2 - (ay)^2 = (c^2 - a^2)a^2

Notice how there is an c2 - a2 on both sides. Let's define b2 = c2 - a2 and make the substitution into the equation.

(bx)^2 - (ay)^2 = (ab)^2

Finally, divide everything by a2b2 so the right side is 1.

x^2/a^2 - y^2/b^2 = 1

That gives us the standard form for a hyperbola with a transverse axis and it also gives us the Pythagorean relationship c2 = a2+ b2.


Return to notes on conic sections.