Edit: (Sept 27, 2017) The result I was trying to prove here is false. Not all hyperbolas can be realized as right circular conic sections. Also, the approach described below is not the best way to treat the problem. I posted an arxiv paper with a better approach:
https://arxiv.org/abs/1708.07093
I'm trying to find a concise proof of the following statement:
Given real numbers $a,b,c,d,e,f\in\mathbb{R}$, the real solution of the equation $$ax^2+bxy+cy^2+dx+ey+f=0\tag{1}$$ can be seen as the intersection of the $x,y$-plane with a right circular cone in $x,y,z$-space. (At least in the generic case.)
Here's my attempt at a proof:
First homogenize the equation to obtain $$ax^2+bxy+cy^2+dxz+eyz+fz=0 \tag{2}$$ and then express this as a matrix equation: $$\mathbf{x}^T H \mathbf{x}=\begin{pmatrix} x&y&z\end{pmatrix}\begin{pmatrix}a& b/2 & d/2 \\ b/2 & c & e/2 \\ d/2 & e/2 & f\end{pmatrix}\begin{pmatrix} x\\y\\z\end{pmatrix}=0.\tag{2}$$ Since $H$ is a real symmetric matrix, the Principal Axes Theorem says that there exists a real orthogonal matrix $Q^T=Q^{-1}$ such that $H':=Q^THQ$ is diagonal: $$H':=Q^THQ=\begin{pmatrix} a'&0&0\\ 0&c'&0 \\ 0&0&f' \end{pmatrix}.$$ By making the change of variables $$\begin{pmatrix} x\\y\\z\end{pmatrix}=\mathbf{x}=Q\mathbf{x}'=Q\begin{pmatrix} x'\\y'\\z'\end{pmatrix}$$ we see that equation (2) is equivalent to the following: \begin{align} \mathbf{x}^T H \mathbf{x} &= 0 \\ (Q\mathbf{x}')^T H (Q\mathbf{x}') &= 0 \\ (\mathbf{x}')^T (Q^THQ) \mathbf{x}' &= 0 \\ (\mathbf{x}')^T H' \mathbf{x}'&= 0 \\ a'(x')^2+c'(y')^2+f'(z')^2 &= 0.\tag{3} \end{align}
Now, if it happens that $a',c',f'\in\{\pm 1\}$ then I claim that we are done. Indeed, in this case we identify (3) as the equation of a right circular cone (or a single point, in which case the result is true anyway). Then since (2) and (3) are related by an orthogonal transformation we see that (2) also defines a right circular cone. Finally, we see that (1) defines the intersection of this cone with the plane $z=1$ in $x,y,z$-space. QED
Unfortunately we do not always have $a',c',f'\in\{\pm 1\}$. If $a'c'f'\neq 0$ then equation (3) defines a single point or an elliptic cone in $x',y',z'$-space, which is not quite what I want.
Here is my question:
Is there a way to tweak the argument to force $a',c',f'\in\{\pm 1\}$? My only idea is to perform an initial rotation and translation of equation (1), that is, to make an initial change of variables of the form $$\begin{pmatrix} x'\\y'\end{pmatrix} = P\begin{pmatrix} x\\y\end{pmatrix} +\begin{pmatrix}u\\v\end{pmatrix}$$ with $P^T=P^{-1}$. Hopefully one could choose this $P$ and $(u,v)$ appropriately so the homogenized form of the new equation (1) has eigenvalues in $\{\pm 1\}$ but I don't see how to do it.
Any ideas?