Sarkari RiseLogin

Matrices and Determinants Questions for AGNIVEER NAVY

Free, AI-curated practice for the Matrices and Determinants section of AGNIVEER NAVY. We have 19+ verified questions in this bank. Below: 5 sample questions. Sign up free to unlock unlimited practice + AI explanations + per-topic analytics.

▶ Start free — AGNIVEER NAVY mockAll AGNIVEER NAVY resourcesAlready a user? Sign in →
Why this topic matters · 8 min read
Matrices and determinants appear in 2-3 questions per Agniveer Navy SSR/MR paper, typically in the Maths section. Questions focus on matrix operations (addition, multiplication, transpose), finding determinants of 2x2 and 3x3 matrices, and solving systems of linear equations using Cramer's rule. Expect straightforward computational problems rather than abstract theory. Weightage: ~5-8% of Maths paper.

Matrix Basics and Operations

A matrix is a rectangular array of numbers arranged in rows and columns. Think of it like a table of data. The order (or size) of a matrix is written as m x n, where m is rows and n is columns. In Agniveer Navy exams, you'll mostly work with 2x2 and 3x3 matrices. Matrix addition and subtraction are element-wise (add/subtract corresponding entries). Matrix multiplication is trickier: the number of columns in the first matrix must equal the number of rows in the second. The result's element at position (i,j) is the dot product of row i from the first matrix and column j from the second matrix.

  • Order of matrix: m rows x n columns
  • Addition/subtraction: add corresponding elements only if matrices have same order
  • Multiplication: (m x n) times (n x p) gives (m x p) result
  • Multiplication is NOT commutative: AB ≠ BA in general
  • Transpose (A^T): swap rows and columns; (A^T)^T = A
  • Identity matrix I: diagonal of 1s, rest 0s; AI = IA = A
Key formulas
Matrix Multiplication Element
C[i,j] = sum of A[i,k] * B[k,j] for k=1 to n
When: Computing product of two matrices
Transpose Property
(AB)^T = B^T * A^T
When: Simplifying transpose of a product
Worked examples

If A = [[1,2],[3,4]] and B = [[5,6],[7,8]], then AB[1,1] = 1*5 + 2*7 = 19

Transpose of [[1,2,3],[4,5,6]] is [[1,4],[2,5],[3,6]]

Determinants of 2x2 and 3x3 Matrices

A determinant is a single number calculated from a square matrix. For a 2x2 matrix, it's straightforward: ad - bc. For 3x3, use the expansion method along any row or column (usually the first row or a row with zeros). The determinant tells you if a matrix is invertible (non-zero determinant) and is crucial for solving systems of equations using Cramer's rule. In Agniveer Navy papers, expect direct calculation of determinants and identifying singular (non-invertible) matrices.

  • 2x2 determinant: |a b; c d| = ad - bc
  • 3x3 determinant: expand along row 1 as a(ei-fh) - b(di-fg) + c(dh-eg)
  • If det = 0, matrix is singular (non-invertible)
  • Swapping two rows/columns changes sign of determinant
  • Multiplying a row by k multiplies determinant by k
  • det(AB) = det(A) * det(B)
Key formulas
2x2 Determinant
|a b; c d| = ad - bc
When: Finding determinant of 2x2 matrix
3x3 Determinant (Row 1 Expansion)
det(A) = a11(a22*a33 - a23*a32) - a12(a21*a33 - a23*a31) + a13(a21*a32 - a22*a31)
When: Finding determinant of 3x3 matrix
Worked examples

For [[2,3],[4,5]], det = 2*5 - 3*4 = 10 - 12 = -2

For [[1,0,2],[0,3,0],[4,0,5]], expanding row 1: 1(3*5-0*0) - 0 + 2(0*0-3*4) = 15 - 24 = -9

Solving Systems Using Cramer's Rule

Cramer's rule is a method to solve a system of linear equations using determinants. If you have n equations in n unknowns, write the coefficient matrix A and constant vector b. Each unknown x_i equals det(A_i) / det(A), where A_i is A with column i replaced by b. This method is fast for 2x2 and 3x3 systems and appears frequently in Agniveer Navy papers. Only use if det(A) ≠ 0 (unique solution exists).

  • Write system as AX = B where A is coefficient matrix, X is unknowns, B is constants
  • x_i = det(A_i) / det(A), where A_i has column i replaced by B
  • Works only if det(A) ≠ 0
  • Faster than elimination for small systems
  • If det(A) = 0 and det(A_i) ≠ 0, system has no solution
  • If det(A) = 0 and all det(A_i) = 0, system has infinite solutions
Key formulas
Cramer's Rule
x_i = det(A_i) / det(A)
When: Solving system of n equations in n unknowns
Worked examples

System: 2x + 3y = 8, 4x + 5y = 14. A = [[2,3],[4,5]], det(A) = -2. A_x = [[8,3],[14,5]], det(A_x) = 40-42 = -2, so x = -2/-2 = 1. A_y = [[2,8],[4,14]], det(A_y) = 28-32 = -4, so y = -4/-2 = 2.

Verify: 2(1) + 3(2) = 8 ✓, 4(1) + 5(2) = 14 ✓

Inverse of a Matrix

The inverse of a square matrix A, written A^(-1), is the matrix such that AA^(-1) = A^(-1)A = I (identity). For a 2x2 matrix [[a,b],[c,d]], the inverse is (1/det) * [[d,-b],[-c,a]]. For 3x3, use the adjugate method: A^(-1) = (1/det(A)) * adj(A). The adjugate is the transpose of the cofactor matrix. In Agniveer Navy, you may be asked to find the inverse or use it to solve AX = B as X = A^(-1)B.

  • A^(-1) exists only if det(A) ≠ 0
  • For 2x2: A^(-1) = (1/(ad-bc)) * [[d,-b],[-c,a]]
  • For 3x3: A^(-1) = (1/det(A)) * adj(A)
  • Cofactor of element a_ij is (-1)^(i+j) times minor of a_ij
  • Adjugate = transpose of cofactor matrix
  • Solving AX = B: X = A^(-1)B (if A is invertible)
Key formulas
2x2 Matrix Inverse
[[a,b],[c,d]]^(-1) = (1/(ad-bc)) * [[d,-b],[-c,a]]
When: Finding inverse of 2x2 matrix
General Inverse Formula
A^(-1) = (1/det(A)) * adj(A)
When: Finding inverse of any square matrix
Worked examples

For [[2,1],[5,3]], det = 6-5 = 1, so A^(-1) = [[3,-1],[-5,2]]

Verify: [[2,1],[5,3]] * [[3,-1],[-5,2]] = [[6-5,-2+2],[15-15,-5+6]] = [[1,0],[0,1]] ✓

⚠ Common mistakes to avoid
  • Confusing matrix multiplication order: AB ≠ BA. Always check which matrix is on left and right.
  • Forgetting the sign pattern in 3x3 determinant expansion: +, -, +, -, ... alternates. Many aspirants drop the minus signs.
  • Applying Cramer's rule when det(A) = 0. This gives division by zero. Always check det(A) ≠ 0 first.
  • Calculating cofactors incorrectly: forgetting the (-1)^(i+j) sign or computing the minor wrong.
  • Mixing up transpose and inverse. A^T is just flipping rows/columns; A^(-1) is a completely different calculation.
🧠 Memory aids
  • 2x2 Det: 'Cross multiply, subtract': ad - bc (top-left times bottom-right minus top-right times bottom-left).
  • 3x3 Det: 'Expand, multiply, alternate signs' — pick a row, multiply each element by its minor, alternate + and -.
  • Cramer's Rule: 'Replace column, divide determinants' — replace the column of the unknown you want with the constant vector, then divide by det(A).
  • Inverse: 'Flip, negate, divide' — for 2x2, swap diagonal, negate off-diagonal, divide by determinant.
🎯 AGNIVEER NAVY exam tips
  • Agniveer Navy typically asks 1-2 straightforward determinant calculations (2x2 or 3x3) worth 2-4 marks total.
  • Cramer's rule questions are common: given a system of 2-3 equations, solve using determinants. Practice speed here.
  • Matrix multiplication questions often appear with 2x2 or 2x3 matrices. Watch the order and dimensions.
  • Inverse and adjugate questions are less frequent but do appear. If asked, 3x3 inverse is usually the focus.
  • Time management: determinant and Cramer's rule questions should take 3-5 minutes each. If you're slower, drill the 2x2 formula repeatedly until it's automatic.

Sample questions

Q1 · easy · AI-verified
If A is a matrix of order 3×4, then the order of its transpose A^T is:
  1. 4×4
  2. 3×4
  3. 3×3
  4. 4×3
Q2 · hard · AI-verified
If A is a 3×3 matrix and |A| = 4, then |adj(A)| is equal to:
  1. 16
  2. 64
  3. 8
  4. 12
Q3 · hard · AI-verified
If the matrix [[k, 2], [3, k]] is singular, then the value(s) of k is/are:
  1. k = 2 or k = −2
  2. k = √6 or k = −√6
  3. k = 3 or k = −3
  4. k = 6 or k = −6
Q4 · medium · AI-verified
If A is a square matrix and A² = A, then A is called:
  1. Idempotent matrix
  2. Nilpotent matrix
  3. Involutory matrix
  4. Symmetric matrix
Q5 · medium · AI-verified
The transpose of matrix A = [[1, 2, 3], [4, 5, 6]] is:
  1. [[6, 5, 4], [3, 2, 1]]
  2. [[1, 4], [2, 5], [3, 6]]
  3. [[1, 2], [3, 4], [5, 6]]
  4. [[4, 5, 6], [1, 2, 3]]
💡 Want answers + explanations + 14+ more Matrices and Determinants questions? Sign up free →
⭐ Recommended for AGNIVEER NAVY aspirants

Full AI 6-Month

all your target exams · 6 months · unlimited mocks + AI
₹799~₹4.4/day
Sign up free, then unlockSee all plans →

More AGNIVEER NAVY topics

Differentiation Application of Derivatives
20+ practice questions
Limits Continuity Differentiability
20+ practice questions
Probability and Statistics Basic Class 12
20+ practice questions
Awards Honors Books Authors
20+ practice questions
Physics Class 12 Optics Wave and Ray
20+ practice questions
Physics Class 12 Mechanics and Rotational Motion
20+ practice questions

Free practice, AI explanations, 24 exams — all in one app

Daily 10-Q quiz · AI doubt solver in Hindi + English · adaptive mocks · 49,000+ practice questions (19,000+ verified PYQs).

Sign up freePricingTry Daily 10-Q