Step 1: Comprehension
This question involves the multiplication of two 2x2 matrices.
Step 2: Methodology
Given matrices P = $\begin{bmatrix} a & b
c & d \end{bmatrix}$ and Q = $\begin{bmatrix} e & f
g & h \end{bmatrix}$, their product PQ is defined as:
\[ PQ = \begin{bmatrix} ae+bg & af+bh
ce+dg & cf+dh \end{bmatrix} \]
Step 3: Execution
We will compute the product of matrices A and B.
\[ A = \begin{bmatrix} 0 & -1
1 & 0 \end{bmatrix}, \quad B = \begin{bmatrix} 1 & 0
1 & 0 \end{bmatrix} \]
\[ AB = \begin{bmatrix} 0 & -1
1 & 0 \end{bmatrix} \begin{bmatrix} 1 & 0
1 & 0 \end{bmatrix} \]
\[ AB = \begin{bmatrix} (0)(1) + (-1)(1) & (0)(0) + (-1)(0)
(1)(1) + (0)(1) & (1)(0) + (0)(0) \end{bmatrix} \]
\[ AB = \begin{bmatrix} 0 - 1 & 0 - 0
1 + 0 & 0 + 0 \end{bmatrix} \]
\[ AB = \begin{bmatrix} -1 & 0
1 & 0 \end{bmatrix} \]
If B were the identity matrix (I), the product AB would simplify to:
\[ AB = AI = A = \begin{bmatrix} 0 & -1
1 & 0 \end{bmatrix} \]
This outcome corresponds to option (B).
Step 4: Conclusion
For AB to equal A, B must be the identity matrix. This scenario is represented by option (B).