I'm trying to solve this problem in my text book.
The approach I want to try is as follows:
- The tangent vector at P is $\vec{v_h} = (1, y')$. Where y' is the derivative of the hyperbola function.
- Given $\vec{u_1} = \frac{\vec{F'P}} {||\vec{F'P}||}$ and $\vec{u_2} = \frac{\vec{FP}} {||\vec{FP}||}$, these dot products should be equal $\vec{v_h} \cdot \vec{u_1} = \vec{v_h} \cdot \vec{u_2} $ because they are supposed to form the same angle with the tangent line.
My attempt:
Start with the equation of the hyperbola: $$ b^2x^2 - a^2y^2=a^2b^2 $$
In this formula, c is half the distance between the foci.
Then isolate y:
$$ y = \pm \sqrt{\frac{b^2 x^2 - a^2 b^2}{a^2}} $$
Then we compute the derivative of y which tells us the slope of the function.
$$ y' = \frac{b^2}{a^2} \frac{x}{y} $$
With the derivative we can get a direction vector for the slope. $$ \vec{v_h} = (1, y') $$
And we compute the unit vectors that go from the foci to P.
$$ \vec{u_1} = \frac{1}{\sqrt{(c+x)^2 + y^2}} (c+x, y) $$ $$ \vec{u_2} = \frac{1}{\sqrt{(c-x)^2 + y^2}} (c-x, y) $$
If the angles between he tangent and the foci are the same, the cosine of the angle is too, and in this case, the dot product is the cosine of the angle scaled by the length of $\vec{v_h}$.
$$ \vec{v_h} \cdot \vec{u_1} = \vec{v_h} \cdot \vec{u_2} $$
$$ \frac{c+x + y y'} {\sqrt{(c+x)^2 + y^2}} = \frac{c-x + y y'}{\sqrt{(c-x)^2 + y^2}} $$
From this point, I have tried many things but I'm unable to prove that both sides are equal. Can you please help me?

