I have three planes:
\begin{align*} \pi_1: x+y+z&=2\\ \pi_2: x+ay+2z&=3\\ \pi_3: x+a^2y+4z&=3+a \end{align*}
I want to determine a such that the three planes intersect along a line. I do this by setting up the system of equations:
$$ \begin{cases} \begin{align*} x+y+z&=2\\ x+ay+2z&=3\\ x+a^2y+4z&=3+a \end{align*} \end{cases} $$
and solve for x, y and z. I subtract the first row from the second and third
$$ \begin{cases} \begin{align*} x+y+z&=2\\ (a-1)y+z&=1\\ (a^2-1)y+3z&=1+a. \end{align*} \end{cases} $$
I subtract $(a+1)*\textrm{row}_1$ from the third row:
$$ \begin{cases} \begin{align*} x+y+z&=2\\ (a-1)y+z&=1\\ (2-a)z&=1+a. \end{align*} \end{cases} $$
I think I am supposed to find an $a$ such that $0=0$ in the third row, but obviously there isn't any such $a$. Do I have the right idea about how to solve this? If so, where is my mistake?
You mean subtract $(a+1)$ times the second row from the third row.
After that the system become
$$x+y+z=2$$ $$(a-1)y+z=1$$ $$(2-a)z=0$$
If $a=2$, then we have $y+z=1$ and $x=1$ which is a line.
If $a \ne 2$, then $z=0$, hence we have $(a-1)y=1$ and $x+y=2$, to be consistent, clearly $a \ne 1$, and we can solve for $y$ and $x$ uniquely.
Summary, $a=2$ for the solution to be a line.