To show whether or not the 3 planes $$x+y-2z=5\tag 1$$ $$x-y+3z=6 \tag2$$ $$x+5y-12z=12 \tag 3$$ all have a common line of intersection.
Can I do $(3)-(2)$ to get the line $6y-15z=6$ and $(1)-(2)$ to get the line $2y-5z=-1$ which is $6y-15z=-3$ , and say that as these aren't the same line, they don't have a common line of intersection?
Another thing that is confusing me is that if instead of eliminating $x$, I chose to eliminate $z$, I would get different lines in terms of $x$ and $y$. But how can I get the equations of two different lines by eliminating from the same pair of plane equations? There's only one line of intersection between any pair of planes, so surely I should only be able to get one unique line if I eliminate a variable from a pair of planes? Any help would be appreciated
HINT: Find normal vectors of the planes and check if three of them are linearly independent. If there is a common line for all the planes, then their normal vectors will lie within the same plane, therefore three of them will not be linearly independent.
In your specific case, $$ x+y-2z=5\implies \vec{n}_1 = \begin{bmatrix} 1\\ 1\\ -2\end{bmatrix}\\ x-y+3z=6\implies \vec{n}_2 = \begin{bmatrix} 1\\ -1\\ 3\end{bmatrix}\\ x+5y-12z=5\implies \vec{n}_3 = \begin{bmatrix} 1\\ 5\\ -12\end{bmatrix} $$ First, we need to check if the system of vector $\left\{\vec{n}_1, \vec{n}_2, \vec{n}_3 \right\}$ is clearly independent or not. The simplest way to do that is to compute rank of the matrix $\left[\vec{n}_1 \ \vec{n}_2\ \vec{n}_3 \right]$: $$ \operatorname{rank}\Big(\left[\vec{n}_1 \ \vec{n}_2\ \vec{n}_3 \right]\Big) = \operatorname{rank} \begin{pmatrix} 1 & 1& 1 \\ 1 & -1 & 5 \\ -2& 3 & -12 \end{pmatrix} $$
If $\ \operatorname{rank}\!\left(\vec{n}_1 \ \vec{n}_2\ \vec{n}_3 \right)=2$, then the normal vectors are linearly dependent, yet still span a plane.
Second, we need to find out if there is a point common for all three planes.
If you can find a common point and the rank of system of normal vectors is 3, then there is a line shared by all three planes.