Help finding the tangent line to a curve

coordinate systemseuclidean-geometrygeometryplane-geometry

I found this problem in a plane geometry book

Let $P=(x_1,y_1)$ be a point on the curve $Ax^2+By^2+2Hxy+2Gx+2Fy+C=0$ Show that the tangent line at $P$ has equation $Axx_1+Byy_1+H(xy_1+yx_1)+G(x+x_1)+F(y+y_1)+C=0$

I think it might be useful to use the definition of derivative but I'm not completely sure how to proceed? Any suggestion?

Best Answer

This can be easily done using homogeneous representations. In a homogeneous representation, the given conic is represented as the matrix $\mathbf C$ as follows: $$ \mathbf C = \begin{bmatrix}A & H & G\\H & B & F\\G & F & C\end{bmatrix} $$

The homogeneous representation of the point $ P = (x_1, y_1) $ is,

$$p = \begin{bmatrix}x_1\\y_1\\1\end{bmatrix} $$

The homogeneous representation of the tangent line to this conic at point $P$ is, $$ l = \mathbf Cp $$ which is, $$l = \begin{bmatrix}A & H & G\\H & B & F\\G & F & C\end{bmatrix}\begin{bmatrix}x_1\\y_1\\1\end{bmatrix} = \begin{bmatrix}Ax_1+Hy_1+G\\Hx_1 + By_1+F\\Gx_1+Fy_1+C\end{bmatrix} $$

The homogeneous representation of the line $ ax+by+c=0$ is $ [a, b, c]^T$. Therefore, by multiplying the above vector $l$ with $[x, y, 1]$ you can get the given results. $$given~equation = \begin{bmatrix}Ax_1+Hy_1+G\\Hx_1 + By_1+F\\Gx_1+Fy_1+C\end{bmatrix}^T\begin{bmatrix}x\\y\\1\end{bmatrix}=0$$

Related Question