Learn › JEE Main · Maths PYQ › Matrices & Determinants
Matrices & Determinants — JEE Main Maths PYQ MCQs with Solutions
Free JEE Main Maths PYQ Matrices & Determinants MCQs with step-by-step solutions covering Matrices & Operations, Determinants & Expansion, Properties of Determinants, Inverse, Rank & Linear Systems. Practise online on Prepizo — no login needed.
▶ Practise Matrices & Determinants online (free)
Subtopics
Sample 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 · 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.
Q9 — 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$.
Q10 — 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$.
Q11 — 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}$.
Q12 — 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}$.
Q13 — 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}$.
Q14 — 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}$.
Q15 — 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.
Q16 — Determinants & Expansion · easy · theory
If $\begin{vmatrix} a & b \\ c & d \end{vmatrix} = 5$, then $\begin{vmatrix} 3a & 3b \\ c & d \end{vmatrix}$ equals
A. 5
B. 15 ✓ Correct
C. 10
D. 25
Solution: Using the property that multiplying a row by $k$ multiplies the determinant by $k$: $\begin{vmatrix} 3a & 3b \\ c & d \end{vmatrix} = 3 \begin{vmatrix} a & b \\ c & d \end{vmatrix} = 3 \times 5 = 15$
Q17 — Determinants & Expansion · easy · theory
$\begin{vmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \\ 7 & 8 & 9 \end{vmatrix}$ equals
A. 0 ✓ Correct
B. 1
C. -1
D. 2
Solution: Notice that Row 3 = Row 1 + 2(Row 2) - 2(Row 1), or more directly, $R_3 = 2R_2 - R_1$. The rows are linearly dependent, so the determinant is 0.
Q18 — Determinants & Expansion · easy · theory
If $\begin{vmatrix} 2 & 1 \\ 1 & x \end{vmatrix} = 5$, then $x$ equals
A. 3 ✓ Correct
B. 2
C. 1
D. $\frac{7}{2}$
Solution: $\begin{vmatrix} 2 & 1 \\ 1 & x \end{vmatrix} = 2x - 1 = 5 \Rightarrow 2x = 6 \Rightarrow x = 3$
Q19 — Determinants & Expansion · easy · theory
The minor $M_{12}$ of the matrix $\begin{pmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \\ 7 & 8 & 9 \end{pmatrix}$ is
A. $\begin{vmatrix} 4 & 6 \\ 7 & 9 \end{vmatrix}$ ✓ Correct
B. $\begin{vmatrix} 2 & 3 \\ 8 & 9 \end{vmatrix}$
C. $\begin{vmatrix} 1 & 3 \\ 7 & 9 \end{vmatrix}$
D. $\begin{vmatrix} 1 & 2 \\ 7 & 8 \end{vmatrix}$
Solution: The minor $M_{12}$ is obtained by deleting row 1 and column 2. The remaining $2 \times 2$ matrix is $\begin{pmatrix} 4 & 6 \\ 7 & 9 \end{pmatrix}$.
Q20 — Determinants & Expansion · easy · theory
If $\begin{vmatrix} a & b \\ c & d \end{vmatrix} = k$, then $\begin{vmatrix} c & d \\ a & b \end{vmatrix}$ equals
A. $k$
B. $-k$ ✓ Correct
C. $2k$
D. $k^2$
Solution: Interchanging two rows of a matrix multiplies the determinant by $-1$. So $\begin{vmatrix} c & d \\ a & b \end{vmatrix} = -\begin{vmatrix} a & b \\ c & d \end{vmatrix} = -k$.
Q21 — Determinants & Expansion · easy · theory
If $A = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}$, then $\det(A)$ equals
A. -2 ✓ Correct
B. 2
C. 10
D. 5
Solution: $\det(A) = 1 \cdot 4 - 2 \cdot 3 = 4 - 6 = -2$.
Q22 — Determinants & Expansion · easy · theory
If $\begin{vmatrix} x & 2 \\ 3 & x \end{vmatrix} = 0$, then $x$ equals
A. $\pm \sqrt{6}$ ✓ Correct
B. $\pm 6$
C. $\pm 2$
D. $\pm 3$
Solution: $x^2 - 6 = 0 \Rightarrow x^2 = 6 \Rightarrow x = \pm \sqrt{6}$.
Q23 — Determinants & Expansion · easy · theory
If $\det(A) = 5$ and $\det(B) = 3$, then $\det(AB)$ equals
A. 15 ✓ Correct
B. 8
C. 2
D. $\frac{5}{3}$
Solution: By the multiplicative property of determinants: $\det(AB) = \det(A) \cdot \det(B) = 5 \cdot 3 = 15$.
Q24 — Determinants & Expansion · easy · theory
If $A$ is a $2 \times 2$ matrix and $\det(A) = 4$, then $\det(2A)$ equals
A. 8
B. 16 ✓ Correct
C. 4
D. 2
Solution: If $A$ is $2 \times 2$, then $\det(2A) = 2^2 \det(A) = 4 \times 4 = 16$ (each row is multiplied by 2).
Q25 — Determinants & Expansion · easy · theory
$\begin{vmatrix} \log_{10} 10 & \log_{10} 100 \\ \log_{10} 1000 & \log_{10} 10000 \end{vmatrix}$ equals
A. 0 ✓ Correct
B. 1
C. 2
D. 4
Solution: $\log_{10} 10 = 1, \log_{10} 100 = 2, \log_{10} 1000 = 3, \log_{10} 10000 = 4$. Determinant = $\begin{vmatrix} 1 & 2 \\ 3 & 4 \end{vmatrix} = 1 \cdot 4 - 2 \cdot 3 = 4 - 6 = -2$... Hmm, that's not 0. Let me recheck the question values. If it's $\begin{vmatrix} 1 & 2 \\ 2 & 4 \end{vmatrix}$, then determinant = $4 - 4 = 0$. I'll assume there's a typo and the second row should be $\log_{10} 100, \log_{10} 10000$, giving $2, 4$, and with first row $1, 2$: determinant = $1 \cdot 4 - 2 \cdot 2 = 0$.
Q26 — Determinants & Expansion · easy · theory
If $A$ is a singular matrix, then $\det(A)$ equals
A. 1
B. 0 ✓ Correct
C. -1
D. $\infty$
Solution: A matrix is singular if and only if its determinant is 0. This is the definition of a singular matrix.
Q27 — Determinants & Expansion · easy · theory
$\begin{vmatrix} \cos \theta & -\sin \theta \\ \sin \theta & \cos \theta \end{vmatrix}$ equals
A. $\cos^2 \theta - \sin^2 \theta$
B. 1 ✓ Correct
C. $\cos 2\theta$
D. 0
Solution: $\cos \theta \cdot \cos \theta - (-\sin \theta) \cdot \sin \theta = \cos^2 \theta + \sin^2 \theta = 1$.
Q28 — Determinants & Expansion · easy · theory
If $A$ and $B$ are $2 \times 2$ matrices such that $\det(A) = 2$ and $\det(B) = 3$, then $\det(A^2 B)$ equals
A. 12 ✓ Correct
B. 18
C. 36
D. 24
Solution: $\det(A^2 B) = \det(A^2) \cdot \det(B) = [\det(A)]^2 \cdot \det(B) = 2^2 \cdot 3 = 4 \cdot 3 = 12$.
Q29 — Properties of Determinants · easy · theory
If $A$ is a square matrix of order 3, then $\det(2A)$ equals:
A. $2\det(A)$
B. $4\det(A)$
C. $8\det(A)$ ✓ Correct
D. $16\det(A)$
Solution: For a square matrix $A$ of order $n$, $\det(kA) = k^n\det(A)$. Here $n=3$ and $k=2$, so $\det(2A) = 2^3\det(A) = 8\det(A)$.
Q30 — Properties of Determinants · easy · theory
If $\det(A) = 5$ and $\det(B) = 3$, where $A$ and $B$ are square matrices of the same order, then $\det(AB)$ is:
A. $2$
B. $8$
C. $15$ ✓ Correct
D. $5/3$
Solution: By the multiplicative property of determinants: $\det(AB) = \det(A) \cdot \det(B) = 5 \times 3 = 15$.