So, we know that $Q(x,y)=Ax^2+Bxy+Cy^2+Dx+Ey+F$ can represent (if not an empty set) an ellipse, a parabola, a hyperbola, a pair of intersecting or parallel lines, a line or a point.
Given the equation in its general form, I'm trying to find out what it represents and I ran into a problem I'm struggling to solve.
How should I proceed to construct an equation that represents a certain point on the plane? For example, the equation $5x^2-2xy+5y^2-4x+20y+20=0$ represents the point $(0,-2)$. Given a point $(x_p,y_p)$ how do I get an equation that represents it?
** For hyperbolas, ellipses, and parabolas a simple rotation followed by a translation will do the trick, for a pair of lines we can just multiply out both of their equations, but what can we do when we want to represent a point?
Would appreciate any kind of help.
$$ Q(x,y) = (x-x_p)^2 + (y-y_p)^2$$
Will work to represent a point by the equation $Q(x,y)=0$.
Mixed terms like $xy$ can be obtained by applying the following kind of linear transformation to your coordinates.
$$ \begin{bmatrix} a & b \\ c & d \end{bmatrix} \begin{bmatrix} (x-x_p) \\ (y-y_p) \end{bmatrix} $$
With $ad-bc \neq 0$