Sarkari RiseLogin

Matrices Determinants Questions for AGNIVEER VAYU

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

▶ Start free — AGNIVEER VAYU mockAll AGNIVEER VAYU resourcesAlready a user? Sign in →
Why this topic matters · 8 min read
Matrices and determinants appear in 2-3 questions in Agniveer Vayu maths section, usually testing basic operations (addition, multiplication), properties of determinants, and solving systems of linear equations using Cramer's rule. Weightage is moderate but conceptually important for physics applications in aerodynamics and engineering. Focus on quick calculation tricks and property-based shortcuts rather than lengthy manual computation.

Matrix Basics and Operations

A matrix is a rectangular array of numbers arranged in rows and columns. Think of it like a data table. In Agniveer Vayu, you'll mostly deal with 2x2 and 3x3 matrices. Matrix addition and subtraction are element-wise (add corresponding positions). Matrix multiplication is NOT element-wise — the number of columns in the first matrix must equal the number of rows in the second. This is critical: AB is not always equal to BA (non-commutative). Transpose of a matrix (denoted A^T) flips rows and columns.

  • Addition/Subtraction: Add or subtract corresponding elements only if matrices have same dimensions
  • Multiplication: For A(m×n) × B(n×p), result is m×p; each element is dot product of row and column
  • Transpose A^T: Row i becomes column i; (A^T)^T = A
  • Identity matrix I: All diagonal elements = 1, rest = 0; A×I = A
  • Null matrix: All elements = 0; A + 0 = A
  • Commutative only for addition; multiplication is NOT commutative in general
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; essential for solving systems
Transpose Property
(AB)^T = B^T × A^T
When: Simplifying expressions involving transposes
Worked examples

If A = [1 2; 3 4] and B = [5 6; 7 8], then AB = [1×5+2×7 1×6+2×8; 3×5+4×7 3×6+4×8] = [19 22; 43 50]

A^T swaps rows and columns: if A = [1 2 3; 4 5 6], then A^T = [1 4; 2 5; 3 6]

Determinant: Definition and Calculation

The determinant is a single number calculated from a square matrix. It tells you if a matrix is invertible (non-zero determinant = invertible). For a 2x2 matrix [a b; c d], determinant = ad - bc. For 3x3, use the rule of Sarrus or cofactor expansion. Determinant has geometric meaning: it represents the scaling factor of area/volume under the linear transformation. In Agniveer Vayu, determinant questions usually ask you to find det(A), check if a matrix is singular, or use it in Cramer's rule.

  • 2×2 determinant: ad - bc (diagonal product minus off-diagonal product)
  • 3×3: Expand along any row or column using cofactors; rule of Sarrus is visual shortcut
  • det(A) = 0 means matrix is singular (non-invertible, no unique solution to Ax=b)
  • det(AB) = det(A) × det(B); det(A^T) = det(A)
  • Swapping two rows/columns changes sign of determinant
  • Multiplying a row by k multiplies determinant by k
Key formulas
2×2 Determinant
det(A) = ad - bc for A = [a b; c d]
When: Quick calculation for 2x2 matrices; most common in Agniveer
3×3 Determinant (Cofactor Expansion)
det(A) = a(ei-fh) - b(di-fg) + c(dh-eg) for A = [a b c; d e f; g h i]
When: 3x3 matrix determinant; expand along first row
Determinant Property
det(AB) = det(A) × det(B)
When: Simplifying determinant of product without computing product
Worked examples

A = [2 3; 1 4]: det(A) = 2×4 - 3×1 = 8 - 3 = 5 (invertible)

B = [1 2; 2 4]: det(B) = 1×4 - 2×2 = 0 (singular, not invertible)

Solving Linear Systems Using Cramer's Rule

Cramer's rule is a method to solve a system of linear equations using determinants. For a system Ax = b (where A is square and invertible), each variable x_i = det(A_i) / det(A), where A_i is matrix A with column i replaced by vector b. This is faster than Gaussian elimination for small systems (2x2, 3x3) and appears frequently in Agniveer exams. The key condition: det(A) must not be zero.

  • Applicable only when det(A) ≠ 0 (unique solution exists)
  • For each variable, replace corresponding column of A with b vector, compute determinant, divide by det(A)
  • Faster than elimination for 2x2 and 3x3 systems
  • If det(A) = 0, system either has no solution or infinite solutions (not applicable)
  • Common in physics problems: solving for currents, forces, or velocities
Key formulas
Cramer's Rule
x_i = det(A_i) / det(A), where A_i = A with column i replaced by b
When: Solving Ax = b for small square systems with det(A) ≠ 0
Worked examples

System: 2x + 3y = 8, x + 4y = 7. A = [2 3; 1 4], b = [8; 7]. det(A) = 5. x = det([8 3; 7 4])/5 = (32-21)/5 = 11/5. y = det([2 8; 1 7])/5 = (14-8)/5 = 6/5.

System: x + 2y + z = 4, 2x + y + z = 5, x + y + 2z = 5. Compute det(A), then det(A_1), det(A_2), det(A_3) by column replacement.

Matrix Inverse and Properties

The inverse of a matrix A (denoted A^-1) is the matrix such that A × A^-1 = I (identity). Not all matrices have inverses; only square matrices with non-zero determinant are invertible. For a 2x2 matrix [a b; c d], the inverse is (1/det) × [d -b; -c a]. Inverse is useful for solving Ax = b directly: x = A^-1 × b. In Agniveer, you may be asked to find the inverse or verify if a matrix is invertible.

  • A^-1 exists only if det(A) ≠ 0 (matrix is non-singular)
  • For 2×2: A^-1 = (1/(ad-bc)) × [d -b; -c a]
  • Property: (A^-1)^-1 = A; (AB)^-1 = B^-1 × A^-1
  • Solving Ax = b: x = A^-1 × b (if A is invertible)
  • Inverse is unique if it exists
Key formulas
2×2 Matrix Inverse
A^-1 = (1/(ad-bc)) × [d -b; -c a] for A = [a b; c d]
When: Finding inverse of 2x2 matrix; used in solving systems
Worked examples

A = [2 1; 1 1]: det(A) = 2-1 = 1. A^-1 = [1 -1; -1 2].

Verify: A × A^-1 = [2 1; 1 1] × [1 -1; -1 2] = [2-1 -2+2; 1-1 -1+2] = [1 0; 0 1] = I.

Special Matrices and Properties

Certain matrices have special properties that simplify calculations. A symmetric matrix equals its transpose (A = A^T). An orthogonal matrix satisfies A^T × A = I (columns are orthonormal). A diagonal matrix has non-zero elements only on the diagonal. These properties are tested indirectly in Agniveer through determinant and inverse questions. Knowing these shortcuts saves time.

  • Symmetric matrix: A^T = A; determinant is real
  • Diagonal matrix: Only diagonal elements non-zero; det = product of diagonal elements
  • Orthogonal matrix: A^T = A^-1; det = ±1
  • Upper/Lower triangular: det = product of diagonal elements
  • Skew-symmetric: A^T = -A; det = 0 if odd-order (always singular)
⚠ Common mistakes to avoid
  • Assuming AB = BA: Matrix multiplication is NOT commutative. Always check order carefully.
  • Forgetting to check if det(A) = 0 before applying Cramer's rule: If determinant is zero, the rule fails and system has no unique solution.
  • Computing 3×3 determinant incorrectly: Mixing up signs in cofactor expansion or using rule of Sarrus wrong. Practice the pattern: +a, -b, +c for first row.
  • Confusing matrix inverse with element-wise reciprocal: A^-1 is NOT [1/a 1/b; 1/c 1/d]. Use the formula with determinant.
  • Mishandling transpose in products: (AB)^T = B^T × A^T, NOT A^T × B^T. The order reverses.
  • Careless arithmetic in row/column operations: One sign error or multiplication mistake ruins the entire determinant calculation.
🧠 Memory aids
  • 2×2 Det = AD - BC: Think 'Across Diagonal minus Back-Diagonal' (A and D are on main diagonal, B and C are off-diagonal).
  • Cramer's Rule = Replace and Divide: Replace the target column with b, compute det, divide by det(A).
  • Inverse Formula = Swap and Negate: For 2×2, swap diagonal, negate off-diagonal, divide by determinant.
  • Singular Matrix = Stuck: det = 0 means no inverse, no unique solution to Ax=b (matrix is 'stuck', non-invertible).
🎯 AGNIVEER VAYU exam tips
  • Agniveer Vayu typically asks 1-2 questions on 2×2 determinants and 1 on 3×3 or Cramer's rule. Focus on speed and accuracy, not complex theory.
  • Determinant questions often appear as 'Find det(A)' or 'Is matrix invertible?' — always check if det ≠ 0 first.
  • Cramer's rule questions disguise themselves as 'solve the system' — recognize when a system is in Ax=b form and use the rule instead of elimination.
  • Watch for trick questions: A singular matrix (det=0) cannot be inverted; don't waste time trying. Recognize and move on.
  • Time-saving: For 2×2 matrices, memorize the inverse formula. For 3×3 determinants, expand along the row/column with most zeros.
  • Recent papers show preference for 2×2 systems solved via Cramer's rule over 3×3. Prioritize speed on 2×2.

Sample questions

Q1 · hard · AI-verified
If A is a 3×3 matrix with |A| = 5, then |adj(A)| = ?
  1. 125
  2. 25
  3. 5
  4. 15
Q2 · medium · AI-verified
If A is a square matrix such that A² = A, then det(A) is:
  1. Only 0
  2. 0 or 1
  3. −1 or 1
  4. Only 1
Q3 · medium · AI-verified
If A = [[1, 2], [3, 4]], then A + Aᵀ is equal to:
  1. [[1, 5], [5, 4]]
  2. [[2, 1], [1, 8]]
  3. [[2, 5], [1, 8]]
  4. [[2, 5], [5, 8]]
Q4 · hard · AI-verified
If the matrix A = [[2, λ], [3, 6]] is singular, then λ = ?
  1. 3
  2. 6
  3. 4
  4. −4
Q5 · easy · AI-verified
If A is a singular matrix, then |A| is equal to:
  1. 1
  2. 0
  3. −1
💡 Want answers + explanations + 13+ more Matrices Determinants questions? Sign up free →
⭐ Recommended for AGNIVEER VAYU 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 VAYU topics

Oscillations and Waves
20+ practice questions
Algebra Complex Numbers Class 11
20+ practice questions
Para Jumbles
20+ practice questions
Laws of Motion and Friction
20+ practice questions
Gravitation and Satellites
20+ practice questions
Properties of Solids and Fluids
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