Calculus – How to Maximize the Slope to Find the Tangent Line of a Hyperbola

calculusreal-analysis

I have a hyperbola in the first quadrant opening to the right given with the equation $$x=\sqrt{19.8y^2-6.9y+0.7}$$ and I have to find the tangent line from the point $(0, 0.08)$ to the hyperbola (the tangent line with positive slope, so above the hyperbola if it's opening to the right).

The problem is I don't know what the tangent point is on the hyperbola because then I would just be able to find the slope and use $y=mx+b$ to find the equation of the tangent line.

My idea is since there are many lines that intersect the hyperbola from that point I have to maximize the slope between the point and the hyperbola and then I should be able to find the tangent line between $(0, 0.08)$ and the hyperbola.
But I don't know how to find the maximum slope between the line that goes through the point and the hyperbola?

Best Answer

First consider implicit differentiation.

$$x^2= 19.8y^2 - 6.9y + 0.7$$

$$\to \frac{d}{dx} x^2 = \frac{d}{dx} (19.8y^2 - 6.9y + 0.7)$$

$$\to 2x = 2(19.8)y \frac{dy}{dx} - 6.9 \frac{dy}{dx}$$

$$\to 2x = (2(19.8)y - 6.9) \frac{dy}{dx}$$

$$\to \frac{2x}{2(19.8)y - 6.9} = \frac{dy}{dx}$$


There is some point on the graph call it $(x_1, y_1)$ s.t. the tangent line to the graph at that point passes through $(0,0.08)$.

Thus, we have the two equations:

  1. $$x_1^2= 19.8y_1^2 - 6.9y_1 + 0.7$$

  2. $$\frac{0.08 - y_1}{0 - x_1} = \frac{2x_1}{2(19.8)y_1 - 6.9}$$

Solve the equations* for $x_1$ and $y_1$ then find the equation of the line that passes through $(x_1, y_1)$ and $(0,0.08)$.

*You'll probably get more than one solution. If so, do you know which one to pick?