Inverse, Rank & Linear Systems — JEE Main Maths PYQ MCQs with Solutions
Free JEE Main Maths PYQ Inverse, Rank & Linear Systems MCQs with step-by-step solutions (22 questions). Part of Matrices & Determinants. Practise online on Prepizo — no login needed.
▶ Practise Inverse, Rank & Linear Systems online (free)
Questions with solutions
Q1 — Inverse, Rank & Linear Systems · easy · theory
If $A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}$, then the inverse of matrix $A$ is
A. $\begin{bmatrix} -2 & 1 \\ 3/2 & -1/2 \end{bmatrix}$ ✓ Correct
B. $\begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}$
C. $\begin{bmatrix} 4 & -2 \\ -3 & 1 \end{bmatrix}$
D. The matrix is singular and has no inverse
Solution: For a 2×2 matrix $A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}$, the inverse is $A^{-1} = \frac{1}{ad-bc} \begin{bmatrix} d & -b \\ -c & a \end{bmatrix}$. Here, $\det(A) = 1(4) - 2(3) = -2$. Therefore, $A^{-1} = \frac{1}{-2} \begin{bmatrix} 4 & -2 \\ -3 & 1 \end{bmatrix} = \begin{bmatrix} -2 & 1 \\ 3/2 & -1/2 \end{bmatrix}$.
Q2 — Inverse, Rank & Linear Systems · medium · theory
For the matrix $A = \begin{bmatrix} 2 & 3 & 1 \\ 1 & 0 & 2 \\ 3 & 3 & 3 \end{bmatrix}$, find $\det(A)$
A. 9
B. 0 ✓ Correct
C. 3
D. -9
Solution: Notice that $R_3 = R_1 + R_2$ (component-wise: $3=2+1$, $3=3+0$, $3=1+2$). Since one row is a linear combination of others, the matrix is singular. Alternatively, expanding: $\det(A) = 2(0-6) - 3(3-6) + 1(3-0) = -12 + 9 + 3 = 0$.
Q3 — Inverse, Rank & Linear Systems · easy · theory
If $A = \begin{bmatrix} 1 & -1 \\ 2 & 3 \end{bmatrix}$ and $A^{-1} = \frac{1}{k} \begin{bmatrix} 3 & 1 \\ -2 & 1 \end{bmatrix}$, find $k$
A. 5 ✓ Correct
B. -5
C. 1
D. 10
Solution: $\det(A) = 1(3) - (-1)(2) = 3 + 2 = 5 \neq 0$. Using the 2×2 inverse formula: $A^{-1} = \frac{1}{5} \begin{bmatrix} 3 & 1 \\ -2 & 1 \end{bmatrix}$. Comparing, $k = 5$.
Q4 — Inverse, Rank & Linear Systems · easy · theory
The rank of the matrix $A = \begin{bmatrix} 1 & 2 & 3 \\ 2 & 4 & 6 \\ 3 & 6 & 9 \end{bmatrix}$ is
A. 1 ✓ Correct
B. 2
C. 3
D. 0
Solution: Every row is a multiple of the first row: $R_2 = 2R_1$, $R_3 = 3R_1$. Thus only one row is linearly independent, giving rank = 1.
Q5 — Inverse, Rank & Linear Systems · medium · theory
Find the rank of $A = \begin{bmatrix} 1 & 2 & 3 \\ 2 & 3 & 4 \\ 3 & 5 & 7 \end{bmatrix}$
A. 1
B. 2 ✓ Correct
C. 3
D. 0
Solution: Row reducing: $R_2 - 2R_1 \to R_2$ and $R_3 - 3R_1 \to R_3$ gives $\begin{bmatrix} 1 & 2 & 3 \\ 0 & -1 & -2 \\ 0 & -1 & -2 \end{bmatrix}$. Then $R_3 - R_2 \to R_3$ gives $\begin{bmatrix} 1 & 2 & 3 \\ 0 & -1 & -2 \\ 0 & 0 & 0 \end{bmatrix}$. Two non-zero rows remain, so rank = 2.
Q6 — Inverse, Rank & Linear Systems · easy · theory
The system of equations $\begin{cases} x + 2y = 3 \\ 2x + 4y = 6 \end{cases}$ is
A. Consistent with unique solution
B. Consistent with infinitely many solutions ✓ Correct
C. Inconsistent
D. None of the above
Solution: The second equation is exactly 2 times the first: $2(x+2y) = 2(3)$. Both represent the same line in the $xy$-plane, so there are infinitely many solutions (all points on the line $x + 2y = 3$).
Q7 — Inverse, Rank & Linear Systems · medium · theory
The system $\begin{cases} x + 2y + 3z = 5 \\ 2x + 4y + 6z = 10 \\ 3x + 6y + 9z = 15 \end{cases}$ has
A. No solution
B. Unique solution
C. Infinitely many solutions ✓ Correct
D. Exactly two solutions
Solution: All three equations represent the same plane (equation 2 = $2 \times$ equation 1, equation 3 = $3 \times$ equation 1). The rank of the coefficient matrix equals the rank of the augmented matrix (both 1), and both are less than 3 (number of variables). This indicates a dependent system with infinitely many solutions.
Q8 — Inverse, Rank & Linear Systems · medium · theory
If $AX = B$ where $A = \begin{bmatrix} 2 & 3 \\ 4 & 5 \end{bmatrix}$ and $B = \begin{bmatrix} 1 \\ 2 \end{bmatrix}$, then $X = $
A. $\begin{bmatrix} 1/2 \\ 0 \end{bmatrix}$ ✓ Correct
B. $\begin{bmatrix} 1 \\ 1 \end{bmatrix}$
C. $\begin{bmatrix} 0 \\ 1/3 \end{bmatrix}$
D. $\begin{bmatrix} -1/2 \\ 1 \end{bmatrix}$
Solution: Since $\det(A) = 2(5) - 3(4) = -2 \neq 0$, $A$ is invertible. $X = A^{-1}B$. Computing $A^{-1} = \frac{1}{-2}\begin{bmatrix} 5 & -3 \\ -4 & 2 \end{bmatrix}$. Thus $X = \frac{1}{-2}\begin{bmatrix} 5 & -3 \\ -4 & 2 \end{bmatrix} \begin{bmatrix} 1 \\ 2 \end{bmatrix} = \frac{1}{-2}\begin{bmatrix} -1 \\ 0 \end{bmatrix} = \begin{bmatrix} 1/2 \\ 0 \end{bmatrix}$.
Q9 — Inverse, Rank & Linear Systems · easy · theory
For the upper triangular matrix $A = \begin{bmatrix} 1 & 1 & 1 \\ 0 & 2 & 3 \\ 0 & 0 & 4 \end{bmatrix}$, $\det(A) = $
A. 2
B. 4
C. 8 ✓ Correct
D. 0
Solution: For a triangular matrix (upper or lower), the determinant is the product of diagonal elements: $\det(A) = 1 \times 2 \times 4 = 8$.
Q10 — Inverse, Rank & Linear Systems · easy · theory
For what value of $k$ does the matrix $\begin{bmatrix} 2 & k \\ 3 & 6 \end{bmatrix}$ become singular?
A. 2
B. 3
C. 4 ✓ Correct
D. 6
Solution: A matrix is singular when $\det = 0$. Here, $\det = 2(6) - k(3) = 12 - 3k$. Setting this to zero: $12 - 3k = 0 \Rightarrow k = 4$.
Q11 — Inverse, Rank & Linear Systems · medium · theory
The cofactor of element $a_{22}$ in $\begin{bmatrix} 2 & 1 & 0 \\ 1 & 5 & 2 \\ 3 & 4 & -3 \end{bmatrix}$ is
A. -6 ✓ Correct
B. 6
C. -12
D. 12
Solution: The cofactor $C_{22} = (-1)^{2+2} M_{22}$, where $M_{22}$ is the minor. Deleting row 2 and column 2 gives $M_{22} = \begin{vmatrix} 2 & 0 \\ 3 & -3 \end{vmatrix} = 2(-3) - 0(3) = -6$. Since $(-1)^4 = 1$, we have $C_{22} = 1 \times (-6) = -6$.
Q12 — Inverse, Rank & Linear Systems · medium · theory
If $A$ is a $3 \times 3$ matrix with $\det(A) = 5$, then $\det(2A) = $
A. 5
B. 10
C. 40 ✓ Correct
D. 20
Solution: For an $n \times n$ matrix, $\det(kA) = k^n \det(A)$. Here, $n = 3$ and $k = 2$, so $\det(2A) = 2^3 \cdot 5 = 8 \times 5 = 40$.
Q13 — Inverse, Rank & Linear Systems · easy · theory
If $A$ and $B$ are $2 \times 2$ matrices with $\det(A) = 3$ and $\det(B) = 4$, then $\det(AB) = $
A. 1
B. 7
C. 12 ✓ Correct
D. 64
Solution: By the multiplicative property of determinants: $\det(AB) = \det(A) \times \det(B) = 3 \times 4 = 12$.
Q14 — Inverse, Rank & Linear Systems · easy · theory
If $A = \begin{bmatrix} 3 & 2 \\ 1 & 4 \end{bmatrix}$, then $(A^{-1})^{-1} = $
A. $\begin{bmatrix} 3 & 2 \\ 1 & 4 \end{bmatrix}$ ✓ Correct
B. $\begin{bmatrix} 4 & -2 \\ -1 & 3 \end{bmatrix}$
C. $\begin{bmatrix} 1/3 & 1/2 \\ 1 & 1/4 \end{bmatrix}$
D. $-A$
Solution: By definition, $(A^{-1})^{-1} = A$. This property holds for any invertible matrix.
Q15 — Inverse, Rank & Linear Systems · medium · theory
A $3 \times 3$ matrix $A$ has rank 2. Then the system $AX = 0$ (homogeneous) has
A. No solution
B. Unique solution (trivial)
C. Infinitely many solutions ✓ Correct
D. Exactly two solutions
Solution: For a homogeneous system $AX = 0$, there is always at least the trivial solution $X = 0$. The number of free variables = (number of columns) - (rank of $A$) = $3 - 2 = 1$. Since there is at least one free variable, there are infinitely many solutions.
Q16 — Inverse, Rank & Linear Systems · medium · theory
For the matrix equation $AX = B$, the system has a unique solution if and only if
A. $A$ is singular
B. $A$ is non-singular and square ✓ Correct
C. $B = 0$
D. Rank of $A$ = rank of $B$
Solution: For $AX = B$ where $A$ is an $m \times n$ matrix: a unique solution exists if and only if $A$ is square (i.e., $m = n$) and non-singular (i.e., $\det(A) \neq 0$). In this case, $X = A^{-1}B$ is the unique solution.
Q17 — Inverse, Rank & Linear Systems · medium · theory
If $A = \begin{bmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{bmatrix}$, then $A^{-1} = $
A. $A$
B. $A^T$ ✓ Correct
C. $-A$
D. $2A$
Solution: $\det(A) = \cos^2\theta + \sin^2\theta = 1 \neq 0$. Using the 2×2 formula: $A^{-1} = \begin{bmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{bmatrix}^T = \begin{bmatrix} \cos\theta & \sin\theta \\ -\sin\theta & \cos\theta \end{bmatrix} = A^T$. (This is because $A$ is a rotation matrix, which is orthogonal.)
Q18 — Inverse, Rank & Linear Systems · easy · theory
The rank of the matrix $\begin{bmatrix} 1 & 2 & 3 & 4 \\ 2 & 4 & 6 & 8 \\ 1 & 2 & 3 & 4 \end{bmatrix}$ is
A. 1 ✓ Correct
B. 2
C. 3
D. 4
Solution: $R_2 = 2R_1$ and $R_3 = R_1$, so all rows are scalar multiples of the first row. Only one row is linearly independent, hence rank = 1.
Q19 — Inverse, Rank & Linear Systems · medium · theory
If $A = \begin{bmatrix} 1 & 0 \\ 2 & 3 \end{bmatrix}$ and $A^{-1} = \begin{bmatrix} a & b \\ c & d \end{bmatrix}$, then $a + d = $
A. 4/3 ✓ Correct
B. 1
C. 2
D. 0
Solution: $\det(A) = 3 - 0 = 3$. $A^{-1} = \frac{1}{3}\begin{bmatrix} 3 & 0 \\ -2 & 1 \end{bmatrix} = \begin{bmatrix} 1 & 0 \\ -2/3 & 1/3 \end{bmatrix}$. So $a = 1$, $d = 1/3$, giving $a + d = 4/3$.
Q20 — Inverse, Rank & Linear Systems · medium · theory
The system $\begin{cases} x + 2y + 3z = 1 \\ 2x + 4y + 6z = 2 \\ x + 2y + 3z = 5 \end{cases}$ is
A. Consistent with unique solution
B. Consistent with infinitely many solutions
C. Inconsistent ✓ Correct
D. None of the above
Solution: Equations 1 and 3 are identical on the left ($x + 2y + 3z$) but have different constants (1 vs 5). This is a contradiction. The system is inconsistent and has no solution.
Q21 — Inverse, Rank & Linear Systems · medium · theory
If $A$ is an invertible matrix, then $(A^T)^{-1} = $
A. $A^T$
B. $(A^{-1})^T$ ✓ Correct
C. $A$
D. $A^{-1}$
Solution: This is a standard property: $(A^T)^{-1} = (A^{-1})^T$. To verify: $A^T (A^{-1})^T = (A^{-1} A)^T = I^T = I$, confirming the result.
Q22 — Inverse, Rank & Linear Systems · easy · theory
If $\begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} \begin{bmatrix} x \\ y \end{bmatrix} = \begin{bmatrix} 5 \\ 11 \end{bmatrix}$, then $x + y = $
A. 1
B. 2
C. 3 ✓ Correct
D. 4
Solution: This gives the system $x + 2y = 5$ and $3x + 4y = 11$. Multiply the first equation by 3: $3x + 6y = 15$. Subtract the second equation: $(3x + 6y) - (3x + 4y) = 15 - 11 \Rightarrow 2y = 4 \Rightarrow y = 2$. Substituting back: $x + 2(2) = 5 \Rightarrow x = 1$. Therefore, $x + y = 1 + 2 = 3$.