100% FREE
Updated: Mar 2026 Engineering Mathematics Linear Algebra
Matrices and Determinants
Comprehensive study notes on Matrices and Determinants for GATE CS preparation.
This chapter covers key concepts, formulas, and examples needed for your exam.
The study of matrices and determinants forms a cornerstone of linear algebra and is an indispensable tool in nearly every branch of engineering and computer science. Matrices provide a powerful and compact framework for representing and manipulating large sets of linear equations, which arise frequently when modeling complex systems. From representing transformations in computer graphics to encoding the structure of graphs in algorithm design, the applications of matrix theory are both vast and fundamental. A thorough understanding of matrix algebra is therefore not merely an academic exercise but a prerequisite for a deeper comprehension of advanced engineering concepts.
For the Graduate Aptitude Test in Engineering (GATE), proficiency in this chapter is of paramount importance. Questions related to matrix operations, the properties of determinants, and the computation of matrix inverses appear consistently and carry significant weight. Mastery of these topics is essential for solving problems directly related to linear algebra and also serves as a foundational skill for tackling more complex problems in areas such as differential equations, numerical methods, and optimization. In this chapter, we shall systematically develop the principles of matrix theory, focusing on the techniques and properties most relevant to the GATE examination.
---
Chapter Contents
| # | Topic | What You'll Learn | |---|-------|-------------------| | 1 | Matrix Operations | Fundamental algebraic manipulations of matrices. | | 2 | Determinants | Calculating the scalar value of matrices. | | 3 | Matrix Inverse | Finding the multiplicative inverse of matrices. |
---
Learning Objectives
❗By the End of This Chapter
After completing this chapter, you will be able to:
Perform fundamental matrix operations, including addition, scalar multiplication, and matrix multiplication, while adhering to the rules of dimensional compatibility.
Calculate the determinant of a square matrix using methods such as cofactor expansion and apply its fundamental properties to simplify computations.
Determine the inverse of a non-singular matrix using the formula involving the adjugate matrix, and understand the conditions under which an inverse exists.
Apply the concepts of determinants and matrix inverses to analyze the consistency and find the unique solution of a system of linear equations of the form AX=B.
---
We now turn our attention to Matrix Operations...
Part 1: Matrix Operations
Introduction
In the study of linear algebra, the matrix serves as a fundamental object for representing and manipulating linear transformations and systems of linear equations. A matrix is a rectangular array of numbers, symbols, or expressions, arranged in rows and columns, which provides a powerful framework for organizing and processing data. A thorough understanding of matrix operations is indispensable, as these operations form the computational bedrock for nearly all advanced topics within linear algebra, including the analysis of vector spaces, the solution of differential equations, and the implementation of numerous algorithms in computer science.
Our primary focus will be on the essential arithmetic of matrices—addition, scalar multiplication, and matrix multiplication—along with key unary operations such as the transpose and the trace. We will investigate the properties that govern these operations, such as associativity and distributivity, and pay special attention to properties that diverge from scalar arithmetic, most notably the non-commutativity of matrix multiplication. Mastery of these operational rules and their consequences is a prerequisite for tackling more complex concepts in the GATE examination.
📖Matrix
A matrix is a rectangular array of scalars arranged in rows and columns. An m×n matrix A, having m rows and n columns, is represented as:
We may also denote this compactly as A=[aij]m×n, where aij is the element in the i-th row and j-th column.
---
Key Concepts
1. Basic Matrix Arithmetic
The foundational operations of matrix algebra are defined element-wise or through more complex row-column interactions.
Matrix Addition and Subtraction
Two matrices A=[aij] and B=[bij] can be added or subtracted if and only if they have the same dimensions (m×n). The resulting matrix C=A±B is also of dimension m×n, with elements given by cij=aij±bij.
Scalar Multiplication
The product of a scalar k and a matrix A=[aij] is a matrix B=kA of the same dimension, where each element is multiplied by the scalar: bij=k⋅aij.
Matrix Multiplication
The product of two matrices, Am×n and Bn×p, is a matrix Cm×p. For the product AB to be defined, the number of columns in the first matrix (A) must be equal to the number of rows in the second matrix (B). The element cij in the i-th row and j-th column of the product matrix C is computed as the dot product of the i-th row of A and the j-th column of B.
📐Matrix Multiplication
cij=k=1∑naikbkj
Variables:
A=[aik]m×n is the first matrix.
B=[bkj]n×p is the second matrix.
C=[cij]m×p is the resultant product matrix.
When to use: This is the fundamental definition for multiplying two matrices. It is essential for virtually all problems involving matrix products.
Properties of Matrix Multiplication:
Associative:(AB)C=A(BC)
Distributive:A(B+C)=AB+AC and (A+B)C=AC+BC
Not Commutative: In general, AB=BA.
Worked Example:
Problem: Given
A=(12013−1)
and
B=4−21105
compute the product C=AB.
Solution:
Step 1: Verify the dimensions for multiplication. Matrix A has dimensions 2×3. Matrix B has dimensions 3×2. Since the inner dimensions (3 and 3) match, the product AB is defined. The resulting matrix C will have dimensions 2×2.
Step 2: Calculate the element c11. This is the dot product of the first row of A and the first column of B.
c11=(1)(4)+(0)(−2)+(3)(1)=4+0+3=7
Step 3: Calculate the element c12. This is the dot product of the first row of A and the second column of B.
c12=(1)(1)+(0)(0)+(3)(5)=1+0+15=16
Step 4: Calculate the element c21. This is the dot product of the second row of A and the first column of B.
c21=(2)(4)+(1)(−2)+(−1)(1)=8−2−1=5
Step 5: Calculate the element c22. This is the dot product of the second row of A and the second column of B.
c22=(2)(1)+(1)(0)+(−1)(5)=2+0−5=−3
Step 6: Assemble the final matrix C.
C=(c11c21c12c22)=(7516−3)
Answer:
AB=(7516−3)
---
---
2. The Trace of a Matrix
The trace is a simple yet powerful operator on square matrices that has several useful properties.
📖Trace of a Matrix
The trace of a square matrix An×n, denoted as tr(A), is the sum of the elements on its main diagonal.
tr(A)=i=1∑naii=a11+a22+⋯+ann
The trace possesses properties of linearity, meaning tr(A+B)=tr(A)+tr(B) and k⋅tr(A)=k⋅tr(A). However, its most significant property in competitive examinations relates to the product of matrices.
❗Cyclic Property of Trace
For any two matrices Am×n and Bn×m, the trace of their product is invariant under the order of multiplication:
tr(AB)=tr(BA)
Even though AB is an m×m matrix and BA is an n×n matrix, their traces are equal. This property extends to more matrices, e.g., tr(ABC)=tr(BCA)=tr(CAB).
Let us observe why this property holds. The i-th diagonal element of AB is (AB)ii=∑j=1naijbji. Therefore,
tr(AB)=i=1∑m(AB)ii=i=1∑mj=1∑naijbji
Similarly, the j-th diagonal element of BA is (BA)jj=∑i=1mbjiaij. Therefore,
tr(BA)=j=1∑n(BA)jj=j=1∑ni=1∑mbjiaij
Since scalar multiplication is commutative (aijbji=bjiaij) and the order of finite summations can be interchanged, the two expressions are identical.
---
3. Powers of a Matrix
For a square matrix A, we can define its positive integer powers recursively: A1=A and Ak=A⋅Ak−1 for k>1. Computing high powers of a matrix by direct multiplication is often inefficient. The key is to compute the first few powers (A2,A3,…) and search for a recurring pattern.
Common patterns include:
Idempotent Matrix:A2=A. It follows that Ak=A for all k≥1.
Nilpotent Matrix:Ak=O (the zero matrix) for some integer k.
Involutory Matrix:A2=I (the identity matrix). It follows that Ak cycles between A (for odd k) and I (for even k).
Scalar Multiple of Identity:Ak=cI for some scalar c and integer k. This simplifies higher power calculations significantly. For instance, if A2=5I, then A8=(A2)4=(5I)4=54I4=625I.
Worked Example:
Problem: Let
A=(01−10).
Compute A101.
Solution:
Step 1: Compute the first few powers of A to identify a pattern.
Step 3: Use this pattern to simplify the calculation of A101.
A101=A100⋅A1=(A2)50⋅A
Step 4: Substitute A2=−I.
(A2)50⋅A=(−I)50⋅A=(−1)50I50⋅A
Step 5: Simplify the expression. Since Ik=I for any positive integer k, and (−1)50=1.
1⋅I⋅A=A
Answer:A101=A=
(01−10)
---
4. Vector Operations and Orthogonality
A vector in Rn can be represented as an n×1 matrix (a column vector) or a 1×n matrix (a row vector). Matrix operations provide a natural framework for vector manipulations.
📖Dot Product (Inner Product)
The dot product of two column vectors u,v∈Rn can be expressed using matrix multiplication as uTv. If
u=u1⋮unandv=v1⋮vn,
then:
uTv=(u1⋯un)v1⋮vn=i=1∑nuivi
The result is a 1×1 matrix, which is treated as a scalar.
Two vectors are said to be orthogonal if their dot product is zero.
❗Orthogonality and Linear Independence
A set of non-zero, mutually orthogonal vectors in Rn is always linearly independent. Since the dimension of Rn is n, any set of linearly independent vectors in Rn can have at most n vectors. Consequently, the maximum number of non-zero, mutually orthogonal vectors in Rn is n.
This principle is fundamental in constructing orthogonal bases for vector spaces and is directly tested in GATE. For example, in a 10-dimensional space, one can find at most 10 non-zero vectors that are all orthogonal to each other.
---
---
5. Elementary Row Operations and Their Effects
Elementary row operations are transformations applied to the rows of a matrix. While their primary use is in solving linear systems and finding inverses, their effect on matrix properties like the determinant is a key concept.
| Operation | Description | Effect on Determinant | | :--- | :--- | :--- | | 1. Swapping | Interchange two rows, Ri↔Rj | det(B)=−det(A) | | 2. Scaling | Multiply a row by a non-zero scalar, Ri→kRi | det(B)=k⋅det(A) | | 3. Addition | Add a multiple of one row to another, Ri→Ri+kRj | det(B)=det(A) |
A crucial consequence is that elementary row operations preserve the invertibility of a matrix. A matrix A is invertible if and only if det(A)=0. Since these operations only multiply the determinant by non-zero scalars or leave it unchanged, if det(A)=0, the determinant of the resulting matrix will also be non-zero.
---
---
Problem-Solving Strategies
💡GATE Strategy: Pattern Recognition for Matrix Powers
When asked to compute a high power of a matrix, such as A100, never attempt direct multiplication. The problem is almost certainly designed around a special property of the matrix.
Calculate A2.
If A2 is simple (e.g., I, −I, kA, O), use this to simplify the exponent.
If A2 is not simple, calculate A3. Look for a cycle (Ak=I) or other patterns.
This approach saves immense time and avoids calculation errors.
💡GATE Strategy: Use Properties to Avoid Computation
Before performing a lengthy calculation, check if a matrix property can simplify the problem.
To find tr(QP) where Q is an n×m matrix and P is an m×n matrix, it might be easier to compute tr(PQ) if the resulting matrix PQ is smaller or simpler.
To check if a matrix expression is symmetric, compute its transpose using properties like (AB)T=BTAT and (A+B)T=AT+BT instead of computing the full matrix product.
---
Common Mistakes
⚠️Avoid These Errors
❌ Assuming Commutativity: A common error is to assume AB=BA. This is almost never true. Always preserve the order of multiplication. For example, (A+B)2=(A+B)(A+B)=A2+AB+BA+B2, which is NOT A2+2AB+B2 unless A and B commute.
❌ Incorrect Transpose of a Product: Applying the transpose operator to a product as (AB)T=ATBT.
✅ The correct property is the reversal law: (AB)T=BTAT.
❌ Confusing Trace of Product: Assuming tr(AB)=tr(A)⋅tr(B). This is incorrect.
✅ The correct property is tr(AB)=tr(BA). There is no simple relation involving tr(A) and tr(B) separately.
❌ Row Swaps and Trace: Assuming that swapping two rows of a matrix preserves its trace.
✅ Swapping rows i and j generally changes the diagonal elements aii and ajj, thus altering the trace.
---
Practice Questions
:::question type="NAT" question="Let matrices P and Q be defined as P=(130−121) and Q=401125. Calculate the tr of the matrix product QP." answer="12" hint="Recall the cyclic property of the trace. It may be easier to compute the tr of PQ than QP." solution=" Step 1: State the relevant property of the trace. The cyclic property of the trace states that for matrices Qn×m and Pm×n, we have tr(QP)=tr(PQ).
Step 2: Determine the dimensions of the products. P is a 2×3 matrix and Q is a 3×2 matrix. The product QP is a 3×3 matrix. The product PQ is a 2×2 matrix. Calculating the trace via PQ requires computing a smaller matrix.
Step 4: Compute the trace of PQ. The trace is the sum of the diagonal elements.
tr(PQ)=6+6=12
Result: Since tr(QP)=tr(PQ), the trace of QP is 12. Answer: \boxed{12} " :::
:::question type="MSQ" question="Let A and B be n×n symmetric matrices. Which of the following matrices are always symmetric?" options=["A−B", "AB", "ABA", "A2"] answer="A-B,ABA,A^2" hint="A matrix M is symmetric if MT=M. Use the properties of transpose, including (XY)T=YTXT, and the fact that AT=A and BT=B." solution=" A matrix M is symmetric if MT=M. We are given that AT=A and BT=B. We test each option.
Option A: A−B Let M=A−B.
MT=(A−B)T=AT−BT
Since A and B are symmetric, AT=A and BT=B.
MT=A−B=M
Thus, A−B is always symmetric.
Option B: AB Let M=AB.
MT=(AB)T=BTAT
Using the symmetric property, we get:
MT=BA
For M to be symmetric, we need MT=M, which means we need BA=AB. Since matrix multiplication is not generally commutative, this condition does not always hold. Thus, AB is not always symmetric.
Option C: ABA Let M=ABA.
MT=(ABA)T=ATBTAT
Using the symmetric property, we get:
MT=ABA=M
Thus, ABA is always symmetric.
Option D: A2 Let M=A2=AA.
MT=(AA)T=ATAT
Using the symmetric property, we get:
MT=AA=A2=M
Thus, A2 is always symmetric.
The correct options are A−B, ABA, and A2. " :::
:::question type="MCQ" question="Consider the matrix A=010001100. Which of the following is equal to A2025?" options=["010001100","001100010","100010001","101110011"] answer="100010001" hint="Calculate the first few powers of A (A2, A3) to find a repeating pattern. Use this pattern to simplify the high exponent." solution=" Step 1: Calculate A2.
Step 3: Identify the pattern. We observe that A3=I, the identity matrix. This means the powers of A will cycle with a period of 3.
Step 4: Use the pattern to evaluate A2025. We can write the exponent 2025 in terms of the cycle length 3. We find the remainder of 2025 when divided by 3. The sum of digits of 2025 is 2+0+2+5=9, which is divisible by 3. Thus, 2025=3k for some integer k. Specifically, 2025=3×675.
Step 5: Simplify the expression.
A2025=A3×675=(A3)675
Since A3=I:
(I)675=I
Result:
A2025=I=100010001
" :::
:::question type="NAT" question="Given matrices A=(142536) and B=792813, if C=AB, find the value of the element c21." answer="85" hint="The element cij of a product matrix C=AB is found by taking the dot product of the i-th row of A and the j-th column of B. You do not need to compute the entire matrix C." solution=" Step 1: Recall the formula for an element of a product matrix. The element in the i-th row and j-th column of the product matrix C=AB is given by cij=∑kaikbkj. For c21, we need the elements from the 2nd row of A and the 1st column of B.
Step 2: Identify the 2nd row of A and the 1st column of B. Row 2 of A is (456). Column 1 of B is 792.
Step 3: Compute the dot product.
c21=(4)(7)+(5)(9)+(6)(2)
Step 4: Perform the arithmetic.
c21=28+45+12
c21=85
Result: The value of the element c21 is 85. Answer: 85 " :::
:::question type="MCQ" question="In the vector space R5, what is the maximum possible number of non-zero vectors in a set L such that for every pair of distinct vectors u,v∈L, their dot product uTv is zero?" options=["4","5","6","25"] answer="5" hint="This question concerns the properties of mutually orthogonal vectors in an n-dimensional space." solution=" Step 1: Interpret the given condition. The condition uTv=0 for any two distinct vectors u,v in the set L means that L is a set of mutually orthogonal vectors.
Step 2: Recall the relationship between orthogonality and linear independence. A fundamental theorem in linear algebra states that any set of non-zero, mutually orthogonal vectors is also linearly independent.
Step 3: Relate linear independence to the dimension of the space. The vector space is R5, which has a dimension of 5. The dimension of a vector space is defined as the number of vectors in any basis for that space. It also represents the maximum number of linearly independent vectors that can exist in that space.
Step 4: Conclude the maximum size of the set L. Since the set L must be linearly independent, and the space R5 can contain at most 5 linearly independent vectors, the maximum possible cardinality (number of vectors) for L is 5.
Result: The maximum number of such vectors is 5. " :::
---
Summary
❗Key Takeaways for GATE
Matrix Multiplication is Not Commutative: Always maintain the order of multiplication (AB=BA). This is the source of many common errors and distinguishes matrix algebra from scalar algebra.
Know Key Properties: The reversal rule for transpose, (AB)T=BTAT, and the cyclic property of trace, tr(AB)=tr(BA), are frequently tested and can drastically simplify complex problems.
Look for Patterns in Powers: When faced with high powers of a matrix, compute A2 and A3 to find a simplifying pattern (e.g., Ak=I, Ak=O). Direct calculation is never the intended path.
Orthogonality Implies Linear Independence: In an n-dimensional space, you can have at most n non-zero, mutually orthogonal vectors. This is a direct link between geometric intuition and the algebraic concept of a basis.
---
What's Next?
💡Continue Learning
The operations discussed here are foundational. A strong command of them is essential for understanding more advanced topics in Linear Algebra:
Determinants and Inverses: The effect of elementary operations on determinants is crucial for calculating them. The inverse of a matrix, A−1, is defined such that AA−1=I, a direct application of matrix multiplication.
Eigenvalues and Eigenvectors: The core eigenvalue equation is Ax=λx. Understanding how matrix-vector multiplication works is the first step. Furthermore, properties of trace and determinant are directly related to the sum and product of eigenvalues.
Master these connections to build a comprehensive and robust understanding of Linear Algebra for the GATE examination.
---
💡Moving Forward
Now that you understand Matrix Operations, let's explore Determinants which builds on these concepts.
---
Part 2: Determinants
Introduction
In the study of linear algebra, the determinant is a scalar value that can be computed from the elements of a square matrix. It serves as a fundamental concept with wide-ranging applications, from solving systems of linear equations to understanding the geometric transformations represented by matrices. For a given square matrix, the determinant encodes essential information about its properties; most notably, it provides a criterion to determine if the matrix is invertible. A non-zero determinant signifies that the matrix is non-singular and that a unique inverse exists, which is a cornerstone for many computational and theoretical problems.
Our exploration of determinants will be grounded in the context of the GATE examination. We will begin by establishing the formal definition and methods of computation. Subsequently, we will delve into the critical properties of determinants, as these are frequently the basis for problem-solving in a competitive exam setting. Mastery of these properties allows for the elegant and efficient solution of complex matrix problems, often without the need for laborious direct computation. The determinant also forms a conceptual bridge to more advanced topics such as eigenvalues and eigenvectors, making its thorough understanding indispensable.
📖Determinant
For a square matrix A of order n, the determinant, denoted as det(A) or ∣A∣, is a uniquely defined scalar value associated with the matrix. It is a function that maps an n×n matrix to a real or complex number. For a 2×2 matrix, the determinant is defined as:
If
A=(acbd)
then
det(A)=ad−bc
For larger matrices, the determinant is computed recursively using methods such as the Laplace expansion.
---
Key Concepts
1. Calculation of Determinants
While the formula for a 2×2 matrix is straightforward, calculating determinants for higher-order matrices requires a more systematic approach. The most common method is the Laplace expansion, which relies on the concepts of minors and cofactors.
Minors and Cofactors
Consider an n×n matrix A=[aij].
The minor of the element aij, denoted Mij, is the determinant of the (n−1)×(n−1) submatrix formed by deleting the i-th row and j-th column of A.
The cofactor of the element aij, denoted Cij, is related to the minor by the following expression:
Cij=(−1)i+jMij
The term (−1)i+j creates a "checkerboard" pattern of signs.
Laplace Expansion
The determinant of an n×n matrix A can be computed by expanding along any row or any column.
Choosing a row or column with the most zeros significantly simplifies the computation.
Worked Example:
Problem: Calculate the determinant of the matrix
A=2351−12041
Solution:
We shall expand along the first row, as it contains a zero element, which simplifies the calculation.
Step 1: Apply the Laplace expansion formula for the first row (i=1).
det(A)=a11C11+a12C12+a13C13
Step 2: Calculate each term.
The first term involves a11=2. The cofactor is
C11=(−1)1+1−1241
C11=(1)((−1)(1)−(4)(2))=−1−8=−9
a11C11=2(−9)=−18
The second term involves a12=1. The cofactor is
C12=(−1)1+23541
C12=(−1)((3)(1)−(4)(5))=−(3−20)=17
a12C12=1(17)=17
The third term involves a13=0.
a13C13=0⋅C13=0
Step 3: Sum the terms to find the determinant.
det(A)=−18+17+0
Step 4: Compute the final answer.
det(A)=−1
Answer:−1
---
2. Properties of Determinants
For the GATE examination, understanding the properties of determinants is paramount. These properties often provide a direct path to a solution, bypassing tedious calculations. Let A and B be square matrices of order n.
Determinant of Transpose: The determinant of a matrix is equal to the determinant of its transpose.
det(A)=det(AT)
Product Rule: The determinant of a product of matrices is the product of their individual determinants.
det(AB)=det(A)det(B)
Power of a Matrix: A direct consequence of the product rule. For any non-negative integer k:
det(Ak)=(det(A))k
Scalar Multiplication: If a matrix A is multiplied by a scalar k, the determinant is scaled by kn.
det(kA)=kndet(A)
Determinant of Inverse: The determinant of the inverse of a non-singular matrix is the reciprocal of its determinant.
det(A−1)=det(A)1
This follows from AA−1=I, so det(A)det(A−1)=det(I)=1.
Effect of Row/Column Operations:
* Swapping two rows or two columns multiplies the determinant by −1. * Multiplying a single row or column by a scalar k multiplies the determinant by k. * Adding a multiple of one row (or column) to another row (or column) does not change the value of the determinant. This property is extremely useful for simplifying matrices before calculation.
Zero Determinant Conditions: The determinant of a matrix is zero if:
* An entire row or column consists of zeros. * Two rows or two columns are identical. * One row or column is a scalar multiple of another. * The matrix is singular (i.e., not invertible).
❗Must Remember
A square matrix A is invertible (non-singular) if and only if det(A)=0. This is one of the most fundamental theorems in linear algebra and is frequently tested.
3. Determinant of Special Matrices
Triangular and Diagonal Matrices: The determinant of an upper triangular, lower triangular, or diagonal matrix is simply the product of its diagonal elements.
If A=[aij] is triangular, then det(A)=a11a22…ann.
Identity Matrix: The determinant of the identity matrix In is 1.
det(In)=1
Zero Matrix: The determinant of a zero matrix O is 0.
det(O)=0
---
---
Problem-Solving Strategies
For GATE, problems on determinants often test the application of properties rather than rote calculation.
💡GATE Strategy: Use Properties First
Before attempting to calculate a determinant by expansion, always inspect the matrix and the problem statement for opportunities to apply properties.
Matrix Equations: If given an equation like A3=2I or P2=P−1, take the determinant of both sides. Use properties like det(Ak)=(det(A))k and det(kA)=kndet(A) to form a scalar equation in terms of det(A). This is a very common pattern.
Simplify Before Calculating: If asked to find the determinant of a numerical matrix, use row/column operations of the type Ri→Ri+kRj to create zeros in a row or column. This dramatically simplifies the Laplace expansion.
Look for Singularity: If you can show that two rows are proportional, or that the matrix expression simplifies to the zero matrix, you can immediately conclude the determinant is 0 without any calculation. This was the key insight in the provided PYQ.
---
Common Mistakes
A clear understanding of what the properties do not state is as important as knowing what they do.
⚠️Avoid These Errors
❌ Incorrect Sum Rule:det(A+B)=det(A)+det(B). This is almost never true.
✅ Correct Approach: There is no general simplification for det(A+B). The matrix sum A+B must be computed first, and then its determinant is found.
❌ Incorrect Scalar Multiplication:det(kA)=kdet(A). This is only true for n=1 or if k=1.
✅ Correct Approach: For an n×n matrix, the correct property is det(kA)=kndet(A). The exponent n is frequently forgotten.
❌ Ignoring Matrix Order: When solving an equation like det(A)=4 for a 3×3 matrix, calculating det(2A−1) as 2×(1/4)=1/2.
✅ Correct Approach: Use the properties correctly:
det(2A−1)=23det(A−1)=8×det(A)1=8×41=2
---
Practice Questions
:::question type="MCQ" question="Let A be a 3×3 non-singular matrix such that A3=−I, where I is the identity matrix. If B=(2A)2, what is the value of det(B)?" options=["4","8","16","64"] answer="64" hint="Take the determinant of the given matrix equation to find det(A). Then use the properties of determinants to find det(B)." solution=" Step 1: Start with the given matrix equation.
A3=−I
Step 2: Take the determinant of both sides.
det(A3)=det(−I)
Step 3: Apply the properties det(Xk)=(det(X))k and det(kX)=kndet(X). For a 3×3 matrix, n=3.
(det(A))3=(−1)3det(I)
(det(A))3=−1⋅1
(det(A))3=−1
Since the determinant is a scalar, we have det(A)=−1.
Step 4: Now, consider the expression for matrix B.
B=(2A)2=(2A)(2A)=4A2
Step 5: Find the determinant of B.
det(B)=det(4A2)
Step 6: Apply the scalar multiplication and power properties for determinants.
det(B)=43det(A2)
det(B)=64(det(A))2
Step 7: Substitute the value of det(A) found in Step 3.
det(B)=64(−1)2
det(B)=64⋅1=64
Result:
The value of the determinant of B is 64. Answer: 64 " :::
:::question type="NAT" question="Consider the matrix P=111abca2b2c2. Given that a=1.5, b=2.5, and c=4.5, the value of det(P) is:" answer="9" hint="This is a Vandermonde matrix. Its determinant has a well-known formula. Alternatively, use row operations R2→R2−R1 and R3→R3−R1 to simplify." solution=" Step 1: The given matrix is a Vandermonde matrix.
P=111abca2b2c2
The determinant of a 3×3 Vandermonde matrix of this form is given by the formula det(P)=(b−a)(c−a)(c−b).
Step 2: Substitute the given values a=1.5, b=2.5, and c=4.5 into the formula.
b−a=2.5−1.5=1.0
c−a=4.5−1.5=3.0
c−b=4.5−2.5=2.0
Step 3: Multiply these values to find the determinant.
det(P)=(1.0)×(3.0)×(2.0)
det(P)=6.0
Alternative Method (Row Operations):
Step 1: Apply row operations to introduce zeros in the first column. Let R2→R2−R1 and R3→R3−R1. These operations do not change the determinant.
P′=100ab−ac−aa2b2−a2c2−a2
Step 2: Expand the determinant along the first column.
det(P)=1⋅b−ac−ab2−a2c2−a2
Step 3: Factor the terms in the second column.
det(P)=b−ac−a(b−a)(b+a)(c−a)(c+a)
Step 4: Factor out (b−a) from the first row and (c−a) from the second row.
det(P)=(b−a)(c−a)11b+ac+a
Step 5: Calculate the remaining 2×2 determinant.
det(P)=(b−a)(c−a)((1)(c+a)−(1)(b+a))
det(P)=(b−a)(c−a)(c+a−b−a)
det(P)=(b−a)(c−a)(c−b)
This confirms the formula.
Step 6: Substitute the values: a=1.5,b=2.5,c=4.5.
det(P)=(2.5−1.5)(4.5−1.5)(4.5−2.5)
det(P)=(1)(3)(2)=6
Result:
The value of det(P) is 6. Answer: 6 " :::
:::question type="MSQ" question="Let A and B be n×n invertible matrices, and let k be a non-zero scalar. Which of the following statements are ALWAYS true?" options=["det(A+B)=det(A)+det(B)","det((AB)−1)=det(A−1)det(B−1)","det(kA)=kdet(A)","det(ABA−1)=det(B)"] answer="B,D" hint="Carefully apply the fundamental properties of determinants. Test each statement for validity. For false statements, a simple counterexample is sufficient." solution=" Statement A:det(A+B)=det(A)+det(B). This is a common misconception. Let A=I2=<divclass="math−display"><spanclass="katex−display"><spanclass="katex"><spanclass="katex−mathml"><mathxmlns="http://www.w3.org/1998/Math/MathML"display="block"><semantics><mrow><mofence="true">(</mo><mtablerowspacing="0.16em"columnalign="centercenter"columnspacing="1em"><mtr><mtd><mstylescriptlevel="0"displaystyle="false"><mn>1</mn></mstyle></mtd><mtd><mstylescriptlevel="0"displaystyle="false"><mn>0</mn></mstyle></mtd></mtr><mtr><mtd><mstylescriptlevel="0"displaystyle="false"><mn>0</mn></mstyle></mtd><mtd><mstylescriptlevel="0"displaystyle="false"><mn>1</mn></mstyle></mtd></mtr></mtable><mofence="true">)</mo></mrow><annotationencoding="application/x−tex">(10amp;0amp;1)</annotation></semantics></math></span><spanclass="katex−html"aria−hidden="true"><spanclass="base"><spanclass="strut"style="height:2.4em;vertical−align:−0.95em;"></span><spanclass="minner"><spanclass="mopendelimcenter"style="top:0em;"><spanclass="delimsizingsize3">(</span></span><spanclass="mord"><spanclass="mtable"><spanclass="col−align−c"><spanclass="vlist−tvlist−t2"><spanclass="vlist−r"><spanclass="vlist"style="height:1.45em;"><spanstyle="top:−3.61em;"><spanclass="pstrut"style="height:3em;"></span><spanclass="mord"><spanclass="mord">1</span></span></span><spanstyle="top:−2.41em;"><spanclass="pstrut"style="height:3em;"></span><spanclass="mord"><spanclass="mord">0</span></span></span></span><spanclass="vlist−s"></span></span><spanclass="vlist−r"><spanclass="vlist"style="height:0.95em;"><span></span></span></span></span></span><spanclass="arraycolsep"style="width:0.5em;"></span><spanclass="arraycolsep"style="width:0.5em;"></span><spanclass="col−align−c"><spanclass="vlist−tvlist−t2"><spanclass="vlist−r"><spanclass="vlist"style="height:1.45em;"><spanstyle="top:−3.61em;"><spanclass="pstrut"style="height:3em;"></span><spanclass="mord"><spanclass="mord">0</span></span></span><spanstyle="top:−2.41em;"><spanclass="pstrut"style="height:3em;"></span><spanclass="mord"><spanclass="mord">1</span></span></span></span><spanclass="vlist−s"></span></span><spanclass="vlist−r"><spanclass="vlist"style="height:0.95em;"><span></span></span></span></span></span></span></span><spanclass="mclosedelimcenter"style="top:0em;"><spanclass="delimsizingsize3">)</span></span></span></span></span></span></span></div>andB = I_2 =
(1001)
.
det(A)=1
det(B)=1
So
det(A)+det(B)=2
A+B=(2002)
det(A+B)=4
Since 4=2, statement A is false.
Statement B:det((AB)−1)=det(A−1)det(B−1). Let's simplify both sides using determinant properties. Left Hand Side (LHS):
det((AB)−1)=det(AB)1=det(A)det(B)1
Right Hand Side (RHS):
det(A−1)det(B−1)=det(A)1det(B)1=det(A)det(B)1
Since LHS = RHS, statement B is true.
Statement C:det(kA)=kdet(A). The correct property is det(kA)=kndet(A), where n is the order of the matrix. The statement is only true if n=1. For any n>1 and k=1, it is false. For example, if A=I2 and k=2,
det(2I2)=det(2002)=4
But
2det(I2)=2⋅1=2
Since 4=2, statement C is false.
Statement D:det(ABA−1)=det(B). Using the product rule for determinants:
det(ABA−1)=det(A)⋅det(B)⋅det(A−1)
Since det(A−1)=1/det(A):
det(ABA−1)=det(A)⋅det(B)⋅det(A)1
As A is invertible, det(A)=0, so we can cancel the terms.
det(ABA−1)=det(B)
Statement D is true. The matrix ABA−1 is known as a similarity transformation of B.
Result: The correct statements are B and D. Answer: B, D " :::
:::question type="MCQ" question="If A is a 3×3 matrix with det(A)=5, what is the value of det(adj(A))?" options=["5","1/5","25","125"] answer="25" hint="Recall the relationship between the determinant of a matrix and the determinant of its adjoint: det(adj(A))=(det(A))n−1." solution=" Step 1: State the formula for the determinant of the adjoint of a matrix. For an n×n matrix A, the determinant of its adjoint is given by:
det(adj(A))=(det(A))n−1
Step 2: Identify the given values from the problem statement. The matrix A is of order n=3. The determinant of A is det(A)=5.
Step 3: Substitute these values into the formula.
det(adj(A))=(5)3−1
=52
=25
Result: The value of det(adj(A)) is 25. Answer: 25 " :::
---
Summary
❗Key Takeaways for GATE
Invertibility: A square matrix A is invertible if and only if det(A)=0. This is the most crucial concept linking determinants to matrix properties.
Properties are Key: Most GATE problems on determinants are solved by cleverly applying properties, not by brute-force calculation. Master the rules for products, inverses, powers, and scalar multiples: det(AB)=det(A)det(B), det(A−1)=1/det(A), det(Ak)=(det(A))k, and det(kA)=kndet(A).
Simplification: Row/column operations of the form Ri→Ri+cRj do not change the determinant and are the primary tool for simplifying a matrix before expanding to find its determinant.
Matrix Equations: When faced with an equation involving matrices (e.g., M2=N−1), immediately consider taking the determinant of both sides to transform it into a simpler scalar equation.
---
---
What's Next?
💡Continue Learning
A solid understanding of determinants is a prerequisite for several advanced topics in Linear Algebra.
Inverse of a Matrix: The formula for the inverse, A−1=det(A)1adj(A), directly uses the determinant. You cannot find the inverse of a singular matrix.
Eigenvalues and Eigenvectors: The eigenvalues of a matrix A are found by solving the characteristic equation, det(A−λI)=0. This shows that the calculation of determinants is central to finding eigenvalues.
Rank of a Matrix: The rank of a matrix is related to the largest non-zero minor. A square matrix of order n has full rank (n) if and only if its determinant is non-zero.
Systems of Linear Equations (Cramer's Rule): Determinants are used in Cramer's rule to find the solution to a system of linear equations, although this method is more of theoretical importance than practical for large systems.
Mastering these connections will provide a more holistic and robust preparation for the Engineering Mathematics section of the GATE exam.
---
💡Moving Forward
Now that you understand Determinants, let's explore Matrix Inverse which builds on these concepts.
---
Part 3: Matrix Inverse
Introduction
In the realm of linear algebra, the concept of an inverse matrix serves as a powerful analogue to the reciprocal of a scalar. Just as multiplying a number by its reciprocal yields the multiplicative identity, 1, multiplying a matrix by its inverse yields the identity matrix, I. This operation is fundamental to solving systems of linear equations of the form Ax=b and is pivotal in numerous applications across computer science, including computer graphics, cryptography, and network analysis.
Our study of the matrix inverse will focus on the conditions for its existence and the methods for its computation. We shall see that not all matrices possess an inverse. A matrix must be square and have a non-zero determinant to be invertible. We will systematically develop the procedure for finding the inverse using the determinant and the adjugate of a matrix, providing a robust tool for algebraic manipulation.
📖Inverse of a Square Matrix
Let A be a square matrix of order n. If there exists another square matrix B of the same order n such that their product is the identity matrix In, then B is called the inverse of A. This relationship is symmetric and is expressed as:
AB=BA=In
The inverse of A is denoted by A−1. A matrix that has an inverse is called an invertible or non-singular matrix. A matrix that does not have an inverse is called a singular matrix.
---
Key Concepts
The computation and existence of a matrix inverse are intrinsically linked to the determinant and the adjugate of the matrix. Let us examine these components.
1. Condition for Existence
A fundamental theorem in linear algebra states that a square matrix A is invertible if and only if its determinant is non-zero.
❗Condition for Invertibility
A square matrix A has an inverse A−1 if and only if det(A)=0. If det(A)=0, the matrix is singular and does not have an inverse.
This condition serves as the first and most critical check before attempting to compute the inverse of any matrix. If the determinant is zero, our work is done; no inverse exists.
2. Formula for the Inverse
For a non-singular square matrix A, its inverse A−1 is computed using its determinant and its adjugate (also known as the adjoint).
📐Inverse using Adjugate
A−1=det(A)1adj(A)
Variables:
det(A) = The determinant of matrix A.
adj(A) = The adjugate (or adjoint) of matrix A, which is the transpose of the cofactor matrix of A.
When to use: This is the general formula for finding the inverse of any non-singular square matrix, particularly for orders 3×3 and higher.
The adjugate of a matrix A, denoted adj(A), is found by taking the transpose of the matrix of cofactors, C. That is, adj(A)=CT. The element Cij of the cofactor matrix is given by Cij=(−1)i+jMij, where Mij is the minor of the element aij.
3. Inverse of a 2x2 Matrix
For a 2×2 matrix, the general formula simplifies to a very convenient shortcut, which is frequently useful in time-constrained examinations.
💡Exam Shortcut: 2x2 Inverse
For a 2×2 matrix A=(acbd), its inverse is:
A−1=ad−bc1(d−c−ba)
To find the inverse, simply swap the elements on the main diagonal, negate the elements on the off-diagonal, and multiply the resulting matrix by the reciprocal of the determinant.
Worked Example:
Problem: Find the inverse of the matrix A=(4276).
Solution:
Step 1: Calculate the determinant of A.
det(A)=(4)(6)−(7)(2)=24−14=10
Since det(A)=10=0, the inverse exists.
Step 2: Apply the shortcut formula for a 2×2 matrix.
A−1=101(6−2−74)
Step 3: Distribute the scalar term into the matrix.
A−1=(6/10−2/10−7/104/10)
Step 4: Simplify the matrix elements.
A−1=(3/5−1/5−7/102/5)
Answer:A−1=(3/5−1/5−7/102/5)
4. Inverse of a 3x3 Matrix
Calculating the inverse of a 3×3 matrix is more involved and requires a systematic application of the adjugate formula.
Worked Example:
Problem: Find the inverse of the matrix A=105216340.
Solution:
Step 1: Calculate the determinant of A. We expand along the first row.
det(A)=11640−20540+30516
det(A)=1(0−24)−2(0−20)+3(0−5)
det(A)=−24+40−15=1
Since det(A)=1=0, the inverse exists.
Step 2: Calculate the matrix of cofactors, C.
C11=(−1)1+11640=−24
C12=(−1)1+20540=20
C13=(−1)1+30516=−5
C21=(−1)2+12630=18
C22=(−1)2+21530=−15
C23=(−1)2+31526=4
C31=(−1)3+12134=5
C32=(−1)3+21034=−4
C33=(−1)3+31021=1
The cofactor matrix is:
C=−2418520−15−4−541
Step 3: Find the adjugate of A by transposing the cofactor matrix C.
adj(A)=CT=−2420−518−1545−41
Step 4: Apply the inverse formula A−1=det(A)1adj(A).
A−1=11−2420−518−1545−41
Answer:A−1=−2420−518−1545−41
---
Problem-Solving Strategies
💡GATE Strategy: Inverse Calculation
Check Determinant First: Always begin by calculating the determinant. If it is zero, the matrix is singular, and the inverse does not exist. This can save significant time.
Master the 2x2 Shortcut: For 2×2 matrices, the shortcut is significantly faster and less error-prone than the full adjugate method.
Be Systematic with Cofactors: For 3×3 matrices, be meticulous when calculating cofactors. Pay close attention to the sign pattern determined by (−1)i+j. A single sign error will invalidate the entire result.
Verify Your Answer (Time Permitting): If you have a moment to spare, you can verify your result by checking if AA−1=I. Multiplying just the first row of A by the first column of A−1 to see if you get 1 is a quick sanity check.
---
Common Mistakes
⚠️Avoid These Errors
❌ Forgetting the Determinant: A common mistake is to calculate the adjugate matrix and forget to divide it by the determinant. Remember,
A−1=det(A)1adj(A)
❌ Incorrect Cofactor Signs: Errors frequently arise from miscalculating the sign (−1)i+j for each cofactor. The sign pattern for a 3×3 matrix is
+−+−+−+−+
Use this as a guide.
❌ Confusing Adjugate and Cofactor Matrix: The adjugate is the transpose of the cofactor matrix, not the cofactor matrix itself. Do not forget this final transposition step.
---
Practice Questions
:::question type="MCQ" question="What is the inverse of the matrix A=(3−4−12)?" options=["
(121/23/2)
","
(2413)
","
(3/221/21)
","The inverse does not exist"] answer="
(121/23/2)
" hint="Use the 2x2 shortcut: swap diagonal elements, negate off-diagonal elements, and divide by the determinant." solution=" Step 1: Calculate the determinant.
det(A)=(3)(2)−(−1)(−4)=6−4=2
Since det(A)=0, the inverse exists.
Step 2: Apply the 2x2 inverse formula.
A−1=21(2413)
Step 3: Simplify the expression.
A−1=(2/24/21/23/2)=(121/23/2)
Answer:(121/23/2) " :::
:::question type="NAT" question="Let A=1240−11238. If B=A−1, what is the value of the element B23?" answer="1" hint="The element B23 of the inverse matrix is given by det(A)1C32, where C32 is the cofactor of the element at row 3, column 2 of matrix A." solution=" Step 1: Calculate the determinant of A.
det(A)=1−1138−02438+224−11
det(A)=1(−8−3)−0+2(2−(−4))=−11+12=1
Since det(A)=0, the inverse exists.
Step 2: The formula for an element of the inverse matrix is (A−1)ij=det(A)Cji. We need to find B23, which is (A−1)23.
B23=(A−1)23=det(A)C32
Step 3: Calculate the cofactor C32 of matrix A.
C32=(−1)3+2M32=−1⋅1223
C32=−1⋅((1)(3)−(2)(2))=−1⋅(3−4)=1
Step 4: Substitute the values into the formula for B23.
B23=11=1
Answer:1 " :::
:::question type="MSQ" question="Let A and B be two invertible square matrices of the same order. Which of the following statements are ALWAYS true?" options=["(AB)−1=A−1B−1","det(A−1)=det(A)1","(A+B)−1=A−1+B−1","(AT)−1=(A−1)T"] answer="det(A−1)=det(A)1,(AT)−1=(A−1)T" hint="Consider the fundamental properties of matrix inverse, determinant, and transpose operations. Test the options with simple 2x2 matrices if unsure." solution="
Option A: (AB)−1=A−1B−1 is incorrect. The correct property is the 'reversal law' or 'socks-shoes property': (AB)−1=B−1A−1.
Option B: det(A−1)=det(A)1 is correct. We know that AA−1=I. Taking the determinant of both sides gives det(AA−1)=det(I). Using the property det(XY)=det(X)det(Y), we get det(A)det(A−1)=1. Since A is invertible, det(A)=0, so we can divide to get det(A−1)=det(A)1.
Option C: (A+B)−1=A−1+B−1 is incorrect. The inverse of a sum is not the sum of the inverses, in general. For example, let A=I and B=I. Then (A+B)−1=(2I)−1=21I, whereas A−1+B−1=I+I=2I.
Option D: (AT)−1=(A−1)T is correct. This is a standard property of matrix inverses. We can prove it by taking the transpose of AA−1=I, which gives (AA−1)T=IT. This simplifies to (A−1)TAT=I. By the definition of an inverse, (A−1)T is the inverse of AT.
Answer:Options B and D " :::
---
Summary
❗Key Takeaways for GATE
Existence of Inverse: A square matrix A is invertible if and only if its determinant is non-zero (det(A)=0). This is the first and most crucial check.
The Adjugate Formula: The primary method for finding the inverse is
A−1=det(A)1adj(A)
The adjugate, adj(A), is the transpose of the cofactor matrix.
2x2 Shortcut: For a matrix
(acbd)
the inverse is
ad−bc1(d−c−ba)
This is a significant time-saver.
Key Properties: Remember the reversal law for products, (AB)−1=B−1A−1, and the relationship with the determinant, det(A−1)=1/det(A).
---
What's Next?
💡Continue Learning
The concept of the matrix inverse is a cornerstone for more advanced topics in linear algebra.
Solving Systems of Linear Equations: The inverse provides a direct method to solve a system Ax=b via the solution x=A−1b, which is theoretically important and applicable when the inverse is known.
Eigenvalues and Eigenvectors: Understanding invertibility is crucial when studying eigenvalues. For instance, a matrix has an eigenvalue of 0 if and only if it is singular (not invertible).
Mastering these connections will provide a more profound understanding of linear algebra as it appears in the GATE examination.
---
Chapter Summary
📖Matrices and Determinants - Key Takeaways
In our study of matrices and determinants, we have established the fundamental principles governing their manipulation and application. For success in the GATE examination, a firm grasp of the following concepts is essential.
Matrix Multiplication is Not Commutative: While matrix addition and scalar multiplication are straightforward, we must remember that for matrices A and B, the product AB is generally not equal to BA. The dimensions must also be compatible for multiplication to be defined.
The Determinant Encodes Invertibility: A square matrix A is invertible (non-singular) if and only if its determinant, ∣A∣, is non-zero. This is a critical property that connects the determinant to the existence of a unique solution for systems of linear equations.
Properties of Determinants and Inverses: We have seen that for compatible square matrices A and B, ∣AB∣=∣A∣∣B∣ and (AB)−1=B−1A−1. Furthermore, for an n×n matrix A and a scalar k, ∣kA∣=kn∣A∣. The inverse is formally defined as
A−1=∣A∣1adj(A)
Rank Determines Linear Independence: The rank of a matrix, denoted rank(A), corresponds to the number of linearly independent rows or columns. For an n×n matrix, rank(A)<n is equivalent to the condition ∣A∣=0.
Consistency of Linear Systems: The solvability of a system of linear equations AX=B is determined by comparing the rank of the coefficient matrix A with the rank of the augmented matrix [A∣B].
- Unique Solution:rank(A)=rank([A∣B])=n (number of variables). - Infinite Solutions:rank(A)=rank([A∣B])<n. - No Solution:rank(A)<rank([A∣B]).
Properties of Special Matrices: We must be familiar with the defining properties of special matrix types. For an orthogonal matrix Q, QTQ=I, which implies ∣Q∣=±1. For a skew-symmetric matrix S of odd order, ∣S∣=0.
---
Chapter Review Questions
:::question type="MCQ" question="Let A be a non-singular 3×3 matrix with ∣A∣=2. If B=adj(2A), what is the value of the determinant of B?" options=["64", "256", "1024", "4096"] answer="B" hint="Use the properties ∣adj(M)∣=∣M∣n−1 and ∣kM∣=kn∣M∣." solution=" We are asked to find the determinant of B=adj(2A). The matrix A is of order n=3. We will use two fundamental properties of determinants:
For a scalar k and an n×n matrix M, ∣kM∣=kn∣M∣.
For an n×n matrix M, ∣adj(M)∣=∣M∣n−1.
Let's apply the second property to our matrix B:
∣B∣=∣adj(2A)∣=∣2A∣3−1=∣2A∣2
Now, we apply the first property to evaluate ∣2A∣:
∣2A∣=23∣A∣
Given that ∣A∣=2, we have:
∣2A∣=8×2=16
Substituting this result back into our expression for ∣B∣:
∣B∣=(16)2=256
Therefore, the determinant of B is 256. Answer:256 " :::
:::question type="NAT" question="A square matrix A satisfies the equation A2−4A+4I=0, where I is the identity matrix. If the inverse of the matrix A is given by A−1=k1(A−cI), what is the numerical value of k+c?" answer="0" hint="Multiply the characteristic equation by A−1 and rearrange the terms to match the form of the given inverse." solution=" The given matrix equation is:
A2−4A+4I=0
Since the constant term (4I) is non-zero, the matrix A is invertible. We can multiply the entire equation by A−1:
A−1(A2−4A+4I)=A−1(0)
A−1A2−A−14A+A−14I=0
Using the properties A−1A=I and A−1I=A−1:
(A−1A)A−4(A−1A)+4A−1=0
IA−4I+4A−1=0
A−4I+4A−1=0
Now, we rearrange the equation to solve for A−1:
4A−1=4I−A
A−1=41(4I−A)
This expression is in the form A−1=k1(A−cI). Let us rearrange our result to match this form:
A−1=41(−A+4I)=−41(A−4I)
Comparing A−1=−41(A−4I) with A−1=k1(A−cI), we find: k=−4 and c=4. The question asks for the value of k+c.
k+c=−4+4=0
Answer:0 " :::
:::question type="MCQ" question="Let P be a 3×3 skew-symmetric matrix. Which of the following statements must be true?" options=["P is invertible", "∣P∣=1", "All eigenvalues of P are zero", "The trace of P is zero"] answer="D" hint="Recall the definition of a skew-symmetric matrix (PT=−P) and its implications for the diagonal elements and the determinant." solution=" A matrix P is skew-symmetric if it satisfies the property PT=−P. Let the elements of P be denoted by pij. This property means pji=−pij for all i,j.
Diagonal Elements and Trace: For the diagonal elements, we set i=j. The property becomes pii=−pii, which implies 2pii=0, so pii=0. Since all diagonal elements of any skew-symmetric matrix are zero, their sum, which is the trace, must also be zero.
trace(P)=i=1∑3pii=0+0+0=0
Therefore, statement D is always true.
Determinant and Invertibility: Let's examine the determinant. We know that ∣PT∣=∣P∣.
∣PT∣=∣−P∣
For an n×n matrix, ∣−P∣=(−1)n∣P∣. Here, n=3, which is an odd number.
∣P∣=(−1)3∣P∣=−∣P∣
This implies 2∣P∣=0, which means ∣P∣=0. Since the determinant is zero, the matrix P is singular (not invertible). This makes statement A ("P is invertible") and statement B ("∣P∣=1") false.
Eigenvalues: The eigenvalues of a real skew-symmetric matrix are either zero or purely imaginary. They are not all necessarily zero. For example, the matrix
P=0−10100000
is skew-symmetric. Its characteristic equation is λ(λ2+1)=0, giving eigenvalues λ=0,i,−i. Since not all eigenvalues are zero, statement C is false.
From our analysis, the only statement that must be true for any 3×3 skew-symmetric matrix is that its trace is zero. Answer:The trace of P is zero " :::
---
What's Next?
💡Continue Your GATE Journey
Having completed this chapter on Matrices and Determinants, you have established a firm foundation for several advanced topics in Engineering Mathematics. The concepts of matrix operations, rank, and invertibility are not isolated; rather, they form the bedrock upon which more complex theories are built.
Key connections to upcoming chapters include:
Linear Algebra (Vector Spaces): The ideas of linear independence and rank, which we explored in the context of matrices, are central to the study of vector spaces, basis, and dimension. Matrix transformations are a primary example of linear transformations between vector spaces.
Eigenvalues and Eigenvectors: Our next chapter will be a direct extension of the current one. We will investigate the special vectors (eigenvectors) that are only scaled by a matrix transformation. This is a topic of immense importance in engineering, with applications ranging from vibration analysis to data science.
Systems of Differential Equations: Matrix methods are the standard and most efficient way to solve systems of linear ordinary differential equations. The eigenvalues and eigenvectors of the coefficient matrix determine the stability and behavior of the system.
Calculus: In multivariable calculus, the Jacobian matrix, whose determinant is used for changing variables in multiple integrals, is a direct application of the concepts we have covered here.
🎯 Key Points to Remember
✓Master the core concepts in Matrices and Determinants before moving to advanced topics
✓Practice with previous year questions to understand exam patterns
✓Review short notes regularly for quick revision before exams