I have an equation given in terms of three vectors $\vec{x}$, $\vec{y}$ and $\vec{z}$, all in $\mathbb{R}^n$:
$$1 - (\vec{x}\cdot\vec{y})^2 = K + 2K\vec{z}\cdot\vec{y} + (\vec{z}\cdot\vec{y})^2, K \in \mathbb{R}$$
I want to solve for both $\vec{x}$ and $\vec{z}$, given $\vec{y}$ and $K$. Now, I can make a transformation of variables $u = \vec{x}\cdot\vec{y}$, $v = \vec{z}\cdot\vec{y}$. I now get a quadratic:
$$1-u^2 = K + 2Kv + v^2$$
Now, I suspect that I may have a much better time trying to solve the quadratic parametrically than I had trying to solve the original vector equation. However, this will eventually tell me that $u$ and $v$ lie on some simpler geometric objects (probably hyperplanes, I haven't yet worked it out). I have two questions:
1) Assuming that the solutions exists in the reals for $u$ and $v$, can I just solve the change-of-variable equations (which are hyperplanes) to get $\vec{x}$ and $\vec{z}$, or do I need to intersect the solutions or something?
2) Is my change of variables valid here? I feel like I'm moving from an $n$ dimensional space into a 2 dimensional space, and something tells me I'm going to lose a lot of information in doings so. Will I be able to get a complete solution this way?