Analysis of Matrix Operations
Statement A: General Column Operations
If $B$ is obtained from $A$ by general column operations, then $B = AM$ for some matrix $M$. However, general column operations are not necessarily reversible.
Counter-example:
Let
$$A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}$$
If we replace the second column with the zero column:
$$B = \begin{bmatrix} 1 & 0 \\ 3 & 0 \end{bmatrix}$$
The original information in the second column is lost. $A$ cannot be recovered from $B$.
Conclusion: Statement A is False.
Statement B: Elementary Column Operations
Elementary column operations consist of:
Swapping two columns.
Multiplying a column by a non-zero constant $k$.
Adding a multiple of one column to another.
Each of these is inherently reversible.
Example:
$$A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}$$
Swap the columns to get $B$:
$$B = \begin{bmatrix} 2 & 1 \\ 4 & 3 \end{bmatrix}$$
Swapping them again returns $A$. Scaling by $k$ is reversed by scaling by $1/k$. Adding $nC_1$ to $C_2$ is reversed by subtracting $nC_1$ from $C_2$.
Conclusion: Statement B is True.
Statement C: Elementary Row Operations
Elementary row operations follow the same logic as column operations but are applied to rows ($R_i$). They are:
Swap $R_i \leftrightarrow R_j$
Scale $kR_i$ ($k \neq 0$)
Add $R_i + nR_j \to R_i$
Example:
$$A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}$$
Add $2 \times$ Row 1 to Row 2:
$$B = \begin{bmatrix} 1 & 2 \\ 5 & 8 \end{bmatrix}$$
Subtracting $2 \times$ Row 1 from Row 2 returns $A$.
Conclusion: Statement C is True.
Statement D: General Row Operations
Like column operations, if a row operation involves multiplying by zero or replacing a row with a constant that ignores the previous values, it is not reversible.
Counter-example:
$$A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}$$
Replace Row 1 with the zero row:
$$B = \begin{bmatrix} 0 & 0 \\ 3 & 4 \end{bmatrix}$$
Since $B$ is singular (determinant is 0) while $A$ was non-singular, we cannot perform an inverse operation to find $A$.
Conclusion: Statement D is False.
Final Summary