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.

Matrices and Determinants

Overview

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=BAX = 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×nm \times n matrix AA, having mm rows and nn columns, is represented as:

A=(a11a12a1na21a22a2nam1am2amn)A = \begin{pmatrix}a_{11} & a_{12} & \cdots & a_{1n} \\
a_{21} & a_{22} & \cdots & a_{2n} \\
\vdots & \vdots & \ddots & \vdots \\
a_{m1} & a_{m2} & \cdots & a_{mn}\end{pmatrix}

We may also denote this compactly as A=[aij]m×nA = [a_{ij}]_{m \times n}, where aija_{ij} is the element in the ii-th row and jj-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]A = [a_{ij}] and B=[bij]B = [b_{ij}] can be added or subtracted if and only if they have the same dimensions (m×nm \times n). The resulting matrix C=A±BC = A \pm B is also of dimension m×nm \times n, with elements given by cij=aij±bijc_{ij} = a_{ij} \pm b_{ij}.

Scalar Multiplication

The product of a scalar kk and a matrix A=[aij]A = [a_{ij}] is a matrix B=kAB = kA of the same dimension, where each element is multiplied by the scalar: bij=kaijb_{ij} = k \cdot a_{ij}.

Matrix Multiplication

The product of two matrices, Am×nA_{m \times n} and Bn×pB_{n \times p}, is a matrix Cm×pC_{m \times p}. For the product ABAB to be defined, the number of columns in the first matrix (AA) must be equal to the number of rows in the second matrix (BB). The element cijc_{ij} in the ii-th row and jj-th column of the product matrix CC is computed as the dot product of the ii-th row of AA and the jj-th column of BB.

📐 Matrix Multiplication
cij=k=1naikbkjc_{ij} = \sum_{k=1}^{n} a_{ik} b_{kj}

Variables:

    • A=[aik]m×nA = [a_{ik}]_{m \times n} is the first matrix.

    • B=[bkj]n×pB = [b_{kj}]_{n \times p} is the second matrix.

    • C=[cij]m×pC = [c_{ij}]_{m \times 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)(AB)C = A(BC)

  • Distributive: A(B+C)=AB+ACA(B+C) = AB + AC and (A+B)C=AC+BC(A+B)C = AC + BC

  • Not Commutative: In general, ABBAAB \neq BA.


Worked Example:

Problem: Given

A=(103211)A = \begin{pmatrix} 1 & 0 & 3 \\ 2 & 1 & -1 \end{pmatrix}

and
B=(412015)B = \begin{pmatrix} 4 & 1 \\ -2 & 0 \\ 1 & 5 \end{pmatrix}

compute the product C=ABC = AB.

Solution:

Step 1: Verify the dimensions for multiplication.
Matrix AA has dimensions 2×32 \times 3. Matrix BB has dimensions 3×23 \times 2. Since the inner dimensions (3 and 3) match, the product ABAB is defined. The resulting matrix CC will have dimensions 2×22 \times 2.

Step 2: Calculate the element c11c_{11}. This is the dot product of the first row of AA and the first column of BB.

c11=(1)(4)+(0)(2)+(3)(1)=4+0+3=7\begin{aligned}c_{11} & = (1)(4) + (0)(-2) + (3)(1) \\ & = 4 + 0 + 3 \\ & = 7\end{aligned}

Step 3: Calculate the element c12c_{12}. This is the dot product of the first row of AA and the second column of BB.

c12=(1)(1)+(0)(0)+(3)(5)=1+0+15=16\begin{aligned}c_{12} & = (1)(1) + (0)(0) + (3)(5) \\ & = 1 + 0 + 15 \\ & = 16\end{aligned}

Step 4: Calculate the element c21c_{21}. This is the dot product of the second row of AA and the first column of BB.

c21=(2)(4)+(1)(2)+(1)(1)=821=5\begin{aligned}c_{21} & = (2)(4) + (1)(-2) + (-1)(1) \\ & = 8 - 2 - 1 \\ & = 5\end{aligned}

Step 5: Calculate the element c22c_{22}. This is the dot product of the second row of AA and the second column of BB.

c22=(2)(1)+(1)(0)+(1)(5)=2+05=3\begin{aligned}c_{22} & = (2)(1) + (1)(0) + (-1)(5) \\ & = 2 + 0 - 5 \\ & = -3\end{aligned}

Step 6: Assemble the final matrix CC.

C=(c11c12c21c22)=(71653)C = \begin{pmatrix} c_{11} & c_{12} \\ c_{21} & c_{22} \end{pmatrix} = \begin{pmatrix} 7 & 16 \\ 5 & -3 \end{pmatrix}

Answer:

AB=(71653)AB = \boxed{\begin{pmatrix} 7 & 16 \\ 5 & -3 \end{pmatrix}}

---

---

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×nA_{n \times n}, denoted as tr(A)\operatorname{tr}(A), is the sum of the elements on its main diagonal.

tr(A)=i=1naii=a11+a22++ann\operatorname{tr}(A) = \sum_{i=1}^{n} a_{ii} = a_{11} + a_{22} + \cdots + a_{nn}

The trace possesses properties of linearity, meaning tr(A+B)=tr(A)+tr(B)\operatorname{tr}(A+B) = \operatorname{tr}(A) + \operatorname{tr}(B) and ktr(A)=ktr(A)k \cdot \operatorname{tr}(A) = k \cdot \operatorname{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×nA_{m \times n} and Bn×mB_{n \times m}, the trace of their product is invariant under the order of multiplication:

tr(AB)=tr(BA)\operatorname{tr}(AB) = \operatorname{tr}(BA)

Even though ABAB is an m×mm \times m matrix and BABA is an n×nn \times n matrix, their traces are equal. This property extends to more matrices, e.g., tr(ABC)=tr(BCA)=tr(CAB)\operatorname{tr}(ABC) = \operatorname{tr}(BCA) = \operatorname{tr}(CAB).

Let us observe why this property holds. The ii-th diagonal element of ABAB is (AB)ii=j=1naijbji(AB)_{ii} = \sum_{j=1}^{n} a_{ij} b_{ji}.
Therefore,

tr(AB)=i=1m(AB)ii=i=1mj=1naijbji\operatorname{tr}(AB) = \sum_{i=1}^{m} (AB)_{ii} = \sum_{i=1}^{m} \sum_{j=1}^{n} a_{ij} b_{ji}

Similarly, the jj-th diagonal element of BABA is (BA)jj=i=1mbjiaij(BA)_{jj} = \sum_{i=1}^{m} b_{ji} a_{ij}.
Therefore,

tr(BA)=j=1n(BA)jj=j=1ni=1mbjiaij\operatorname{tr}(BA) = \sum_{j=1}^{n} (BA)_{jj} = \sum_{j=1}^{n} \sum_{i=1}^{m} b_{ji} a_{ij}

Since scalar multiplication is commutative (aijbji=bjiaija_{ij}b_{ji} = b_{ji}a_{ij}) and the order of finite summations can be interchanged, the two expressions are identical.

---

3. Powers of a Matrix

For a square matrix AA, we can define its positive integer powers recursively: A1=AA^1 = A and Ak=AAk1A^k = A \cdot A^{k-1} for k>1k > 1. Computing high powers of a matrix by direct multiplication is often inefficient. The key is to compute the first few powers (A2,A3,A^2, A^3, \dots) and search for a recurring pattern.

Common patterns include:

  • Idempotent Matrix: A2=AA^2 = A. It follows that Ak=AA^k = A for all k1k \ge 1.

  • Nilpotent Matrix: Ak=OA^k = O (the zero matrix) for some integer kk.

  • Involutory Matrix: A2=IA^2 = I (the identity matrix). It follows that AkA^k cycles between AA (for odd kk) and II (for even kk).

  • Scalar Multiple of Identity: Ak=cIA^k = cI for some scalar cc and integer kk. This simplifies higher power calculations significantly. For instance, if A2=5IA^2 = 5I, then A8=(A2)4=(5I)4=54I4=625IA^8 = (A^2)^4 = (5I)^4 = 5^4 I^4 = 625I.


Worked Example:

Problem: Let

A=(0110).A = \begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix}.
Compute A101A^{101}.

Solution:

Step 1: Compute the first few powers of AA to identify a pattern.

A1=(0110)A^1 = \begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix}

Step 2: Calculate A2A^2.

A2=AA=(0110)(0110)=((0)(0)+(1)(1)(0)(1)+(1)(0)(1)(0)+(0)(1)(1)(1)+(0)(0))=(1001)\begin{aligned}A^2 & = A \cdot A \\ & = \begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix} \begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix} \\ & = \begin{pmatrix} (0)(0)+(-1)(1) & (0)(-1)+(-1)(0) \\ (1)(0)+(0)(1) & (1)(-1)+(0)(0) \end{pmatrix} \\ & = \begin{pmatrix} -1 & 0 \\ 0 & -1 \end{pmatrix}\end{aligned}

We observe that A2=IA^2 = -I.

Step 3: Use this pattern to simplify the calculation of A101A^{101}.

A101=A100A1=(A2)50A\begin{aligned}A^{101} & = A^{100} \cdot A^1 \\ & = (A^2)^{50} \cdot A\end{aligned}

Step 4: Substitute A2=IA^2 = -I.

(A2)50A=(I)50A=(1)50I50A\begin{aligned}(A^2)^{50} \cdot A & = (-I)^{50} \cdot A \\ & = (-1)^{50} I^{50} \cdot A\end{aligned}

Step 5: Simplify the expression. Since Ik=II^k = I for any positive integer kk, and (1)50=1(-1)^{50} = 1.

1IA=A\begin{aligned}1 \cdot I \cdot A & = A\end{aligned}

Answer: A101=A=A^{101} = A =

(0110)\boxed{\begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix}}

---

4. Vector Operations and Orthogonality

A vector in Rn\mathbb{R}^n can be represented as an n×1n \times 1 matrix (a column vector) or a 1×n1 \times 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,vRnu, v \in \mathbb{R}^n can be expressed using matrix multiplication as uTvu^T v.
If

u=(u1un)andv=(v1vn),u = \begin{pmatrix} u_1 \\ \vdots \\ u_n \end{pmatrix} \quad \text{and} \quad v = \begin{pmatrix} v_1 \\ \vdots \\ v_n \end{pmatrix},
then:
uTv=(u1un)(v1vn)=i=1nuivi\begin{aligned}u^T v & = \begin{pmatrix} u_1 & \cdots & u_n \end{pmatrix} \begin{pmatrix} v_1 \\ \vdots \\ v_n \end{pmatrix} \\
& = \sum_{i=1}^{n} u_i v_i\end{aligned}

The result is a 1×11 \times 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\mathbb{R}^n is always linearly independent. Since the dimension of Rn\mathbb{R}^n is nn, any set of linearly independent vectors in Rn\mathbb{R}^n can have at most nn vectors. Consequently, the maximum number of non-zero, mutually orthogonal vectors in Rn\mathbb{R}^n is nn.

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, RiRjR_i \leftrightarrow R_j | det(B)=det(A)\det(B) = -\det(A) |
| 2. Scaling | Multiply a row by a non-zero scalar, RikRiR_i \to kR_i | det(B)=kdet(A)\det(B) = k \cdot \det(A) |
| 3. Addition | Add a multiple of one row to another, RiRi+kRjR_i \to R_i + kR_j | det(B)=det(A)\det(B) = \det(A) |

A crucial consequence is that elementary row operations preserve the invertibility of a matrix. A matrix AA is invertible if and only if det(A)0\det(A) \neq 0. Since these operations only multiply the determinant by non-zero scalars or leave it unchanged, if det(A)0\det(A) \neq 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 A100A^{100}, never attempt direct multiplication. The problem is almost certainly designed around a special property of the matrix.

  • Calculate A2A^2.

  • If A2A^2 is simple (e.g., II, I-I, kAkA, OO), use this to simplify the exponent.

  • If A2A^2 is not simple, calculate A3A^3. Look for a cycle (Ak=IA^k=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)\operatorname{tr}(QP) where QQ is an n×mn \times m matrix and PP is an m×nm \times n matrix, it might be easier to compute tr(PQ)\operatorname{tr}(PQ) if the resulting matrix PQPQ is smaller or simpler.

    • To check if a matrix expression is symmetric, compute its transpose using properties like (AB)T=BTAT(AB)^T = B^T A^T and (A+B)T=AT+BT(A+B)^T = A^T+B^T instead of computing the full matrix product.

---

Common Mistakes

⚠️ Avoid These Errors
    • Assuming Commutativity: A common error is to assume AB=BAAB = 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(A+B)^2 = (A+B)(A+B) = A^2 + AB + BA + B^2, which is NOT A2+2AB+B2A^2 + 2AB + B^2 unless AA and BB commute.
    • Incorrect Transpose of a Product: Applying the transpose operator to a product as (AB)T=ATBT(AB)^T = A^T B^T.
✅ The correct property is the reversal law: (AB)T=BTAT(AB)^T = B^T A^T.
    • Confusing Trace of Product: Assuming tr(AB)=tr(A)tr(B)\operatorname{tr}(AB) = \operatorname{tr}(A) \cdot \operatorname{tr}(B). This is incorrect.
✅ The correct property is tr(AB)=tr(BA)\operatorname{tr}(AB) = \operatorname{tr}(BA). There is no simple relation involving tr(A)\operatorname{tr}(A) and tr(B)\operatorname{tr}(B) separately.
    • Row Swaps and Trace: Assuming that swapping two rows of a matrix preserves its trace.
✅ Swapping rows ii and jj generally changes the diagonal elements aiia_{ii} and ajja_{jj}, thus altering the trace.

---

Practice Questions

:::question type="NAT" question="Let matrices PP and QQ be defined as P=(102311)P = \begin{pmatrix} 1 & 0 & 2 \\ 3 & -1 & 1 \end{pmatrix} and Q=(410215)Q = \begin{pmatrix} 4 & 1 \\ 0 & 2 \\ 1 & 5 \end{pmatrix}. Calculate the tr\operatorname{tr} of the matrix product QPQP." answer="12" hint="Recall the cyclic property of the trace. It may be easier to compute the tr\operatorname{tr} of PQPQ than QPQP." solution="
Step 1: State the relevant property of the trace.
The cyclic property of the trace states that for matrices Qn×mQ_{n \times m} and Pm×nP_{m \times n}, we have tr(QP)=tr(PQ)\operatorname{tr}(QP) = \operatorname{tr}(PQ).

Step 2: Determine the dimensions of the products.
PP is a 2×32 \times 3 matrix and QQ is a 3×23 \times 2 matrix.
The product QPQP is a 3×33 \times 3 matrix.
The product PQPQ is a 2×22 \times 2 matrix.
Calculating the trace via PQPQ requires computing a smaller matrix.

Step 3: Calculate the matrix product PQPQ.

PQ=(102311)(410215)PQ = \begin{pmatrix} 1 & 0 & 2 \\ 3 & -1 & 1 \end{pmatrix} \begin{pmatrix} 4 & 1 \\ 0 & 2 \\ 1 & 5 \end{pmatrix}

=(1(4)+0(0)+2(1)1(1)+0(2)+2(5)3(4)+(1)(0)+1(1)3(1)+(1)(2)+1(5))= \begin{pmatrix} 1(4)+0(0)+2(1) & 1(1)+0(2)+2(5) \\ 3(4)+(-1)(0)+1(1) & 3(1)+(-1)(2)+1(5) \end{pmatrix}

=(611136)= \begin{pmatrix} 6 & 11 \\ 13 & 6 \end{pmatrix}

Step 4: Compute the trace of PQPQ.
The trace is the sum of the diagonal elements.

tr(PQ)=6+6=12\operatorname{tr}(PQ) = 6 + 6 = 12

Result:
Since tr(QP)=tr(PQ)\operatorname{tr}(QP) = \operatorname{tr}(PQ), the trace of QPQP is 12.
Answer: \boxed{12}
"
:::

:::question type="MSQ" question="Let AA and BB be n×nn \times n symmetric matrices. Which of the following matrices are always symmetric?" options=["ABA-B", "ABAB", "ABAABA", "A2A^2"] answer="A-B,ABA,A^2" hint="A matrix MM is symmetric if MT=MM^T = M. Use the properties of transpose, including (XY)T=YTXT(XY)^T = Y^T X^T, and the fact that AT=AA^T = A and BT=BB^T = B." solution="
A matrix MM is symmetric if MT=MM^T = M. We are given that AT=AA^T = A and BT=BB^T = B. We test each option.

Option A: ABA-B
Let M=ABM = A-B.

MT=(AB)T=ATBTM^T = (A-B)^T = A^T - B^T

Since AA and BB are symmetric, AT=AA^T = A and BT=BB^T = B.
MT=AB=MM^T = A - B = M

Thus, ABA-B is always symmetric.

Option B: ABAB
Let M=ABM = AB.

MT=(AB)T=BTATM^T = (AB)^T = B^T A^T

Using the symmetric property, we get:
MT=BAM^T = BA

For MM to be symmetric, we need MT=MM^T = M, which means we need BA=ABBA = AB. Since matrix multiplication is not generally commutative, this condition does not always hold. Thus, ABAB is not always symmetric.

Option C: ABAABA
Let M=ABAM = ABA.

MT=(ABA)T=ATBTATM^T = (ABA)^T = A^T B^T A^T

Using the symmetric property, we get:
MT=ABA=MM^T = A B A = M

Thus, ABAABA is always symmetric.

Option D: A2A^2
Let M=A2=AAM = A^2 = AA.

MT=(AA)T=ATATM^T = (AA)^T = A^T A^T

Using the symmetric property, we get:
MT=AA=A2=MM^T = A A = A^2 = M

Thus, A2A^2 is always symmetric.

The correct options are ABA-B, ABAABA, and A2A^2.
"
:::

:::question type="MCQ" question="Consider the matrix A=(001100010)A = \begin{pmatrix} 0 & 0 & 1 \\ 1 & 0 & 0 \\ 0 & 1 & 0 \end{pmatrix}. Which of the following is equal to A2025A^{2025}?" options=["(001100010)\begin{pmatrix} 0 & 0 & 1 \\\\ 1 & 0 & 0 \\\\ 0 & 1 & 0 \end{pmatrix}","(010001100)\begin{pmatrix} 0 & 1 & 0 \\\\ 0 & 0 & 1 \\\\ 1 & 0 & 0 \end{pmatrix}","(100010001)\begin{pmatrix} 1 & 0 & 0 \\\\ 0 & 1 & 0 \\\\ 0 & 0 & 1 \end{pmatrix}","(110011101)\begin{pmatrix} 1 & 1 & 0 \\\\ 0 & 1 & 1 \\\\ 1 & 0 & 1 \end{pmatrix}"] answer="(100010001)\begin{pmatrix} 1 & 0 & 0 \\\\ 0 & 1 & 0 \\\\ 0 & 0 & 1 \end{pmatrix}" hint="Calculate the first few powers of AA (A2A^2, A3A^3) to find a repeating pattern. Use this pattern to simplify the high exponent." solution="
Step 1: Calculate A2A^2.

A2=AA=(001100010)(001100010)=(010001100)A^2 = A \cdot A = \begin{pmatrix} 0 & 0 & 1 \\ 1 & 0 & 0 \\ 0 & 1 & 0 \end{pmatrix} \begin{pmatrix} 0 & 0 & 1 \\ 1 & 0 & 0 \\ 0 & 1 & 0 \end{pmatrix} = \begin{pmatrix} 0 & 1 & 0 \\ 0 & 0 & 1 \\ 1 & 0 & 0 \end{pmatrix}

Step 2: Calculate A3A^3.

A3=A2A=(010001100)(001100010)=(100010001)A^3 = A^2 \cdot A = \begin{pmatrix} 0 & 1 & 0 \\ 0 & 0 & 1 \\ 1 & 0 & 0 \end{pmatrix} \begin{pmatrix} 0 & 0 & 1 \\ 1 & 0 & 0 \\ 0 & 1 & 0 \end{pmatrix} = \begin{pmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{pmatrix}

Step 3: Identify the pattern.
We observe that A3=IA^3 = I, the identity matrix. This means the powers of AA will cycle with a period of 3.

Step 4: Use the pattern to evaluate A2025A^{2025}.
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=92+0+2+5=9, which is divisible by 3. Thus, 2025=3k2025 = 3k for some integer kk. Specifically, 2025=3×6752025 = 3 \times 675.

Step 5: Simplify the expression.

A2025=A3×675=(A3)675A^{2025} = A^{3 \times 675} = (A^3)^{675}

Since A3=IA^3 = I:
(I)675=I(I)^{675} = I

Result:

A2025=I=(100010001)A^{2025} = I = \begin{pmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{pmatrix}

"
:::

:::question type="NAT" question="Given matrices A=(123456)A = \begin{pmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{pmatrix} and B=(789123)B = \begin{pmatrix} 7 & 8 \\ 9 & 1 \\ 2 & 3 \end{pmatrix}, if C=ABC = AB, find the value of the element c21c_{21}." answer="85" hint="The element cijc_{ij} of a product matrix C=ABC = AB is found by taking the dot product of the ii-th row of AA and the jj-th column of BB. You do not need to compute the entire matrix CC." solution="
Step 1: Recall the formula for an element of a product matrix.
The element in the ii-th row and jj-th column of the product matrix C=ABC = AB is given by cij=kaikbkjc_{ij} = \sum_{k} a_{ik} b_{kj}. For c21c_{21}, we need the elements from the 2nd row of AA and the 1st column of BB.

Step 2: Identify the 2nd row of AA and the 1st column of BB.
Row 2 of AA is (456)\begin{pmatrix} 4 & 5 & 6 \end{pmatrix}.
Column 1 of BB is (792)\begin{pmatrix} 7 \\ 9 \\ 2 \end{pmatrix}.

Step 3: Compute the dot product.

c21=(4)(7)+(5)(9)+(6)(2)c_{21} = (4)(7) + (5)(9) + (6)(2)

Step 4: Perform the arithmetic.

c21=28+45+12c_{21} = 28 + 45 + 12

c21=85c_{21} = 85

Result:
The value of the element c21c_{21} is 85.
Answer: 85\boxed{85}
"
:::

:::question type="MCQ" question="In the vector space R5\mathbb{R}^5, what is the maximum possible number of non-zero vectors in a set L\mathcal{L} such that for every pair of distinct vectors u,vLu, v \in \mathcal{L}, their dot product uTvu^T v is zero?" options=["4","5","6","25"] answer="5" hint="This question concerns the properties of mutually orthogonal vectors in an nn-dimensional space." solution="
Step 1: Interpret the given condition.
The condition uTv=0u^T v = 0 for any two distinct vectors u,vu, v in the set L\mathcal{L} means that L\mathcal{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\mathbb{R}^5, 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\mathcal{L}.
Since the set L\mathcal{L} must be linearly independent, and the space R5\mathbb{R}^5 can contain at most 5 linearly independent vectors, the maximum possible cardinality (number of vectors) for L\mathcal{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 (ABBAAB \neq 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(AB)^T = B^T A^T, and the cyclic property of trace, tr(AB)=tr(BA)\operatorname{tr}(AB) = \operatorname{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 A2A^2 and A3A^3 to find a simplifying pattern (e.g., Ak=IA^k = I, Ak=OA^k = O). Direct calculation is never the intended path.

  • Orthogonality Implies Linear Independence: In an nn-dimensional space, you can have at most nn 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, A1A^{-1}, is defined such that AA1=IAA^{-1} = I, a direct application of matrix multiplication.

    • Eigenvalues and Eigenvectors: The core eigenvalue equation is Ax=λxAx = \lambda 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 AA of order nn, the determinant, denoted as det(A)\det(A) or A|A|, is a uniquely defined scalar value associated with the matrix. It is a function that maps an n×nn \times n matrix to a real or complex number. For a 2×22 \times 2 matrix, the determinant is defined as:

If

A=(abcd)A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}

then
det(A)=adbc\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×22 \times 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×nn \times n matrix A=[aij]A = [a_{ij}].

  • The minor of the element aija_{ij}, denoted MijM_{ij}, is the determinant of the (n1)×(n1)(n-1) \times (n-1) submatrix formed by deleting the ii-th row and jj-th column of AA.
  • The cofactor of the element aija_{ij}, denoted CijC_{ij}, is related to the minor by the following expression:
Cij=(1)i+jMijC_{ij} = (-1)^{i+j} M_{ij}

The term (1)i+j(-1)^{i+j} creates a "checkerboard" pattern of signs.

Laplace Expansion

The determinant of an n×nn \times n matrix AA can be computed by expanding along any row or any column.

  • Expansion along row ii:
det(A)=j=1naijCij=ai1Ci1+ai2Ci2++ainCin\det(A) = \sum_{j=1}^{n} a_{ij} C_{ij} = a_{i1}C_{i1} + a_{i2}C_{i2} + \dots + a_{in}C_{in}
  • Expansion along column jj:
det(A)=i=1naijCij=a1jC1j+a2jC2j++anjCnj\det(A) = \sum_{i=1}^{n} a_{ij} C_{ij} = a_{1j}C_{1j} + a_{2j}C_{2j} + \dots + a_{nj}C_{nj}

Choosing a row or column with the most zeros significantly simplifies the computation.

Worked Example:

Problem: Calculate the determinant of the matrix

A=(210314521)A = \begin{pmatrix} 2 & 1 & 0 \\ 3 & -1 & 4 \\ 5 & 2 & 1 \end{pmatrix}

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=1i=1).

det(A)=a11C11+a12C12+a13C13\det(A) = a_{11}C_{11} + a_{12}C_{12} + a_{13}C_{13}

Step 2: Calculate each term.

The first term involves a11=2a_{11} = 2. The cofactor is

C11=(1)1+11421C_{11} = (-1)^{1+1} \begin{vmatrix} -1 & 4 \\ 2 & 1 \end{vmatrix}

C11=(1)((1)(1)(4)(2))=18=9C_{11} = (1) ((-1)(1) - (4)(2)) = -1 - 8 = -9
a11C11=2(9)=18a_{11}C_{11} = 2(-9) = -18

The second term involves a12=1a_{12} = 1. The cofactor is

C12=(1)1+23451C_{12} = (-1)^{1+2} \begin{vmatrix} 3 & 4 \\ 5 & 1 \end{vmatrix}

C12=(1)((3)(1)(4)(5))=(320)=17C_{12} = (-1) ((3)(1) - (4)(5)) = -(3 - 20) = 17
a12C12=1(17)=17a_{12}C_{12} = 1(17) = 17

The third term involves a13=0a_{13} = 0.

a13C13=0C13=0a_{13}C_{13} = 0 \cdot C_{13} = 0

Step 3: Sum the terms to find the determinant.

det(A)=18+17+0\det(A) = -18 + 17 + 0

Step 4: Compute the final answer.

det(A)=1\det(A) = -1

Answer: 1\boxed{-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 AA and BB be square matrices of order nn.

  • Determinant of Transpose: The determinant of a matrix is equal to the determinant of its transpose.

  • det(A)=det(AT)\det(A) = \det(A^T)

  • Product Rule: The determinant of a product of matrices is the product of their individual determinants.

  • det(AB)=det(A)det(B)\det(AB) = \det(A) \det(B)

  • Power of a Matrix: A direct consequence of the product rule. For any non-negative integer kk:

  • det(Ak)=(det(A))k\det(A^k) = (\det(A))^k

  • Scalar Multiplication: If a matrix AA is multiplied by a scalar kk, the determinant is scaled by knk^n.

  • det(kA)=kndet(A)\det(kA) = k^n \det(A)

  • Determinant of Inverse: The determinant of the inverse of a non-singular matrix is the reciprocal of its determinant.

  • det(A1)=1det(A)\det(A^{-1}) = \frac{1}{\det(A)}

    This follows from AA1=IA A^{-1} = I, so det(A)det(A1)=det(I)=1\det(A) \det(A^{-1}) = \det(I) = 1.

  • Effect of Row/Column Operations:

  • * Swapping two rows or two columns multiplies the determinant by 1-1.
    * Multiplying a single row or column by a scalar kk multiplies the determinant by kk.
    * 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 AA is invertible (non-singular) if and only if det(A)0\det(A) \neq 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]A = [a_{ij}] is triangular, then det(A)=a11a22ann\det(A) = a_{11} a_{22} \dots a_{nn}. Upper Triangular a 0 0 b c 0 d e f Lower Triangular a b c 0 d e 0 0 f det = acf det = adf
    • Identity Matrix: The determinant of the identity matrix InI_n is 11.
    det(In)=1\det(I_n) = 1
    • Zero Matrix: The determinant of a zero matrix OO is 00.
    det(O)=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=2IA^3 = 2I or P2=P1P^2 = P^{-1}, take the determinant of both sides. Use properties like det(Ak)=(det(A))k\det(A^k) = (\det(A))^k and det(kA)=kndet(A)\det(kA) = k^n \det(A) to form a scalar equation in terms of det(A)\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 RiRi+kRjR_i \to R_i + k R_j 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 00 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)\det(A + B) = \det(A) + \det(B). This is almost never true.
    Correct Approach: There is no general simplification for det(A+B)\det(A+B). The matrix sum A+BA+B must be computed first, and then its determinant is found.
      • Incorrect Scalar Multiplication: det(kA)=kdet(A)\det(kA) = k \det(A). This is only true for n=1n=1 or if k=1k=1.
    Correct Approach: For an n×nn \times n matrix, the correct property is det(kA)=kndet(A)\det(kA) = k^n \det(A). The exponent nn is frequently forgotten.
      • Ignoring Matrix Order: When solving an equation like det(A)=4\det(A) = 4 for a 3×33 \times 3 matrix, calculating det(2A1)\det(2A^{-1}) as 2×(1/4)=1/22 \times (1/4) = 1/2.
    Correct Approach: Use the properties correctly:
    det(2A1)=23det(A1)=8×1det(A)=8×14=2\det(2A^{-1}) = 2^3 \det(A^{-1}) = 8 \times \frac{1}{\det(A)} = 8 \times \frac{1}{4} = 2

    ---

    Practice Questions

    :::question type="MCQ" question="Let AA be a 3×33 \times 3 non-singular matrix such that A3=IA^3 = -I, where II is the identity matrix. If B=(2A)2B = (2A)^2, what is the value of det(B)\det(B)?" options=["44","88","1616","6464"] answer="64" hint="Take the determinant of the given matrix equation to find det(A)\det(A). Then use the properties of determinants to find det(B)\det(B)." solution="
    Step 1: Start with the given matrix equation.

    A3=IA^3 = -I

    Step 2: Take the determinant of both sides.

    det(A3)=det(I)\det(A^3) = \det(-I)

    Step 3: Apply the properties det(Xk)=(det(X))k\det(X^k) = (\det(X))^k and det(kX)=kndet(X)\det(kX) = k^n \det(X). For a 3×33 \times 3 matrix, n=3n=3.

    (det(A))3=(1)3det(I)(\det(A))^3 = (-1)^3 \det(I)
    (det(A))3=11(\det(A))^3 = -1 \cdot 1
    (det(A))3=1(\det(A))^3 = -1

    Since the determinant is a scalar, we have det(A)=1\det(A) = -1.

    Step 4: Now, consider the expression for matrix BB.

    B=(2A)2=(2A)(2A)=4A2B = (2A)^2 = (2A)(2A) = 4A^2

    Step 5: Find the determinant of BB.

    det(B)=det(4A2)\det(B) = \det(4A^2)

    Step 6: Apply the scalar multiplication and power properties for determinants.

    det(B)=43det(A2)\det(B) = 4^3 \det(A^2)
    det(B)=64(det(A))2\det(B) = 64 (\det(A))^2

    Step 7: Substitute the value of det(A)\det(A) found in Step 3.

    det(B)=64(1)2\det(B) = 64 (-1)^2
    det(B)=641=64\det(B) = 64 \cdot 1 = 64

    Result:

    The value of the determinant of BB is 6464.
    Answer: 64\boxed{64}
    "
    :::

    :::question type="NAT" question="Consider the matrix P=(1aa21bb21cc2)P = \begin{pmatrix} 1 & a & a^2 \\ 1 & b & b^2 \\ 1 & c & c^2 \end{pmatrix}. Given that a=1.5a=1.5, b=2.5b=2.5, and c=4.5c=4.5, the value of det(P)\det(P) is:" answer="9" hint="This is a Vandermonde matrix. Its determinant has a well-known formula. Alternatively, use row operations R2R2R1R_2 \to R_2 - R_1 and R3R3R1R_3 \to R_3 - R_1 to simplify." solution="
    Step 1: The given matrix is a Vandermonde matrix.

    P=(1aa21bb21cc2)P = \begin{pmatrix} 1 & a & a^2 \\ 1 & b & b^2 \\ 1 & c & c^2 \end{pmatrix}

    The determinant of a 3×33 \times 3 Vandermonde matrix of this form is given by the formula det(P)=(ba)(ca)(cb)\det(P) = (b-a)(c-a)(c-b).

    Step 2: Substitute the given values a=1.5a=1.5, b=2.5b=2.5, and c=4.5c=4.5 into the formula.

    ba=2.51.5=1.0b-a = 2.5 - 1.5 = 1.0
    ca=4.51.5=3.0c-a = 4.5 - 1.5 = 3.0
    cb=4.52.5=2.0c-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) = (1.0) \times (3.0) \times (2.0)
    det(P)=6.0\det(P) = 6.0

    Alternative Method (Row Operations):

    Step 1: Apply row operations to introduce zeros in the first column. Let R2R2R1R_2 \to R_2 - R_1 and R3R3R1R_3 \to R_3 - R_1. These operations do not change the determinant.

    P=(1aa20bab2a20cac2a2)P' = \begin{pmatrix} 1 & a & a^2 \\ 0 & b-a & b^2-a^2 \\ 0 & c-a & c^2-a^2 \end{pmatrix}

    Step 2: Expand the determinant along the first column.

    det(P)=1bab2a2cac2a2\det(P) = 1 \cdot \begin{vmatrix} b-a & b^2-a^2 \\ c-a & c^2-a^2 \end{vmatrix}

    Step 3: Factor the terms in the second column.

    det(P)=ba(ba)(b+a)ca(ca)(c+a)\det(P) = \begin{vmatrix} b-a & (b-a)(b+a) \\ c-a & (c-a)(c+a) \end{vmatrix}

    Step 4: Factor out (ba)(b-a) from the first row and (ca)(c-a) from the second row.

    det(P)=(ba)(ca)1b+a1c+a\det(P) = (b-a)(c-a) \begin{vmatrix} 1 & b+a \\ 1 & c+a \end{vmatrix}

    Step 5: Calculate the remaining 2×22 \times 2 determinant.

    det(P)=(ba)(ca)((1)(c+a)(1)(b+a))\det(P) = (b-a)(c-a) ((1)(c+a) - (1)(b+a))
    det(P)=(ba)(ca)(c+aba)\det(P) = (b-a)(c-a) (c+a-b-a)
    det(P)=(ba)(ca)(cb)\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.5a=1.5, b=2.5, c=4.5.

    det(P)=(2.51.5)(4.51.5)(4.52.5)\det(P) = (2.5 - 1.5)(4.5 - 1.5)(4.5 - 2.5)
    det(P)=(1)(3)(2)=6\det(P) = (1)(3)(2) = 6

    Result:

    The value of det(P)\det(P) is 66.
    Answer: 6\boxed{6}
    "
    :::

    :::question type="MSQ" question="Let AA and BB be n×nn \times n invertible matrices, and let kk be a non-zero scalar. Which of the following statements are ALWAYS true?" options=["det(A+B)=det(A)+det(B)\det(A+B) = \det(A) + \det(B)","det((AB)1)=det(A1)det(B1)\det((AB)^{-1}) = \det(A^{-1})\det(B^{-1})","det(kA)=kdet(A)\det(k A) = k \det(A)","det(ABA1)=det(B)\det(A B A^{-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)\det(A+B) = \det(A) + \det(B).
    This is a common misconception. Let A=I2=<divclass="mathdisplay"><spanclass="katexdisplay"><spanclass="katex"><spanclass="katexmathml"><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/xtex">(1amp;00amp;1)</annotation></semantics></math></span><spanclass="katexhtml"ariahidden="true"><spanclass="base"><spanclass="strut"style="height:2.4em;verticalalign:0.95em;"></span><spanclass="minner"><spanclass="mopendelimcenter"style="top:0em;"><spanclass="delimsizingsize3">(</span></span><spanclass="mord"><spanclass="mtable"><spanclass="colalignc"><spanclass="vlisttvlistt2"><spanclass="vlistr"><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="vlists"></span></span><spanclass="vlistr"><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="colalignc"><spanclass="vlisttvlistt2"><spanclass="vlistr"><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="vlists"></span></span><spanclass="vlistr"><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>andA = I_2 = <div class="math-display"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><mo fence="true">(</mo><mtable rowspacing="0.16em" columnalign="center center" columnspacing="1em"><mtr><mtd><mstyle scriptlevel="0" displaystyle="false"><mn>1</mn></mstyle></mtd><mtd><mstyle scriptlevel="0" displaystyle="false"><mn>0</mn></mstyle></mtd></mtr><mtr><mtd><mstyle scriptlevel="0" displaystyle="false"><mn>0</mn></mstyle></mtd><mtd><mstyle scriptlevel="0" displaystyle="false"><mn>1</mn></mstyle></mtd></mtr></mtable><mo fence="true">)</mo></mrow><annotation encoding="application/x-tex">\begin{pmatrix} 1 & amp; 0 \\ 0 & amp; 1 \end{pmatrix}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:2.4em;vertical-align:-0.95em;"></span><span class="minner"><span class="mopen delimcenter" style="top:0em;"><span class="delimsizing size3">(</span></span><span class="mord"><span class="mtable"><span class="col-align-c"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.45em;"><span style="top:-3.61em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord">1</span></span></span><span style="top:-2.41em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord">0</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.95em;"><span></span></span></span></span></span><span class="arraycolsep" style="width:0.5em;"></span><span class="arraycolsep" style="width:0.5em;"></span><span class="col-align-c"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.45em;"><span style="top:-3.61em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord">0</span></span></span><span style="top:-2.41em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord">1</span></span></span></span><span class="vlist-s">​</span></span><span class="vlist-r"><span class="vlist" style="height:0.95em;"><span></span></span></span></span></span></span></span><span class="mclose delimcenter" style="top:0em;"><span class="delimsizing size3">)</span></span></span></span></span></span></span></div> andB = I_2 =

    (1001)\begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}
    .
    det(A)=1\det(A)=1

    det(B)=1\det(B)=1

    So
    det(A)+det(B)=2\det(A)+\det(B)=2

    A+B=(2002)A+B = \begin{pmatrix} 2 & 0 \\ 0 & 2 \end{pmatrix}

    det(A+B)=4\det(A+B) = 4

    Since 424 \neq 2, statement A is false.

    Statement B: det((AB)1)=det(A1)det(B1)\det((AB)^{-1}) = \det(A^{-1})\det(B^{-1}).
    Let's simplify both sides using determinant properties.
    Left Hand Side (LHS):

    det((AB)1)=1det(AB)=1det(A)det(B)\det((AB)^{-1}) = \frac{1}{\det(AB)} = \frac{1}{\det(A)\det(B)}

    Right Hand Side (RHS):
    det(A1)det(B1)=1det(A)1det(B)=1det(A)det(B)\det(A^{-1})\det(B^{-1}) = \frac{1}{\det(A)} \frac{1}{\det(B)} = \frac{1}{\det(A)\det(B)}

    Since LHS = RHS, statement B is true.

    Statement C: det(kA)=kdet(A)\det(k A) = k \det(A).
    The correct property is det(kA)=kndet(A)\det(kA) = k^n \det(A), where nn is the order of the matrix. The statement is only true if n=1n=1. For any n>1n > 1 and k1k \neq 1, it is false. For example, if A=I2A=I_2 and k=2k=2,

    det(2I2)=det(2002)=4\det(2I_2) = \det\begin{pmatrix} 2 & 0 \\ 0 & 2 \end{pmatrix} = 4

    But
    2det(I2)=21=22 \det(I_2) = 2 \cdot 1 = 2

    Since 424 \neq 2, statement C is false.

    Statement D: det(ABA1)=det(B)\det(A B A^{-1}) = \det(B).
    Using the product rule for determinants:

    det(ABA1)=det(A)det(B)det(A1)\det(A B A^{-1}) = \det(A) \cdot \det(B) \cdot \det(A^{-1})

    Since det(A1)=1/det(A)\det(A^{-1}) = 1/\det(A):
    det(ABA1)=det(A)det(B)1det(A)\det(A B A^{-1}) = \det(A) \cdot \det(B) \cdot \frac{1}{\det(A)}

    As AA is invertible, det(A)0\det(A) \neq 0, so we can cancel the terms.
    det(ABA1)=det(B)\det(A B A^{-1}) = \det(B)

    Statement D is true. The matrix ABA1ABA^{-1} is known as a similarity transformation of BB.

    Result: The correct statements are B and D.
    Answer: B, D\boxed{\text{B, D}}
    "
    :::

    :::question type="MCQ" question="If AA is a 3×33 \times 3 matrix with det(A)=5\det(A) = 5, what is the value of det(adj(A))\det(\operatorname{adj}(A))?" options=["55","1/51/5","2525","125125"] answer="25" hint="Recall the relationship between the determinant of a matrix and the determinant of its adjoint: det(adj(A))=(det(A))n1\det(\operatorname{adj}(A)) = (\det(A))^{n-1}." solution="
    Step 1: State the formula for the determinant of the adjoint of a matrix.
    For an n×nn \times n matrix AA, the determinant of its adjoint is given by:

    det(adj(A))=(det(A))n1\det(\operatorname{adj}(A)) = (\det(A))^{n-1}

    Step 2: Identify the given values from the problem statement.
    The matrix AA is of order n=3n=3.
    The determinant of AA is det(A)=5\det(A) = 5.

    Step 3: Substitute these values into the formula.

    det(adj(A))=(5)31\det(\operatorname{adj}(A)) = (5)^{3-1}
    =52= 5^2
    =25= 25

    Result:
    The value of det(adj(A))\det(\operatorname{adj}(A)) is 2525.
    Answer: 25\boxed{25}
    "
    :::

    ---

    Summary

    Key Takeaways for GATE

    • Invertibility: A square matrix AA is invertible if and only if det(A)0\det(A) \neq 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(AB) = \det(A)\det(B), det(A1)=1/det(A)\det(A^{-1}) = 1/\det(A), det(Ak)=(det(A))k\det(A^k) = (\det(A))^k, and det(kA)=kndet(A)\det(kA) = k^n \det(A).

    • Simplification: Row/column operations of the form RiRi+cRjR_i \to R_i + cR_j 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=N1M^2 = 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, A1=1det(A)adj(A)A^{-1} = \frac{1}{\det(A)} \operatorname{adj}(A), directly uses the determinant. You cannot find the inverse of a singular matrix.
      • Eigenvalues and Eigenvectors: The eigenvalues of a matrix AA are found by solving the characteristic equation, det(AλI)=0\det(A - \lambda 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 nn has full rank (nn) 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, 11, multiplying a matrix by its inverse yields the identity matrix, II. This operation is fundamental to solving systems of linear equations of the form Ax=bAx = 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 AA be a square matrix of order nn. If there exists another square matrix BB of the same order nn such that their product is the identity matrix InI_n, then BB is called the inverse of AA. This relationship is symmetric and is expressed as:

    AB=BA=InAB = BA = I_n

    The inverse of AA is denoted by A1A^{-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 AA is invertible if and only if its determinant is non-zero.

    Condition for Invertibility

    A square matrix AA has an inverse A1A^{-1} if and only if det(A)0\det(A) \neq 0.
    If det(A)=0\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 AA, its inverse A1A^{-1} is computed using its determinant and its adjugate (also known as the adjoint).

    📐 Inverse using Adjugate
    A1=1det(A)adj(A)A^{-1} = \frac{1}{\det(A)} \operatorname{adj}(A)

    Variables:

      • det(A)\det(A) = The determinant of matrix AA.

      • adj(A)\operatorname{adj}(A) = The adjugate (or adjoint) of matrix AA, which is the transpose of the cofactor matrix of AA.


    When to use: This is the general formula for finding the inverse of any non-singular square matrix, particularly for orders 3×33 \times 3 and higher.

    The adjugate of a matrix AA, denoted adj(A)\operatorname{adj}(A), is found by taking the transpose of the matrix of cofactors, CC. That is, adj(A)=CT\operatorname{adj}(A) = C^T. The element CijC_{ij} of the cofactor matrix is given by Cij=(1)i+jMijC_{ij} = (-1)^{i+j} M_{ij}, where MijM_{ij} is the minor of the element aija_{ij}.

    3. Inverse of a 2x2 Matrix

    For a 2×22 \times 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×22 \times 2 matrix A=(abcd)A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}, its inverse is:

    A1=1adbc(dbca)A^{-1} = \frac{1}{ad - bc} \begin{pmatrix} d & -b \\ -c & a \end{pmatrix}

    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=(4726)A = \begin{pmatrix} 4 & 7 \\ 2 & 6 \end{pmatrix}.

    Solution:

    Step 1: Calculate the determinant of AA.

    det(A)=(4)(6)(7)(2)=2414=10\det(A) = (4)(6) - (7)(2) = 24 - 14 = 10

    Since det(A)=100\det(A) = 10 \neq 0, the inverse exists.

    Step 2: Apply the shortcut formula for a 2×22 \times 2 matrix.

    A1=110(6724)A^{-1} = \frac{1}{10} \begin{pmatrix} 6 & -7 \\ -2 & 4 \end{pmatrix}

    Step 3: Distribute the scalar term into the matrix.

    A1=(6/107/102/104/10)A^{-1} = \begin{pmatrix} 6/10 & -7/10 \\ -2/10 & 4/10 \end{pmatrix}

    Step 4: Simplify the matrix elements.

    A1=(3/57/101/52/5)A^{-1} = \begin{pmatrix} 3/5 & -7/10 \\ -1/5 & 2/5 \end{pmatrix}

    Answer: A1=(3/57/101/52/5)\boxed{A^{-1} = \begin{pmatrix} 3/5 & -7/10 \\ -1/5 & 2/5 \end{pmatrix}}

    4. Inverse of a 3x3 Matrix

    Calculating the inverse of a 3×33 \times 3 matrix is more involved and requires a systematic application of the adjugate formula.

    Worked Example:

    Problem: Find the inverse of the matrix A=(123014560)A = \begin{pmatrix} 1 & 2 & 3 \\ 0 & 1 & 4 \\ 5 & 6 & 0 \end{pmatrix}.

    Solution:

    Step 1: Calculate the determinant of AA. We expand along the first row.

    det(A)=1146020450+30156\det(A) = 1 \begin{vmatrix} 1 & 4 \\ 6 & 0 \end{vmatrix} - 2 \begin{vmatrix} 0 & 4 \\ 5 & 0 \end{vmatrix} + 3 \begin{vmatrix} 0 & 1 \\ 5 & 6 \end{vmatrix}
    det(A)=1(024)2(020)+3(05)\det(A) = 1(0 - 24) - 2(0 - 20) + 3(0 - 5)
    det(A)=24+4015=1\det(A) = -24 + 40 - 15 = 1

    Since det(A)=10\det(A) = 1 \neq 0, the inverse exists.

    Step 2: Calculate the matrix of cofactors, CC.

    C11=(1)1+11460=24C_{11} = (-1)^{1+1} \begin{vmatrix} 1 & 4 \\ 6 & 0 \end{vmatrix} = -24
    C12=(1)1+20450=20C_{12} = (-1)^{1+2} \begin{vmatrix} 0 & 4 \\ 5 & 0 \end{vmatrix} = 20
    C13=(1)1+30156=5C_{13} = (-1)^{1+3} \begin{vmatrix} 0 & 1 \\ 5 & 6 \end{vmatrix} = -5
    C21=(1)2+12360=18C_{21} = (-1)^{2+1} \begin{vmatrix} 2 & 3 \\ 6 & 0 \end{vmatrix} = 18
    C22=(1)2+21350=15C_{22} = (-1)^{2+2} \begin{vmatrix} 1 & 3 \\ 5 & 0 \end{vmatrix} = -15
    C23=(1)2+31256=4C_{23} = (-1)^{2+3} \begin{vmatrix} 1 & 2 \\ 5 & 6 \end{vmatrix} = 4
    C31=(1)3+12314=5C_{31} = (-1)^{3+1} \begin{vmatrix} 2 & 3 \\ 1 & 4 \end{vmatrix} = 5
    C32=(1)3+21304=4C_{32} = (-1)^{3+2} \begin{vmatrix} 1 & 3 \\ 0 & 4 \end{vmatrix} = -4
    C33=(1)3+31201=1C_{33} = (-1)^{3+3} \begin{vmatrix} 1 & 2 \\ 0 & 1 \end{vmatrix} = 1

    The cofactor matrix is:

    C=(2420518154541)C = \begin{pmatrix} -24 & 20 & -5 \\ 18 & -15 & 4 \\ 5 & -4 & 1 \end{pmatrix}

    Step 3: Find the adjugate of AA by transposing the cofactor matrix CC.

    adj(A)=CT=(2418520154541)\operatorname{adj}(A) = C^T = \begin{pmatrix} -24 & 18 & 5 \\ 20 & -15 & -4 \\ -5 & 4 & 1 \end{pmatrix}

    Step 4: Apply the inverse formula A1=1det(A)adj(A)A^{-1} = \frac{1}{\det(A)} \operatorname{adj}(A).

    A1=11(2418520154541)A^{-1} = \frac{1}{1} \begin{pmatrix} -24 & 18 & 5 \\ 20 & -15 & -4 \\ -5 & 4 & 1 \end{pmatrix}

    Answer: A1=(2418520154541)\boxed{A^{-1} = \begin{pmatrix} -24 & 18 & 5 \\ 20 & -15 & -4 \\ -5 & 4 & 1 \end{pmatrix}}

    ---

    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×22 \times 2 matrices, the shortcut is significantly faster and less error-prone than the full adjugate method.

    • Be Systematic with Cofactors: For 3×33 \times 3 matrices, be meticulous when calculating cofactors. Pay close attention to the sign pattern determined by (1)i+j(-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 AA1=IAA^{-1} = I. Multiplying just the first row of AA by the first column of A1A^{-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,
    A1=1det(A)adj(A)A^{-1} = \frac{1}{\det(A)}\operatorname{adj}(A)
      • Incorrect Cofactor Signs: Errors frequently arise from miscalculating the sign (1)i+j(-1)^{i+j} for each cofactor. The sign pattern for a 3×33 \times 3 matrix is
    (+++++)\begin{pmatrix} + & - & + \\ - & + & - \\ + & - & + \end{pmatrix}
    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=(3142)A = \begin{pmatrix} 3 & -1 \\ -4 & 2 \end{pmatrix}?" options=["

    (11/223/2)\begin{pmatrix} 1 & 1/2 \\ 2 & 3/2 \end{pmatrix}
    ","
    (2143)\begin{pmatrix} 2 & 1 \\ 4 & 3 \end{pmatrix}
    ","
    (3/21/221)\begin{pmatrix} 3/2 & 1/2 \\ 2 & 1 \end{pmatrix}
    ","The inverse does not exist"] answer="
    (11/223/2)\begin{pmatrix} 1 & 1/2 \\ 2 & 3/2 \end{pmatrix}
    " 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)=64=2\det(A) = (3)(2) - (-1)(-4) = 6 - 4 = 2

    Since det(A)0\det(A) \neq 0, the inverse exists.

    Step 2: Apply the 2x2 inverse formula.

    A1=12(2143)A^{-1} = \frac{1}{2} \begin{pmatrix} 2 & 1 \\ 4 & 3 \end{pmatrix}

    Step 3: Simplify the expression.

    A1=(2/21/24/23/2)=(11/223/2)A^{-1} = \begin{pmatrix} 2/2 & 1/2 \\ 4/2 & 3/2 \end{pmatrix} = \begin{pmatrix} 1 & 1/2 \\ 2 & 3/2 \end{pmatrix}

    Answer: (11/223/2)\boxed{\begin{pmatrix} 1 & 1/2 \\ 2 & 3/2 \end{pmatrix}}
    "
    :::

    :::question type="NAT" question="Let A=(102213418)A = \begin{pmatrix} 1 & 0 & 2 \\ 2 & -1 & 3 \\ 4 & 1 & 8 \end{pmatrix}. If B=A1B = A^{-1}, what is the value of the element B23B_{23}?" answer="1" hint="The element B23B_{23} of the inverse matrix is given by 1det(A)C32\frac{1}{\det(A)} C_{32}, where C32C_{32} is the cofactor of the element at row 3, column 2 of matrix A." solution="
    Step 1: Calculate the determinant of AA.

    det(A)=1131802348+22141\det(A) = 1 \begin{vmatrix} -1 & 3 \\ 1 & 8 \end{vmatrix} - 0 \begin{vmatrix} 2 & 3 \\ 4 & 8 \end{vmatrix} + 2 \begin{vmatrix} 2 & -1 \\ 4 & 1 \end{vmatrix}

    det(A)=1(83)0+2(2(4))=11+12=1\det(A) = 1(-8 - 3) - 0 + 2(2 - (-4)) = -11 + 12 = 1

    Since det(A)0\det(A) \neq 0, the inverse exists.

    Step 2: The formula for an element of the inverse matrix is (A1)ij=Cjidet(A)(A^{-1})_{ij} = \frac{C_{ji}}{\det(A)}. We need to find B23B_{23}, which is (A1)23(A^{-1})_{23}.

    B23=(A1)23=C32det(A)B_{23} = (A^{-1})_{23} = \frac{C_{32}}{\det(A)}

    Step 3: Calculate the cofactor C32C_{32} of matrix AA.

    C32=(1)3+2M32=11223C_{32} = (-1)^{3+2} M_{32} = -1 \cdot \begin{vmatrix} 1 & 2 \\ 2 & 3 \end{vmatrix}

    C32=1((1)(3)(2)(2))=1(34)=1C_{32} = -1 \cdot ( (1)(3) - (2)(2) ) = -1 \cdot (3 - 4) = 1

    Step 4: Substitute the values into the formula for B23B_{23}.

    B23=11=1B_{23} = \frac{1}{1} = 1

    Answer: 1\boxed{1}
    "
    :::

    :::question type="MSQ" question="Let AA and BB be two invertible square matrices of the same order. Which of the following statements are ALWAYS true?" options=["(AB)1=A1B1(AB)^{-1} = A^{-1}B^{-1}","det(A1)=1det(A)\det(A^{-1}) = \frac{1}{\det(A)}","(A+B)1=A1+B1(A+B)^{-1} = A^{-1} + B^{-1}","(AT)1=(A1)T(A^T)^{-1} = (A^{-1})^T"] answer="det(A1)=1det(A)\det(A^{-1}) = \frac{1}{\det(A)},(AT)1=(A1)T(A^T)^{-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=A1B1(AB)^{-1} = A^{-1}B^{-1} is incorrect. The correct property is the 'reversal law' or 'socks-shoes property': (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1}.

    • Option B: det(A1)=1det(A)\det(A^{-1}) = \frac{1}{\det(A)} is correct. We know that AA1=IAA^{-1} = I. Taking the determinant of both sides gives det(AA1)=det(I)\det(AA^{-1}) = \det(I). Using the property det(XY)=det(X)det(Y)\det(XY) = \det(X)\det(Y), we get det(A)det(A1)=1\det(A)\det(A^{-1}) = 1. Since AA is invertible, det(A)0\det(A) \neq 0, so we can divide to get det(A1)=1det(A)\det(A^{-1}) = \frac{1}{\det(A)}.

    • Option C: (A+B)1=A1+B1(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=IA=I and B=IB=I. Then (A+B)1=(2I)1=12I(A+B)^{-1} = (2I)^{-1} = \frac{1}{2}I, whereas A1+B1=I+I=2IA^{-1}+B^{-1} = I+I = 2I.

    • Option D: (AT)1=(A1)T(A^T)^{-1} = (A^{-1})^T is correct. This is a standard property of matrix inverses. We can prove it by taking the transpose of AA1=IAA^{-1} = I, which gives (AA1)T=IT(AA^{-1})^T = I^T. This simplifies to (A1)TAT=I(A^{-1})^T A^T = I. By the definition of an inverse, (A1)T(A^{-1})^T is the inverse of ATA^T.

    Answer: Options B and D\boxed{\text{Options B and D}}
    "
    :::

    ---

    Summary

    Key Takeaways for GATE

    • Existence of Inverse: A square matrix AA is invertible if and only if its determinant is non-zero (det(A)0\det(A) \neq 0). This is the first and most crucial check.

    • The Adjugate Formula: The primary method for finding the inverse is

    • A1=1det(A)adj(A)A^{-1} = \frac{1}{\det(A)} \operatorname{adj}(A)

      The adjugate, adj(A)\operatorname{adj}(A), is the transpose of the cofactor matrix.
    • 2x2 Shortcut: For a matrix

    • (abcd)\begin{pmatrix} a & b \\ c & d \end{pmatrix}

      the inverse is
      1adbc(dbca)\frac{1}{ad-bc} \begin{pmatrix} d & -b \\ -c & a \end{pmatrix}

      This is a significant time-saver.
    • Key Properties: Remember the reversal law for products, (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1}, and the relationship with the determinant, det(A1)=1/det(A)\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=bAx=b via the solution x=A1bx = A^{-1}b, 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 AA and BB, the product ABAB is generally not equal to BABA. The dimensions must also be compatible for multiplication to be defined.

    • The Determinant Encodes Invertibility: A square matrix AA is invertible (non-singular) if and only if its determinant, A|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 AA and BB, AB=AB|AB| = |A||B| and (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1}. Furthermore, for an n×nn \times n matrix AA and a scalar kk, kA=knA|kA| = k^n|A|. The inverse is formally defined as

    A1=1Aadj(A)A^{-1} = \frac{1}{|A|} \operatorname{adj}(A)

    • Rank Determines Linear Independence: The rank of a matrix, denoted rank(A)\operatorname{rank}(A), corresponds to the number of linearly independent rows or columns. For an n×nn \times n matrix, rank(A)<n\operatorname{rank}(A) < n is equivalent to the condition A=0|A|=0.

    • Consistency of Linear Systems: The solvability of a system of linear equations AX=BAX=B is determined by comparing the rank of the coefficient matrix AA with the rank of the augmented matrix [AB]\left[ A \mid B \right].

    - Unique Solution: rank(A)=rank([AB])=n\operatorname{rank}(A) = \operatorname{rank}(\left[ A \mid B \right]) = n (number of variables).
    - Infinite Solutions: rank(A)=rank([AB])<n\operatorname{rank}(A) = \operatorname{rank}(\left[ A \mid B \right]) < n.
    - No Solution: rank(A)<rank([AB])\operatorname{rank}(A) < \operatorname{rank}(\left[ A \mid B \right]).

    • Properties of Special Matrices: We must be familiar with the defining properties of special matrix types. For an orthogonal matrix QQ, QTQ=IQ^T Q = I, which implies Q=±1|Q| = \pm 1. For a skew-symmetric matrix SS of odd order, S=0|S|=0.

    ---

    Chapter Review Questions

    :::question type="MCQ" question="Let AA be a non-singular 3×33 \times 3 matrix with A=2|A|=2. If B=adj(2A)B = \operatorname{adj}(2A), what is the value of the determinant of BB?" options=["64", "256", "1024", "4096"] answer="B" hint="Use the properties adj(M)=Mn1|\operatorname{adj}(M)| = |M|^{n-1} and kM=knM|kM| = k^n|M|." solution="
    We are asked to find the determinant of B=adj(2A)B = \operatorname{adj}(2A).
    The matrix AA is of order n=3n=3.
    We will use two fundamental properties of determinants:

  • For a scalar kk and an n×nn \times n matrix MM, kM=knM|kM| = k^n|M|.

  • For an n×nn \times n matrix MM, adj(M)=Mn1|\operatorname{adj}(M)| = |M|^{n-1}.
  • Let's apply the second property to our matrix BB:

    B=adj(2A)=2A31=2A2|B| = |\operatorname{adj}(2A)| = |2A|^{3-1} = |2A|^2

    Now, we apply the first property to evaluate 2A|2A|:
    2A=23A|2A| = 2^3 |A|

    Given that A=2|A|=2, we have:
    2A=8×2=16|2A| = 8 \times 2 = 16

    Substituting this result back into our expression for B|B|:
    B=(16)2=256|B| = (16)^2 = 256

    Therefore, the determinant of BB is 256.
    Answer: 256\boxed{256}
    "
    :::

    :::question type="NAT" question="A square matrix AA satisfies the equation A24A+4I=0A^2 - 4A + 4I = 0, where II is the identity matrix. If the inverse of the matrix AA is given by A1=1k(AcI)A^{-1} = \frac{1}{k}(A - cI), what is the numerical value of k+ck+c?" answer="0" hint="Multiply the characteristic equation by A1A^{-1} and rearrange the terms to match the form of the given inverse." solution="
    The given matrix equation is:

    A24A+4I=0A^2 - 4A + 4I = 0

    Since the constant term (4I4I) is non-zero, the matrix AA is invertible. We can multiply the entire equation by A1A^{-1}:
    A1(A24A+4I)=A1(0)A^{-1}(A^2 - 4A + 4I) = A^{-1}(0)

    A1A2A14A+A14I=0A^{-1}A^2 - A^{-1}4A + A^{-1}4I = 0

    Using the properties A1A=IA^{-1}A = I and A1I=A1A^{-1}I = A^{-1}:
    (A1A)A4(A1A)+4A1=0(A^{-1}A)A - 4(A^{-1}A) + 4A^{-1} = 0

    IA4I+4A1=0IA - 4I + 4A^{-1} = 0

    A4I+4A1=0A - 4I + 4A^{-1} = 0

    Now, we rearrange the equation to solve for A1A^{-1}:
    4A1=4IA4A^{-1} = 4I - A

    A1=14(4IA)A^{-1} = \frac{1}{4}(4I - A)

    This expression is in the form A1=1k(AcI)A^{-1} = \frac{1}{k}(A - cI). Let us rearrange our result to match this form:
    A1=14(A+4I)=14(A4I)A^{-1} = \frac{1}{4}(-A + 4I) = \frac{1}{-4}(A - 4I)

    Comparing A1=14(A4I)A^{-1} = \frac{1}{-4}(A - 4I) with A1=1k(AcI)A^{-1} = \frac{1}{k}(A - cI), we find:
    k=4k = -4 and c=4c = 4.
    The question asks for the value of k+ck+c.
    k+c=4+4=0k+c = -4 + 4 = 0

    Answer: 0\boxed{0}
    "
    :::

    :::question type="MCQ" question="Let PP be a 3×33 \times 3 skew-symmetric matrix. Which of the following statements must be true?" options=["PP is invertible", "P=1|P|=1", "All eigenvalues of PP are zero", "The trace of PP is zero"] answer="D" hint="Recall the definition of a skew-symmetric matrix (PT=PP^T = -P) and its implications for the diagonal elements and the determinant." solution="
    A matrix PP is skew-symmetric if it satisfies the property PT=PP^T = -P. Let the elements of PP be denoted by pijp_{ij}. This property means pji=pijp_{ji} = -p_{ij} for all i,ji, j.

  • Diagonal Elements and Trace: For the diagonal elements, we set i=ji=j. The property becomes pii=piip_{ii} = -p_{ii}, which implies 2pii=02p_{ii} = 0, so pii=0p_{ii} = 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=13pii=0+0+0=0\operatorname{trace}(P) = \sum_{i=1}^3 p_{ii} = 0 + 0 + 0 = 0

    Therefore, statement D is always true.

  • Determinant and Invertibility: Let's examine the determinant. We know that PT=P|P^T| = |P|.

  • PT=P|P^T| = |-P|

    For an n×nn \times n matrix, P=(1)nP|-P| = (-1)^n |P|. Here, n=3n=3, which is an odd number.
    P=(1)3P=P|P| = (-1)^3 |P| = -|P|

    This implies 2P=02|P| = 0, which means P=0|P| = 0.
    Since the determinant is zero, the matrix PP is singular (not invertible). This makes statement A ("PP is invertible") and statement B ("P=1|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=(010100000)P = \begin{pmatrix} 0 & 1 & 0 \\ -1 & 0 & 0 \\ 0 & 0 & 0 \end{pmatrix}

    is skew-symmetric. Its characteristic equation is λ(λ2+1)=0\lambda(\lambda^2+1)=0, giving eigenvalues λ=0,i,i\lambda = 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×33 \times 3 skew-symmetric matrix is that its trace is zero.
    Answer: The trace of P is zero\boxed{\text{The trace of } P \text{ 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

    Related Topics in Engineering Mathematics

    More Resources

    Why Choose MastersUp?

    🎯

    AI-Powered Plans

    Personalized study schedules based on your exam date and learning pace

    📚

    15,000+ Questions

    Verified questions with detailed solutions from past papers

    📊

    Smart Analytics

    Track your progress with subject-wise performance insights

    🔖

    Bookmark & Revise

    Save important questions for quick revision before exams

    Start Your Free Preparation →

    No credit card required • Free forever for basic features