Show that the system $$bx + ay =c \\ cx + az = b \\ cy + bz = a $$ has a unique solution if and only if $ abc \neq 0 $. In this case, fix the system.
I gathered the relationships and got $x = y = z = 1/2$, but I couldn't solve the system. Did I miscalculate?
You're trying to solve the equation
$$\begin{pmatrix} b & a & 0\\ c & 0 & a\\ 0 & c & b \end{pmatrix} \begin{pmatrix}x \\ y \\ z\end{pmatrix} = \begin{pmatrix}c \\ b \\ a\end{pmatrix},$$ which has a unique solution if and only if the matrix is invertible. So calculating its determinant you get $-2abc$, which is nonzero if and only if $abc \neq 0$. This solves the first part of your question. For the second part, invert the matrix and you get the inverse
$$\frac{1}{-2abc}\begin{pmatrix} -ac & -ab & a^2\\ -bc & b^2 & -ab\\ c^2 & -bc & -ac \end{pmatrix}.$$
So now you just have to multiply by the vector $$\begin{pmatrix}c \\ b \\ a\end{pmatrix}.$$ So the unique solution is
$$\frac{1}{-2abc}\begin{pmatrix} -ac & -ab & a^2\\ -bc & b^2 & -ab\\ c^2 & -bc & -ac \end{pmatrix} \begin{pmatrix}c \\ b \\ a\end{pmatrix} = \frac{1}{-2abc}\begin{pmatrix} -ac^2-ab^2+a^3 \\ -bc^2 + b^3 - a^2b \\ c^3 - b^2c - a^2c\end{pmatrix}.$$