Matrices & Operations — JEE Main Maths PYQ MCQs with Solutions
Free JEE Main Maths PYQ Matrices & Operations MCQs with step-by-step solutions (25 questions). Part of Matrices & Determinants. Practise online on Prepizo — no login needed.
▶ Practise Matrices & Operations online (free)
Questions with solutions
Q1 — Matrices & Operations · easy · theory
If $A = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}$ and $B = \begin{pmatrix} 2 & 0 \\ 1 & 5 \end{pmatrix}$, then $A + B = $
A. $\begin{pmatrix} 3 & 2 \\ 4 & 9 \end{pmatrix}$ ✓ Correct
B. $\begin{pmatrix} 3 & 2 \\ 2 & 9 \end{pmatrix}$
C. $\begin{pmatrix} 1 & 2 \\ 3 & 9 \end{pmatrix}$
D. $\begin{pmatrix} 3 & 1 \\ 4 & 9 \end{pmatrix}$
Solution: Matrix addition is performed element-wise. $A + B$ adds corresponding elements: $(1+2, 2+0; 3+1, 4+5) = \begin{pmatrix} 3 & 2 \\ 4 & 9 \end{pmatrix}$
Q2 — Matrices & Operations · easy · theory
Find the transpose of $A = \begin{pmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{pmatrix}$.
A. $\begin{pmatrix} 1 & 4 \\ 2 & 5 \\ 3 & 6 \end{pmatrix}$ ✓ Correct
B. $\begin{pmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{pmatrix}$
C. $\begin{pmatrix} 6 & 5 & 4 \\ 3 & 2 & 1 \end{pmatrix}$
D. $\begin{pmatrix} 4 & 1 \\ 5 & 2 \\ 6 & 3 \end{pmatrix}$
Solution: The transpose $A^T$ swaps rows and columns. The first row $(1, 2, 3)$ becomes the first column, and the second row $(4, 5, 6)$ becomes the second column, yielding a $3 \times 2$ matrix.
Q3 — Matrices & Operations · easy · theory
If $A = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}$ and $B = \begin{pmatrix} 2 & 1 \\ 0 & 1 \end{pmatrix}$, then $AB = $
A. $\begin{pmatrix} 2 & 3 \\ 6 & 7 \end{pmatrix}$ ✓ Correct
B. $\begin{pmatrix} 2 & 1 \\ 6 & 4 \end{pmatrix}$
C. $\begin{pmatrix} 1 & 3 \\ 3 & 7 \end{pmatrix}$
D. $\begin{pmatrix} 2 & 0 \\ 3 & 4 \end{pmatrix}$
Solution: Matrix multiplication: $(AB)_{11} = 1 \cdot 2 + 2 \cdot 0 = 2$, $(AB)_{12} = 1 \cdot 1 + 2 \cdot 1 = 3$, $(AB)_{21} = 3 \cdot 2 + 4 \cdot 0 = 6$, $(AB)_{22} = 3 \cdot 1 + 4 \cdot 1 = 7$.
Q4 — Matrices & Operations · easy · theory
If $A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}$ is symmetric, then which of the following is true?
A. $b = c$ ✓ Correct
B. $a = d$
C. $b = -c$
D. $ad = bc$
Solution: A matrix is symmetric if $A = A^T$. For a $2 \times 2$ matrix, this means $\begin{pmatrix} a & b \\ c & d \end{pmatrix} = \begin{pmatrix} a & c \\ b & d \end{pmatrix}$, so $b = c$.
Q5 — Matrices & Operations · easy · theory
The order of the matrix $\begin{pmatrix} 1 & 2 & 3 & 4 \\ 5 & 6 & 7 & 8 \end{pmatrix}$ is
A. $2 \times 4$ ✓ Correct
B. $4 \times 2$
C. $2 \times 3$
D. $3 \times 2$
Solution: The order of a matrix is rows × columns. This matrix has 2 rows and 4 columns, so the order is $2 \times 4$.
Q6 — Matrices & Operations · easy · theory
If $A = \begin{pmatrix} 2 & 3 \\ 1 & 4 \end{pmatrix}$, then $(A^T)^T = $
A. $A$ ✓ Correct
B. $-A$
C. $\begin{pmatrix} 4 & 1 \\ 3 & 2 \end{pmatrix}$
D. $\begin{pmatrix} 2 & 1 \\ 3 & 4 \end{pmatrix}$
Solution: The transpose of a transpose returns the original matrix: $(A^T)^T = A$. This is a fundamental property of matrix operations.
Q7 — Matrices & Operations · easy · theory
If $A = \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}$ (identity matrix), then $A^2 = $
A. $A$ ✓ Correct
B. $\begin{pmatrix} 0 & 0 \\ 0 & 0 \end{pmatrix}$
C. $\begin{pmatrix} 2 & 0 \\ 0 & 2 \end{pmatrix}$
D. $\begin{pmatrix} 1 & 1 \\ 1 & 1 \end{pmatrix}$
Solution: For the identity matrix $I$, $I^2 = I \cdot I = I$. The identity matrix is idempotent.
Q8 — Matrices & Operations · medium · theory
If $A = \begin{pmatrix} 1 & 2 \\ 0 & 3 \end{pmatrix}$ and $B = \begin{pmatrix} 2 & 1 \\ 1 & 0 \end{pmatrix}$, then $BA = $
A. $\begin{pmatrix} 2 & 7 \\ 1 & 2 \end{pmatrix}$ ✓ Correct
B. $\begin{pmatrix} 2 & 3 \\ 1 & 2 \end{pmatrix}$
C. $\begin{pmatrix} 1 & 7 \\ 1 & 2 \end{pmatrix}$
D. $\begin{pmatrix} 2 & 5 \\ 1 & 2 \end{pmatrix}$
Solution: $(BA)_{11} = 2 \cdot 1 + 1 \cdot 0 = 2$, $(BA)_{12} = 2 \cdot 2 + 1 \cdot 3 = 7$, $(BA)_{21} = 1 \cdot 1 + 0 \cdot 0 = 1$, $(BA)_{22} = 1 \cdot 2 + 0 \cdot 3 = 2$.
Q9 — Matrices & Operations · easy · theory
If $A = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}$ and $B = \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}$, then $AB = $
A. $A$ ✓ Correct
B. $B$
C. $\begin{pmatrix} 1 & 2 \\ 0 & 4 \end{pmatrix}$
D. $\begin{pmatrix} 0 & 2 \\ 3 & 0 \end{pmatrix}$
Solution: Since $B$ is the identity matrix, $AB = A \cdot I = A$. Multiplying any matrix by the identity matrix leaves it unchanged.
Q10 — Matrices & Operations · medium · theory
If $A = \begin{pmatrix} 0 & 1 \\ -1 & 0 \end{pmatrix}$, then $A^2 = $
A. $-I$ ✓ Correct
B. $I$
C. $\begin{pmatrix} -1 & 0 \\ 0 & -1 \end{pmatrix}$
D. $\begin{pmatrix} 1 & 1 \\ -1 & -1 \end{pmatrix}$
Solution: $(A^2)_{11} = 0 \cdot 0 + 1 \cdot (-1) = -1$, $(A^2)_{12} = 0 \cdot 1 + 1 \cdot 0 = 0$, $(A^2)_{21} = (-1) \cdot 0 + 0 \cdot (-1) = 0$, $(A^2)_{22} = (-1) \cdot 1 + 0 \cdot 0 = -1$, so $A^2 = \begin{pmatrix} -1 & 0 \\ 0 & -1 \end{pmatrix} = -I$.
Q11 — Matrices & Operations · medium · theory
A matrix $A$ is called skew-symmetric if $A^T = -A$. Which of the following is skew-symmetric?
A. $\begin{pmatrix} 0 & 1 \\ -1 & 0 \end{pmatrix}$ ✓ Correct
B. $\begin{pmatrix} 1 & 2 \\ 2 & 3 \end{pmatrix}$
C. $\begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix}$
D. $\begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}$
Solution: For $A = \begin{pmatrix} 0 & 1 \\ -1 & 0 \end{pmatrix}$, $A^T = \begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix} = -A$. The diagonal elements of a skew-symmetric matrix must be 0.
Q12 — Matrices & Operations · easy · theory
If $A$ is a $3 \times 2$ matrix and $B$ is a $2 \times 4$ matrix, what is the order of $AB$?
A. $3 \times 4$ ✓ Correct
B. $2 \times 2$
C. $3 \times 2$
D. $4 \times 3$
Solution: For matrix multiplication $AB$, if $A$ is $m \times n$ and $B$ is $n \times p$, then $AB$ is $m \times p$. Here, $A$ is $3 \times 2$ and $B$ is $2 \times 4$, so $AB$ is $3 \times 4$.
Q13 — Matrices & Operations · medium · theory
If $A = \begin{pmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{pmatrix}$ and $B = \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix}$, then $AB = $
A. $\begin{pmatrix} 14 \\ 32 \end{pmatrix}$ ✓ Correct
B. $\begin{pmatrix} 1 & 4 \\ 2 & 10 \\ 3 & 18 \end{pmatrix}$
C. $\begin{pmatrix} 6 \\ 15 \end{pmatrix}$
D. $\begin{pmatrix} 10 \\ 28 \end{pmatrix}$
Solution: $(AB)_1 = 1 \cdot 1 + 2 \cdot 2 + 3 \cdot 3 = 1 + 4 + 9 = 14$, $(AB)_2 = 4 \cdot 1 + 5 \cdot 2 + 6 \cdot 3 = 4 + 10 + 18 = 32$. The result is a $2 \times 1$ matrix.
Q14 — Matrices & Operations · medium · theory
For matrices $A$ and $B$, which property is generally NOT true?
A. $AB = BA$ ✓ Correct
B. $(AB)^T = B^T A^T$
C. $(A + B)^T = A^T + B^T$
D. $(A^T)^T = A$
Solution: Matrix multiplication is generally NOT commutative: $AB \neq BA$ in most cases. The transpose of a product reverses the order: $(AB)^T = B^T A^T$, not $A^T B^T$. Addition and transpose are commutative in their respective senses.
Q15 — Matrices & Operations · easy · theory
If $A = \begin{pmatrix} 1 & 1 \\ 1 & 1 \end{pmatrix}$, then $A^2 = $
A. $\begin{pmatrix} 2 & 2 \\ 2 & 2 \end{pmatrix}$ ✓ Correct
B. $\begin{pmatrix} 1 & 1 \\ 1 & 1 \end{pmatrix}$
C. $\begin{pmatrix} 2 & 0 \\ 0 & 2 \end{pmatrix}$
D. $\begin{pmatrix} 0 & 0 \\ 0 & 0 \end{pmatrix}$
Solution: $(A^2)_{11} = 1 \cdot 1 + 1 \cdot 1 = 2$, $(A^2)_{12} = 1 \cdot 1 + 1 \cdot 1 = 2$, $(A^2)_{21} = 1 \cdot 1 + 1 \cdot 1 = 2$, $(A^2)_{22} = 1 \cdot 1 + 1 \cdot 1 = 2$.
Q16 — Matrices & Operations · medium · theory
If $A + B = \begin{pmatrix} 3 & 5 \\ 2 & 4 \end{pmatrix}$ and $A - B = \begin{pmatrix} 1 & 1 \\ 0 & 2 \end{pmatrix}$, then $A = $
A. $\begin{pmatrix} 2 & 3 \\ 1 & 3 \end{pmatrix}$ ✓ Correct
B. $\begin{pmatrix} 2 & 3 \\ 1 & 2 \end{pmatrix}$
C. $\begin{pmatrix} 1 & 3 \\ 1 & 3 \end{pmatrix}$
D. $\begin{pmatrix} 2 & 2 \\ 1 & 3 \end{pmatrix}$
Solution: Adding the two equations: $(A + B) + (A - B) = 2A = \begin{pmatrix} 4 & 6 \\ 2 & 6 \end{pmatrix}$, so $A = \begin{pmatrix} 2 & 3 \\ 1 & 3 \end{pmatrix}$.
Q17 — Matrices & Operations · easy · theory
If $A = \begin{pmatrix} 2 & 3 \\ 1 & 2 \end{pmatrix}$, then $A + A^T = $
A. $\begin{pmatrix} 4 & 4 \\ 4 & 4 \end{pmatrix}$ ✓ Correct
B. $\begin{pmatrix} 4 & 3 \\ 1 & 4 \end{pmatrix}$
C. $\begin{pmatrix} 2 & 3 \\ 1 & 2 \end{pmatrix}$
D. $\begin{pmatrix} 4 & 2 \\ 2 & 4 \end{pmatrix}$
Solution: $A^T = \begin{pmatrix} 2 & 1 \\ 3 & 2 \end{pmatrix}$, so $A + A^T = \begin{pmatrix} 2+2 & 3+1 \\ 1+3 & 2+2 \end{pmatrix} = \begin{pmatrix} 4 & 4 \\ 4 & 4 \end{pmatrix}$.
Q18 — Matrices & Operations · easy · theory
If $A = \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}$ and $B = \begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix}$, then $BA = $
A. $\begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix}$ ✓ Correct
B. $\begin{pmatrix} 0 & 1 \\ -1 & 0 \end{pmatrix}$
C. $\begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}$
D. $\begin{pmatrix} -1 & 0 \\ 0 & -1 \end{pmatrix}$
Solution: Since $A$ is the identity matrix, $BA = B \cdot I = B = \begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix}$.
Q19 — Matrices & Operations · easy · theory
If $A = \begin{pmatrix} 1 & 2 & 3 \end{pmatrix}$ (a $1 \times 3$ matrix), then the order of $A^T$ is
A. $3 \times 1$ ✓ Correct
B. $1 \times 3$
C. $3 \times 3$
D. $1 \times 1$
Solution: The transpose of a $1 \times 3$ matrix (row vector) is a $3 \times 1$ matrix (column vector). $A^T = \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix}$.
Q20 — Matrices & Operations · easy · theory
If $A = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}$, then $3A = $
A. $\begin{pmatrix} 3 & 6 \\ 9 & 12 \end{pmatrix}$ ✓ Correct
B. $\begin{pmatrix} 3 & 2 \\ 3 & 4 \end{pmatrix}$
C. $\begin{pmatrix} 1 & 6 \\ 9 & 4 \end{pmatrix}$
D. $\begin{pmatrix} 3 & 2 \\ 3 & 12 \end{pmatrix}$
Solution: Scalar multiplication multiplies each element by the scalar: $3A = 3 \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix} = \begin{pmatrix} 3 & 6 \\ 9 & 12 \end{pmatrix}$.
Q21 — Matrices & Operations · medium · theory
For which of the following matrices is $AB = BA$?
A. $A = \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}$ and any $B$ ✓ Correct
B. $A = \begin{pmatrix} 1 & 1 \\ 0 & 1 \end{pmatrix}$ and $B = \begin{pmatrix} 2 & 0 \\ 1 & 1 \end{pmatrix}$
C. $A = \begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix}$ and $B = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}$
D. No matrices satisfy this property
Solution: The identity matrix commutes with any matrix of the same order: $IA = AI = A$. Other matrices generally do not commute.
Q22 — Matrices & Operations · hard · theory
If $A$ and $B$ are $2 \times 2$ matrices and $AB = 0$ (null matrix), does it follow that $A = 0$ or $B = 0$?
A. Not necessarily ✓ Correct
B. Yes, always
C. Only if $A$ is invertible
D. Only if $B$ is invertible
Solution: Counterexample: $A = \begin{pmatrix} 1 & 0 \\ 0 & 0 \end{pmatrix}$ and $B = \begin{pmatrix} 0 & 0 \\ 0 & 1 \end{pmatrix}$ give $AB = 0$ but neither matrix is zero. Matrices do not form an integral domain.
Q23 — Matrices & Operations · easy · theory
If $A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}$ and $A^T = A$, then the matrix must satisfy
A. $b = c$ ✓ Correct
B. $a = d$
C. $ad = bc$
D. $a + d = 0$
Solution: For a symmetric matrix ($A^T = A$), we require $\begin{pmatrix} a & b \\ c & d \end{pmatrix} = \begin{pmatrix} a & c \\ b & d \end{pmatrix}$. This means $b = c$. The diagonal elements $a$ and $d$ can be any values.
Q24 — Matrices & Operations · medium · theory
If $A = \begin{pmatrix} \cos\theta & \sin\theta \\ -\sin\theta & \cos\theta \end{pmatrix}$, then $A^T A = $
A. $\begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}$ ✓ Correct
B. $\begin{pmatrix} \cos^2\theta & 0 \\ 0 & \sin^2\theta \end{pmatrix}$
C. $\begin{pmatrix} 0 & 0 \\ 0 & 0 \end{pmatrix}$
D. $A$
Solution: $A^T = \begin{pmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{pmatrix}$. Then $(A^T A)_{11} = \cos^2\theta + \sin^2\theta = 1$, $(A^T A)_{12} = -\cos\theta \sin\theta + \sin\theta \cos\theta = 0$, $(A^T A)_{21} = \sin\theta \cos\theta - \cos\theta \sin\theta = 0$, $(A^T A)_{22} = \sin^2\theta + \cos^2\theta = 1$.
Q25 — Matrices & Operations · medium · theory
If $A = \begin{pmatrix} 2 & 1 \\ 0 & 3 \end{pmatrix}$, what is the $(2,1)$ entry of $2A + 3A^T$?
A. $3$ ✓ Correct
B. $6$
C. $2$
D. $0$
Solution: $A^T = \begin{pmatrix} 2 & 0 \\ 1 & 3 \end{pmatrix}$. $2A = \begin{pmatrix} 4 & 2 \\ 0 & 6 \end{pmatrix}$, $3A^T = \begin{pmatrix} 6 & 0 \\ 3 & 9 \end{pmatrix}$. $2A + 3A^T = \begin{pmatrix} 10 & 2 \\ 3 & 15 \end{pmatrix}$. The $(2,1)$ entry is $3$.