I need to parameterize the curve of intersection of two congruent, parallel cones, where $\xi$ is the distance between the axes of symmetry, $\zeta$ is the difference in $z$ position of the vertices, and $\alpha$ is the slope of the cones.
I wrote the equations for the two cones below. $\xi$ and $\zeta$ are both divided by two to keep the problem symmetric about the origin. $$C_1:(x-\frac{\xi}{2})^2+y^2=(\frac{z-\frac{\zeta}{2}}{\alpha})^2$$ $$C_2:(x+\frac{\xi}{2})^2+y^2=(\frac{z+\frac{\zeta}{2}}{\alpha})^2$$
Normally, to find the intersection of any two equations, I would solve the two equations for the same variable or constant and set the equations equal to eachother. In the case of this problem, it is easy to solve both equations for $y^2$, yielding:
$$C_1:y^2=(x-\frac{\xi}{2})^2-(\frac{z-\frac{\zeta}{2}}{\alpha})^2$$ $$C_2:y^2=(x+\frac{\xi}{2})^2-(\frac{z+\frac{\zeta}{2}}{\alpha})^2$$
Then $$(x-\frac{\xi}{2})^2-(\frac{z-\frac{\zeta}{2}}{\alpha})^2=(x+\frac{\xi}{2})^2-(\frac{z+\frac{\zeta}{2}}{\alpha})^2$$ I am hesitant to continue, because I just eliminated $y$ from the equation. Intuitively, I know that $y$ should persist throughout the problem, because the curve will occupy the $x$, $y$, and $z$ space.
Am I going about this problem incorrectly? Can someone steer me in the right direction?