This was a sample test question and was not the answer to the question. I'm just curious about what the column of 0 does.
For reference if needed, the question was "Which of the following is the coefficient matrix for a homogeneous system Ax = 0 with only the trivial solution"
Here's the Matrix:
\begin{bmatrix}1&0&0&0\\0&1&0&0\\0&0&1&0\end{bmatrix}
I personally would assume that there would be only 1 solution as despite there being no pivot in the 4th column, the values in the 4th column are all 0.
(I'm definitely doing this part wrong) Writing this in parametric vector form, I would get
x1 = 0
x2 = 0
x3 = 0
x4 = free
and now I'm kinda lost about what to do..
Taking a guess, would the result be:
\begin{bmatrix}0\\0\\0\\1\end{bmatrix} * x4?
To be honest, I'm not exactly sure how to examine this matrix..
Simply put, how does the 0 column affect this matrix? Is the initial matrix equivalent to a 3x3 identity matrix? How many solutions are there? Infinitely many or just 1?
If $A$ is the matrix of your system, then you have three equations in four variables, $$ x_1=0,\\ \ \\ x_2=0,\\ \ \\ x_3=0. $$ And $x_4$ does not appear in the equations, so you are free to choose it, and there are infinitely many solutions.
Another possible interpretation, is that the matrix you were given is an augmented matrix $\begin{bmatrix} A& 0\end{bmatrix}.$ In that case, the system would have three variables and the unique solution $x_1=x_2=x_3=0$.