Determine the following system of equations has 'a unique solution', 'many solutions' or 'no solution': $$\begin{cases} & x + 2y + z &= 1\\ &2x + 2y - 2z &= 4\\ &-x + 2y - 3z &= 5 \end{cases} $$
Answer = A unique solution
How is it a unique solution? Could anyone explain clearly?
Thanks
If you let: $$A=\begin{bmatrix}1&2&1\\2&2&-2\\-1&2&-3\end{bmatrix}\;,\quad X=\begin{bmatrix}x\\y\\z\end{bmatrix}\;,\quad B=\begin{bmatrix}1\\4\\5\end{bmatrix}$$ then the system of equations can be written in matrix form as $AX=B$.
This system has no solutions if the rank of $A$ is less than the rank of the augmented matrix $(A\vert B)$. If these ranks are equal, the system has at least one solution.
In your case, with the same number of equations as variables and thus a square coefficient matrix $A$, this solution is unique if the rank of $A$ is $3$. A matrix of full rank has a non-zero determinant, so that would be one quick way to verify that this system indeed has a unique solution:
$$\det A=\begin{vmatrix}1&2&1\\2&2&-2\\-1&2&-3\end{vmatrix} = \begin{vmatrix}2&3&1\\0&0&-2\\-4&-1&-3\end{vmatrix} =-(-2)\begin{vmatrix}2&3\\-4&-1\end{vmatrix}= 2\left( -2+12 \right)=20$$
There are other ways but perhaps you should clarify what you have already learned (relevant theory, properties) about this topic.