100% FREE Updated: Mar 2026 Algebra Linear Algebra

Matrix Theory and Systems of Equations

Comprehensive study notes on Matrix Theory and Systems of Equations for CUET PG Mathematics preparation. This chapter covers key concepts, formulas, and examples needed for your exam.

Matrix Theory and Systems of Equations

This chapter comprehensively covers the foundational aspects of matrix theory and systems of linear equations, essential for advanced mathematical understanding. Mastery of determinants, matrix inversion, and solving linear systems is critical for success in the CUET PG examination, as these topics are consistently featured.

---

Chapter Contents

| # | Topic |
|---|-------|
| 1 | Determinants |
| 2 | Solutions of Systems of Linear Equations |
| 3 | Rank and Inverse of a Matrix |

---

We begin with Determinants.

Part 1: Determinants

Determinants are scalar values associated with square matrices, providing critical insights into matrix properties such as invertibility and the solvability of linear systems. We observe their fundamental role in various areas of linear algebra and multivariate calculus.

---

Core Concepts

1. Definition of a Determinant

The determinant, denoted det(A)\det(A) or A|A|, is a scalar value associated with a square matrix AA. Its calculation method varies with the matrix order. For a 1×11 \times 1 matrix A=[a]A = [a], we define det(A)=a\det(A) = a.

For a 2×22 \times 2 matrix A=[abcd]A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}, the determinant is given by adbcad - bc. For higher order matrices, we employ cofactor expansion.

📐 Determinant of a 2×22 \times 2 Matrix
det([abcd])=adbc\det \left( \begin{bmatrix} a & b \\ c & d \end{bmatrix} \right) = ad - bc
Where: a,b,c,da, b, c, d are elements of the matrix. When to use: Calculating the determinant of any 2×22 \times 2 square matrix.

Quick Example: 2×22 \times 2 Determinant

Consider the matrix A=[3142]A = \begin{bmatrix} 3 & 1 \\ 4 & 2 \end{bmatrix}. We calculate its determinant.

Step 1: Apply the 2×22 \times 2 determinant formula.

>

det(A)=(3)(2)(1)(4)\det(A) = (3)(2) - (1)(4)

Step 2: Perform the arithmetic.

>

det(A)=64=2\det(A) = 6 - 4 = 2

Answer: 22

:::question type="MCQ" question="Let M=[5234]M = \begin{bmatrix} 5 & -2 \\ 3 & 4 \end{bmatrix}. What is det(M)\det(M)?" options=["1414","2626","66","26-26"] answer="2626" hint="Apply the standard formula for a 2×22 \times 2 determinant." solution="Step 1: Identify the elements a,b,c,da, b, c, d.
>

a=5,b=2,c=3,d=4a=5, b=-2, c=3, d=4

Step 2: Apply the formula det(M)=adbc\det(M) = ad - bc.
>
det(M)=(5)(4)(2)(3)\det(M) = (5)(4) - (-2)(3)

>
det(M)=20(6)\det(M) = 20 - (-6)

>
det(M)=20+6=26\det(M) = 20 + 6 = 26

The determinant of MM is 2626."
:::

---

2. Minors and Cofactors

For an n×nn \times n matrix AA, the minor MijM_{ij} of an element aija_{ij} is the determinant of the (n1)×(n1)(n-1) \times (n-1) matrix obtained by deleting the ii-th row and jj-th column of AA. The cofactor CijC_{ij} of aija_{ij} is defined as Cij=(1)i+jMijC_{ij} = (-1)^{i+j} M_{ij}.

📖 Minor MijM_{ij}

The minor MijM_{ij} of an element aija_{ij} is the determinant of the submatrix formed by removing the ii-th row and jj-th column.

📖 Cofactor CijC_{ij}

The cofactor CijC_{ij} of an element aija_{ij} is given by Cij=(1)i+jMijC_{ij} = (-1)^{i+j} M_{ij}.

The determinant of an n×nn \times n matrix can be computed by cofactor expansion along any row ii: det(A)=j=1naijCij\det(A) = \sum_{j=1}^{n} a_{ij} C_{ij}, or along any column jj: det(A)=i=1naijCij\det(A) = \sum_{i=1}^{n} a_{ij} C_{ij}.

Quick Example: Minors and Cofactors for a 3×33 \times 3 Matrix

Let A=[123456789]A = \begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \\ 7 & 8 & 9 \end{bmatrix}. We compute the minor M11M_{11} and cofactor C11C_{11}.

Step 1: To find M11M_{11}, delete the first row and first column.

>

M11=det([5689])M_{11} = \det \left( \begin{bmatrix} 5 & 6 \\ 8 & 9 \end{bmatrix} \right)

Step 2: Calculate the determinant of the resulting 2×22 \times 2 matrix.

>

M11=(5)(9)(6)(8)=4548=3M_{11} = (5)(9) - (6)(8) = 45 - 48 = -3

Step 3: Calculate the cofactor C11C_{11} using Cij=(1)i+jMijC_{ij} = (-1)^{i+j} M_{ij}.

>

C11=(1)1+1M11=(1)(3)=3C_{11} = (-1)^{1+1} M_{11} = (1)(-3) = -3

Answer: M11=3M_{11} = -3, C11=3C_{11} = -3.

:::question type="MCQ" question="For the matrix B=[120314056]B = \begin{bmatrix} 1 & 2 & 0 \\ 3 & -1 & 4 \\ 0 & 5 & 6 \end{bmatrix}, what is the cofactor C23C_{23}?" options=["55","5-5","11","1-1"] answer="5-5" hint="First find the minor M23M_{23} by removing row 2 and column 3, then apply the cofactor formula." solution="Step 1: To find M23M_{23}, remove the second row and third column of BB.
>

M23=det([1205])M_{23} = \det \left( \begin{bmatrix} 1 & 2 \\ 0 & 5 \end{bmatrix} \right)

Step 2: Calculate M23M_{23}.
>
M23=(1)(5)(2)(0)=50=5M_{23} = (1)(5) - (2)(0) = 5 - 0 = 5

Step 3: Calculate C23C_{23} using Cij=(1)i+jMijC_{ij} = (-1)^{i+j} M_{ij}.
>
C23=(1)2+3M23=(1)5(5)=(1)(5)=5C_{23} = (-1)^{2+3} M_{23} = (-1)^5 (5) = (-1)(5) = -5

The cofactor C23C_{23} is 5-5."
:::

---

---

3. Properties of Determinants

Determinants possess several properties crucial for efficient calculation and theoretical understanding. We present these properties, often without formal proof, but with illustrative examples.

3.1. Transpose Property

The determinant of a matrix remains unchanged when its rows and columns are interchanged. That is, det(AT)=det(A)\det(A^T) = \det(A).

📐 Determinant of Transpose
det(AT)=det(A)\det(A^T) = \det(A)
Where: ATA^T denotes the transpose of matrix AA. When to use: To simplify calculations or prove identities involving transposes.

Quick Example:

Let A=[1234]A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}.
Then AT=[1324]A^T = \begin{bmatrix} 1 & 3 \\ 2 & 4 \end{bmatrix}.

Step 1: Calculate det(A)\det(A).

det(A)=(1)(4)(2)(3)=46=2\det(A) = (1)(4) - (2)(3) = 4 - 6 = -2

Step 2: Calculate det(AT)\det(A^T).

det(AT)=(1)(4)(3)(2)=46=2\det(A^T) = (1)(4) - (3)(2) = 4 - 6 = -2

Answer: det(A)=det(AT)=2\det(A) = \det(A^T) = -2.

:::question type="MCQ" question="If AA is a 3×33 \times 3 matrix such that det(A)=5\det(A) = 5, what is det(AT)\det(A^T)?" options=["55","5-5","1/51/5","2525"] answer="55" hint="Recall the property relating the determinant of a matrix to the determinant of its transpose." solution="According to the property of determinants, det(AT)=det(A)\det(A^T) = \det(A).
Given det(A)=5\det(A) = 5.
Therefore, det(AT)=5\det(A^T) = 5."
:::

3.2. Product Property

The determinant of a product of two square matrices is the product of their individual determinants. This implies det(AB)=det(A)det(B)\det(AB) = \det(A)\det(B).

📐 Determinant of a Product
det(AB)=det(A)det(B)\det(AB) = \det(A)\det(B)
Where: AA and BB are square matrices of the same order. When to use: To find the determinant of a product without performing matrix multiplication, or to simplify expressions involving determinants.

Quick Example:

Let A=[1203]A = \begin{bmatrix} 1 & 2 \\ 0 & 3 \end{bmatrix} and B=[2110]B = \begin{bmatrix} 2 & 1 \\ 1 & 0 \end{bmatrix}. We verify det(AB)=det(A)det(B)\det(AB) = \det(A)\det(B).

Step 1: Calculate det(A)\det(A) and det(B)\det(B).

det(A)=(1)(3)(2)(0)=3\det(A) = (1)(3) - (2)(0) = 3
det(B)=(2)(0)(1)(1)=1\det(B) = (2)(0) - (1)(1) = -1

Step 2: Calculate ABAB.

AB=[1203][2110]=[(1)(2)+(2)(1)(1)(1)+(2)(0)(0)(2)+(3)(1)(0)(1)+(3)(0)]AB = \begin{bmatrix} 1 & 2 \\ 0 & 3 \end{bmatrix} \begin{bmatrix} 2 & 1 \\ 1 & 0 \end{bmatrix} = \begin{bmatrix} (1)(2)+(2)(1) & (1)(1)+(2)(0) \\ (0)(2)+(3)(1) & (0)(1)+(3)(0) \end{bmatrix}
AB=[4130]AB = \begin{bmatrix} 4 & 1 \\ 3 & 0 \end{bmatrix}

Step 3: Calculate det(AB)\det(AB).

det(AB)=(4)(0)(1)(3)=3\det(AB) = (4)(0) - (1)(3) = -3

Step 4: Compare det(AB)\det(AB) with det(A)det(B)\det(A)\det(B).

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

Answer: det(AB)=3\det(AB) = -3 and det(A)det(B)=3\det(A)\det(B) = -3, confirming the property.

:::question type="MCQ" question="If PP and QQ are 3×33 \times 3 matrices with det(P)=2\det(P) = 2 and det(Q)=3\det(Q) = 3, what is det(PQ)\det(PQ)?" options=["55","66","11","00"] answer="66" hint="Recall the property for the determinant of a matrix product." solution="Using the determinant product property, det(PQ)=det(P)det(Q)\det(PQ) = \det(P)\det(Q).
Given det(P)=2\det(P) = 2 and det(Q)=3\det(Q) = 3.

det(PQ)=(2)(3)=6\det(PQ) = (2)(3) = 6

The determinant of PQPQ is 66."
:::

3.3. Inverse Property

If a matrix AA is invertible, its determinant is non-zero, and the determinant of its inverse A1A^{-1} is the reciprocal of the determinant of AA. Specifically, det(A1)=1det(A)\det(A^{-1}) = \frac{1}{\det(A)}.

📐 Determinant of Inverse
det(A1)=1det(A)\det(A^{-1}) = \frac{1}{\det(A)}
Where: AA is an invertible square matrix. When to use: To find the determinant of an inverse matrix without computing the inverse itself.

Quick Example:

Let A=[2132]A = \begin{bmatrix} 2 & 1 \\ 3 & 2 \end{bmatrix}. We find det(A1)\det(A^{-1}).

Step 1: Calculate det(A)\det(A).

det(A)=(2)(2)(1)(3)=43=1\det(A) = (2)(2) - (1)(3) = 4 - 3 = 1

Step 2: Apply the inverse determinant property.

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

Answer: det(A1)=1\det(A^{-1}) = 1.

:::question type="MCQ" question="Given a matrix A=[3512]A = \begin{bmatrix} 3 & 5 \\ 1 & 2 \end{bmatrix}, what is det(A1)\det(A^{-1})?" options=["11","1-1","1/111/11","1/11-1/11"] answer="11" hint="First calculate det(A)\det(A), then use the property for the determinant of an inverse matrix." solution="Step 1: Calculate the determinant of AA.

det(A)=(3)(2)(5)(1)=65=1\det(A) = (3)(2) - (5)(1) = 6 - 5 = 1

Step 2: Use the property det(A1)=1det(A)\det(A^{-1}) = \frac{1}{\det(A)}.
det(A1)=11=1\det(A^{-1}) = \frac{1}{1} = 1

The determinant of A1A^{-1} is 11."
:::

3.4. Scalar Multiplication Property

If AA is an n×nn \times n matrix and kk is a scalar, then det(kA)=kndet(A)\det(kA) = k^n \det(A). Each of the nn rows is multiplied by kk, thus multiplying the determinant by kk nn times.

📐 Determinant of Scalar Multiple
det(kA)=kndet(A)\det(kA) = k^n \det(A)
Where: AA is an n×nn \times n matrix, and kk is a scalar. When to use: To calculate determinants of scaled matrices efficiently.

Quick Example:

Let A=[1234]A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} and k=3k=3. We find det(3A)\det(3A).

Step 1: Calculate det(A)\det(A).

det(A)=(1)(4)(2)(3)=46=2\det(A) = (1)(4) - (2)(3) = 4 - 6 = -2

Step 2: Apply the scalar multiplication property. AA is a 2×22 \times 2 matrix, so n=2n=2.

det(3A)=32det(A)=9(2)=18\det(3A) = 3^2 \det(A) = 9(-2) = -18

Answer: det(3A)=18\det(3A) = -18.

:::question type="MCQ" question="If AA is a 4×44 \times 4 matrix with det(A)=5\det(A) = 5, what is det(2A)\det(2A)?" options=["1010","2020","4040","8080"] answer="8080" hint="Remember that for an n×nn \times n matrix AA and scalar kk, det(kA)=kndet(A)\det(kA) = k^n \det(A)." solution="Given AA is a 4×44 \times 4 matrix, so n=4n=4.
Given det(A)=5\det(A) = 5.
We need to find det(2A)\det(2A).
Using the property det(kA)=kndet(A)\det(kA) = k^n \det(A):

det(2A)=24det(A)\det(2A) = 2^4 \det(A)

det(2A)=16×5\det(2A) = 16 \times 5

det(2A)=80\det(2A) = 80

The determinant of 2A2A is 8080."
:::

3.5. Determinant of Triangular Matrices

The determinant of a triangular matrix (upper triangular, lower triangular, or diagonal) is the product of its diagonal elements.

📐 Determinant of Triangular Matrix
det(A)=i=1naii\det(A) = \prod_{i=1}^{n} a_{ii}
Where: AA is a triangular matrix (diagonal, upper, or lower). When to use: To quickly find the determinant of matrices with zeros above or below the main diagonal.

Quick Example:

Let A=[200340567]A = \begin{bmatrix} 2 & 0 & 0 \\ 3 & 4 & 0 \\ 5 & 6 & 7 \end{bmatrix}. This is a lower triangular matrix.

Step 1: Identify the diagonal elements.

a11=2,a22=4,a33=7a_{11}=2, a_{22}=4, a_{33}=7

Step 2: Multiply the diagonal elements.

det(A)=(2)(4)(7)=56\det(A) = (2)(4)(7) = 56

Answer: 5656.

:::question type="MCQ" question="What is the determinant of the matrix P=[123045006]P = \begin{bmatrix} 1 & 2 & 3 \\ 0 & 4 & 5 \\ 0 & 0 & 6 \end{bmatrix}?" options=["120120","2424","1010","00"] answer="2424" hint="Recognize that PP is an upper triangular matrix. The determinant of a triangular matrix is the product of its diagonal elements." solution="The matrix PP is an upper triangular matrix. For any triangular matrix (upper, lower, or diagonal), its determinant is the product of its diagonal elements.
The diagonal elements are 1,4,61, 4, 6.

det(P)=1×4×6=24\det(P) = 1 \times 4 \times 6 = 24

The determinant of PP is 2424."
:::

3.6. Effect of Elementary Row/Column Operations

Elementary row operations affect the determinant in specific ways:
* Swapping two rows/columns: Multiplies the determinant by 1-1.
* Multiplying a row/column by a scalar kk: Multiplies the determinant by kk.
* Adding a multiple of one row/column to another: Does not change the determinant.

⚠️ Common Mistake

det(A+B)=det(A)+det(B)\det(A+B) = \det(A) + \det(B)
✅ This is generally false. The determinant operation is not linear with respect to addition.

Quick Example:

Let A=[1234]A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}, with det(A)=2\det(A) = -2.

Step 1: Swap R1R2R_1 \leftrightarrow R_2 to get AA'.

A=[3412]A' = \begin{bmatrix} 3 & 4 \\ 1 & 2 \end{bmatrix}
det(A)=(3)(2)(4)(1)=64=2\det(A') = (3)(2) - (4)(1) = 6 - 4 = 2
Observe det(A)=det(A)\det(A') = -\det(A).

Step 2: Multiply R1R_1 by k=5k=5 in AA to get AA''.

A=[51034]A'' = \begin{bmatrix} 5 & 10 \\ 3 & 4 \end{bmatrix}
det(A)=(5)(4)(10)(3)=2030=10\det(A'') = (5)(4) - (10)(3) = 20 - 30 = -10
Observe det(A)=5det(A)\det(A'') = 5 \det(A).

Step 3: Add 2R12R_1 to R2R_2 in AA to get AA'''.

A=[123+2(1)4+2(2)]=[1258]A''' = \begin{bmatrix} 1 & 2 \\ 3+2(1) & 4+2(2) \end{bmatrix} = \begin{bmatrix} 1 & 2 \\ 5 & 8 \end{bmatrix}
det(A)=(1)(8)(2)(5)=810=2\det(A''') = (1)(8) - (2)(5) = 8 - 10 = -2
Observe det(A)=det(A)\det(A''') = \det(A).

Answer: The determinant changes as described by the properties.

:::question type="MCQ" question="If a 3×33 \times 3 matrix AA has det(A)=7\det(A) = 7, and matrix BB is obtained from AA by swapping the first and third rows, then what is det(B)\det(B)?" options=["77","7-7","1/71/7","4949"] answer="7-7" hint="Recall how row swaps affect the determinant." solution="Swapping two rows of a matrix multiplies its determinant by 1-1.
Given det(A)=7\det(A) = 7.
Since BB is obtained by swapping two rows of AA,

det(B)=1×det(A)\det(B) = -1 \times \det(A)

det(B)=1×7=7\det(B) = -1 \times 7 = -7

The determinant of BB is 7-7."
:::

3.7. Zero Determinant Conditions

A matrix has a determinant of zero if:
* It has a row or column consisting entirely of zeros.
* It has two identical rows or columns.
* It has two proportional rows or columns.
* Its rows (or columns) are linearly dependent. This is equivalent to saying the matrix is singular (non-invertible).

Singular Matrices

A square matrix AA is singular (non-invertible) if and only if det(A)=0\det(A) = 0.

Quick Example:

Consider A=[1200]A = \begin{bmatrix} 1 & 2 \\ 0 & 0 \end{bmatrix}. It has a row of zeros. det(A)=(1)(0)(2)(0)=0\det(A) = (1)(0) - (2)(0) = 0.

Consider B=[1212]B = \begin{bmatrix} 1 & 2 \\ 1 & 2 \end{bmatrix}. It has two identical rows. det(B)=(1)(2)(2)(1)=0\det(B) = (1)(2) - (2)(1) = 0.

Consider C=[1224]C = \begin{bmatrix} 1 & 2 \\ 2 & 4 \end{bmatrix}. Row 2 is 2×2 \times Row 1. det(C)=(1)(4)(2)(2)=0\det(C) = (1)(4) - (2)(2) = 0.

Answer: All matrices have a determinant of 00.

:::question type="MCQ" question="Which of the following matrices has a determinant of zero?" options=["[1234]\begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}","[2412]\begin{bmatrix} 2 & 4 \\ 1 & 2 \end{bmatrix}","[1001]\begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix}","[3125]\begin{bmatrix} 3 & 1 \\ 2 & 5 \end{bmatrix}"] answer="[2412]\begin{bmatrix} 2 & 4 \\ 1 & 2 \end{bmatrix}" hint="Check each matrix for properties that lead to a zero determinant, such as proportional rows/columns." solution="We calculate the determinant for each option:

  • det([1234])=(1)(4)(2)(3)=46=20\det \left( \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} \right) = (1)(4) - (2)(3) = 4 - 6 = -2 \neq 0

  • det([2412])=(2)(2)(4)(1)=44=0\det \left( \begin{bmatrix} 2 & 4 \\ 1 & 2 \end{bmatrix} \right) = (2)(2) - (4)(1) = 4 - 4 = 0. (Rows are proportional: R1=2R2R_1 = 2R_2)

  • det([1001])=(1)(1)(0)(0)=10\det \left( \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix} \right) = (1)(1) - (0)(0) = 1 \neq 0

  • det([3125])=(3)(5)(1)(2)=152=130\det \left( \begin{bmatrix} 3 & 1 \\ 2 & 5 \end{bmatrix} \right) = (3)(5) - (1)(2) = 15 - 2 = 13 \neq 0
  • The matrix [2412]\begin{bmatrix} 2 & 4 \\ 1 & 2 \end{bmatrix} has a determinant of zero."
    :::

    ---

    4. Adjoint of a Matrix

    The adjoint of a square matrix AA, denoted adj(A)\operatorname{adj}(A), is the transpose of the cofactor matrix of AA. That is, if CC is the matrix where CijC_{ij} is the cofactor of aija_{ij}, then adj(A)=CT\operatorname{adj}(A) = C^T.

    📐 Adjoint Matrix
    adj(A)=(Cij)T\operatorname{adj}(A) = (C_{ij})^T
    Where: CijC_{ij} is the cofactor of the element aija_{ij}. When to use: Crucial for calculating the inverse of a matrix.

    A fundamental property relating a matrix, its adjoint, and its determinant is Aadj(A)=adj(A)A=det(A)IA \operatorname{adj}(A) = \operatorname{adj}(A) A = \det(A) I, where II is the identity matrix.

    📐 Adjoint Property
    Aadj(A)=adj(A)A=det(A)IA \operatorname{adj}(A) = \operatorname{adj}(A) A = \det(A) I
    Where: II is the identity matrix of the same order as AA. When to use: Verifying adjoint calculations, deriving inverse formula.

    Another key property is det(adj(A))=(det(A))n1\det(\operatorname{adj}(A)) = (\det(A))^{n-1} for an n×nn \times n matrix AA.

    Quick Example: Adjoint of a 2×22 \times 2 Matrix

    For A=[abcd]A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}, the cofactor matrix C=[dcba]C = \begin{bmatrix} d & -c \\ -b & a \end{bmatrix}.
    Then adj(A)=CT=[dbca]\operatorname{adj}(A) = C^T = \begin{bmatrix} d & -b \\ -c & a \end{bmatrix}.

    Let A=[3142]A = \begin{bmatrix} 3 & 1 \\ 4 & 2 \end{bmatrix}.

    Step 1: Calculate the cofactors.
    C11=(1)1+1det([2])=2C_{11} = (-1)^{1+1} \det([2]) = 2
    C12=(1)1+2det([4])=4C_{12} = (-1)^{1+2} \det([4]) = -4
    C21=(1)2+1det([1])=1C_{21} = (-1)^{2+1} \det([1]) = -1
    C22=(1)2+2det([3])=3C_{22} = (-1)^{2+2} \det([3]) = 3

    Step 2: Form the cofactor matrix CC.

    C=[2413]C = \begin{bmatrix} 2 & -4 \\ -1 & 3 \end{bmatrix}

    Step 3: Transpose CC to find adj(A)\operatorname{adj}(A).

    adj(A)=CT=[2143]\operatorname{adj}(A) = C^T = \begin{bmatrix} 2 & -1 \\ -4 & 3 \end{bmatrix}

    Answer: adj(A)=[2143]\operatorname{adj}(A) = \begin{bmatrix} 2 & -1 \\ -4 & 3 \end{bmatrix}.

    :::question type="MCQ" question="Let A=[1234]A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}. What is adj(A)\operatorname{adj}(A)?" options=["[4231]\begin{bmatrix} 4 & -2 \\ -3 & 1 \end{bmatrix}","[4231]\begin{bmatrix} 4 & 2 \\ 3 & 1 \end{bmatrix}","[1234]\begin{bmatrix} 1 & -2 \\ -3 & 4 \end{bmatrix}","[1234]\begin{bmatrix} -1 & 2 \\ 3 & -4 \end{bmatrix}"] answer="[4231]\begin{bmatrix} 4 & -2 \\ -3 & 1 \end{bmatrix}" hint="Find the cofactor matrix and then its transpose. For a 2×22 \times 2 matrix [abcd]\begin{bmatrix} a & b \\ c & d \end{bmatrix}, adj(A)=[dbca]\operatorname{adj}(A) = \begin{bmatrix} d & -b \\ -c & a \end{bmatrix}." solution="Step 1: Calculate the cofactors of AA.
    C11=(1)1+1det([4])=4C_{11} = (-1)^{1+1} \det([4]) = 4
    C12=(1)1+2det([3])=3C_{12} = (-1)^{1+2} \det([3]) = -3
    C21=(1)2+1det([2])=2C_{21} = (-1)^{2+1} \det([2]) = -2
    C22=(1)2+2det([1])=1C_{22} = (-1)^{2+2} \det([1]) = 1
    Step 2: Form the cofactor matrix CC.

    C=[4321]C = \begin{bmatrix} 4 & -3 \\ -2 & 1 \end{bmatrix}

    Step 3: Transpose CC to get adj(A)\operatorname{adj}(A).
    adj(A)=CT=[4231]\operatorname{adj}(A) = C^T = \begin{bmatrix} 4 & -2 \\ -3 & 1 \end{bmatrix}

    The adjoint of AA is [4231]\begin{bmatrix} 4 & -2 \\ -3 & 1 \end{bmatrix}."
    :::

    ---

    5. Inverse of a Matrix using Determinants

    An n×nn \times n matrix AA is invertible if and only if det(A)0\det(A) \neq 0. If AA is invertible, its inverse A1A^{-1} can be found using the formula involving the adjoint matrix and its determinant.

    📐 Matrix Inverse Formula
    A1=1det(A)adj(A)A^{-1} = \frac{1}{\det(A)} \operatorname{adj}(A)
    Where: det(A)0\det(A) \neq 0. When to use: To calculate the inverse of an invertible matrix.

    Quick Example:

    Let A=[3142]A = \begin{bmatrix} 3 & 1 \\ 4 & 2 \end{bmatrix}. We find A1A^{-1}.
    From previous examples, we know det(A)=2\det(A) = 2 and adj(A)=[2143]\operatorname{adj}(A) = \begin{bmatrix} 2 & -1 \\ -4 & 3 \end{bmatrix}.

    Step 1: Apply the inverse formula.

    A1=1det(A)adj(A)A^{-1} = \frac{1}{\det(A)} \operatorname{adj}(A)
    A1=12[2143]A^{-1} = \frac{1}{2} \begin{bmatrix} 2 & -1 \\ -4 & 3 \end{bmatrix}

    Step 2: Perform scalar multiplication.

    A1=[11/223/2]A^{-1} = \begin{bmatrix} 1 & -1/2 \\ -2 & 3/2 \end{bmatrix}

    Answer: A1=[11/223/2]A^{-1} = \begin{bmatrix} 1 & -1/2 \\ -2 & 3/2 \end{bmatrix}.

    :::question type="MCQ" question="Given A=[2153]A = \begin{bmatrix} 2 & 1 \\ 5 & 3 \end{bmatrix}, find A1A^{-1}." options=["[3152]\begin{bmatrix} 3 & -1 \\ -5 & 2 \end{bmatrix}","[3152]\begin{bmatrix} -3 & 1 \\ 5 & -2 \end{bmatrix}","[2513]\begin{bmatrix} 2 & 5 \\ 1 & 3 \end{bmatrix}","[1/211/51/3]\begin{bmatrix} 1/2 & 1 \\ 1/5 & 1/3 \end{bmatrix}"] answer="[3152]\begin{bmatrix} 3 & -1 \\ -5 & 2 \end{bmatrix}" hint="First calculate det(A)\det(A) and adj(A)\operatorname{adj}(A), then apply the formula A1=1det(A)adj(A)A^{-1} = \frac{1}{\det(A)} \operatorname{adj}(A)." solution="Step 1: Calculate det(A)\det(A).

    det(A)=(2)(3)(1)(5)=65=1\det(A) = (2)(3) - (1)(5) = 6 - 5 = 1

    Step 2: Calculate adj(A)\operatorname{adj}(A). For a 2×22 \times 2 matrix [abcd]\begin{bmatrix} a & b \\ c & d \end{bmatrix}, adj(A)=[dbca]\operatorname{adj}(A) = \begin{bmatrix} d & -b \\ -c & a \end{bmatrix}.
    adj(A)=[3152]\operatorname{adj}(A) = \begin{bmatrix} 3 & -1 \\ -5 & 2 \end{bmatrix}

    Step 3: Apply the inverse formula A1=1det(A)adj(A)A^{-1} = \frac{1}{\det(A)} \operatorname{adj}(A).
    A1=11[3152]=[3152]A^{-1} = \frac{1}{1} \begin{bmatrix} 3 & -1 \\ -5 & 2 \end{bmatrix} = \begin{bmatrix} 3 & -1 \\ -5 & 2 \end{bmatrix}

    The inverse of AA is [3152]\begin{bmatrix} 3 & -1 \\ -5 & 2 \end{bmatrix}."
    :::

    ---

    6. Cramer's Rule

    Cramer's Rule is a method for solving systems of linear equations using determinants. For a system of nn linear equations in nn variables, AX=BAX = B, where det(A)0\det(A) \neq 0, the solution for each variable xix_i is given by xi=det(Ai)det(A)x_i = \frac{\det(A_i)}{\det(A)}. Here, AiA_i is the matrix formed by replacing the ii-th column of AA with the column vector BB.

    📐 Cramer's Rule
    xi=det(Ai)det(A)x_i = \frac{\det(A_i)}{\det(A)}
    Where: AA is the coefficient matrix, BB is the constant vector, and AiA_i is AA with its ii-th column replaced by BB. det(A)0\det(A) \neq 0. When to use: To solve systems of linear equations, particularly useful for small systems or when only one variable's value is required.

    Quick Example: Cramer's Rule for a 2×22 \times 2 System

    Solve the system:

    2x+3y=82x + 3y = 8

    x2y=3x - 2y = -3

    Step 1: Write the coefficient matrix AA and the constant vector BB.

    A=[2312],B=[83]A = \begin{bmatrix} 2 & 3 \\ 1 & -2 \end{bmatrix}, B = \begin{bmatrix} 8 \\ -3 \end{bmatrix}

    Step 2: Calculate det(A)\det(A).

    det(A)=(2)(2)(3)(1)=43=7\det(A) = (2)(-2) - (3)(1) = -4 - 3 = -7

    Step 3: Form A1A_1 by replacing the first column of AA with BB, and calculate det(A1)\det(A_1).

    A1=[8332]A_1 = \begin{bmatrix} 8 & 3 \\ -3 & -2 \end{bmatrix}
    det(A1)=(8)(2)(3)(3)=16(9)=16+9=7\det(A_1) = (8)(-2) - (3)(-3) = -16 - (-9) = -16 + 9 = -7

    Step 4: Form A2A_2 by replacing the second column of AA with BB, and calculate det(A2)\det(A_2).

    A2=[2813]A_2 = \begin{bmatrix} 2 & 8 \\ 1 & -3 \end{bmatrix}
    det(A2)=(2)(3)(8)(1)=68=14\det(A_2) = (2)(-3) - (8)(1) = -6 - 8 = -14

    Step 5: Apply Cramer's Rule to find xx and yy.

    x=det(A1)det(A)=77=1x = \frac{\det(A_1)}{\det(A)} = \frac{-7}{-7} = 1
    y=det(A2)det(A)=147=2y = \frac{\det(A_2)}{\det(A)} = \frac{-14}{-7} = 2

    Answer: x=1,y=2x=1, y=2.

    :::question type="MCQ" question="Using Cramer's Rule, what is the value of xx in the system:

    x+2y=5x + 2y = 5

    3xy=13x - y = 1
    ?" options=["11","22","33","44"] answer="11" hint="Identify AA, BB, and A1A_1. Calculate their determinants and apply x=det(A1)det(A)x = \frac{\det(A_1)}{\det(A)}." solution="Step 1: Define the coefficient matrix AA and the constant vector BB.
    A=[1231],B=[51]A = \begin{bmatrix} 1 & 2 \\ 3 & -1 \end{bmatrix}, B = \begin{bmatrix} 5 \\ 1 \end{bmatrix}

    Step 2: Calculate det(A)\det(A).
    det(A)=(1)(1)(2)(3)=16=7\det(A) = (1)(-1) - (2)(3) = -1 - 6 = -7

    Step 3: Form A1A_1 by replacing the first column of AA with BB.
    A1=[5211]A_1 = \begin{bmatrix} 5 & 2 \\ 1 & -1 \end{bmatrix}

    Step 4: Calculate det(A1)\det(A_1).
    det(A1)=(5)(1)(2)(1)=52=7\det(A_1) = (5)(-1) - (2)(1) = -5 - 2 = -7

    Step 5: Apply Cramer's Rule for xx.
    x=det(A1)det(A)=77=1x = \frac{\det(A_1)}{\det(A)} = \frac{-7}{-7} = 1

    The value of xx is 11."
    :::

    ---

    Advanced Applications

    We examine a complex problem combining multiple determinant properties and matrix operations, similar to those encountered in competitive examinations.

    Worked Example: Determinant of A2+AA^2 + A

    Let A=[100020003]A = \begin{bmatrix} 1 & 0 & 0 \\ 0 & 2 & 0 \\ 0 & 0 & 3 \end{bmatrix}. Find det(A2+A)\det(A^2 + A). (Related to PYQ 1)

    Step 1: Calculate A2A^2. Since AA is a diagonal matrix, A2A^2 is formed by squaring its diagonal elements.

    >

    A2=[120002200032]=[100040009]A^2 = \begin{bmatrix} 1^2 & 0 & 0 \\ 0 & 2^2 & 0 \\ 0 & 0 & 3^2 \end{bmatrix} = \begin{bmatrix} 1 & 0 & 0 \\ 0 & 4 & 0 \\ 0 & 0 & 9 \end{bmatrix}

    Step 2: Calculate A2+AA^2 + A. Add the corresponding elements of A2A^2 and AA.

    >

    A2+A=[100040009]+[100020003]A^2 + A = \begin{bmatrix} 1 & 0 & 0 \\ 0 & 4 & 0 \\ 0 & 0 & 9 \end{bmatrix} + \begin{bmatrix} 1 & 0 & 0 \\ 0 & 2 & 0 \\ 0 & 0 & 3 \end{bmatrix}

    >
    A2+A=[1+10004+20009+3]=[2000600012]A^2 + A = \begin{bmatrix} 1+1 & 0 & 0 \\ 0 & 4+2 & 0 \\ 0 & 0 & 9+3 \end{bmatrix} = \begin{bmatrix} 2 & 0 & 0 \\ 0 & 6 & 0 \\ 0 & 0 & 12 \end{bmatrix}

    Step 3: Calculate det(A2+A)\det(A^2 + A). Since A2+AA^2+A is a diagonal matrix, its determinant is the product of its diagonal elements.

    >

    det(A2+A)=(2)(6)(12)=144\det(A^2 + A) = (2)(6)(12) = 144

    Answer: det(A2+A)=144\det(A^2 + A) = 144.

    ---

    Worked Example: Determinant Identity for 2×22 \times 2 Matrices

    Let AA and BB be 2×22 \times 2 matrices. Prove that det(A+B)+det(AB)=2det(A)+2det(B)\det(A+B) + \det(A-B) = 2 \det(A) + 2 \det(B). (Related to PYQ 2)

    Step 1: Define generic 2×22 \times 2 matrices AA and BB.

    >

    A=[abcd],B=[efgh]A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}, B = \begin{bmatrix} e & f \\ g & h \end{bmatrix}

    Step 2: Calculate det(A)\det(A) and det(B)\det(B).

    >

    det(A)=adbc\det(A) = ad - bc

    >
    det(B)=ehfg\det(B) = eh - fg

    Step 3: Calculate A+BA+B and det(A+B)\det(A+B).

    >

    A+B=[a+eb+fc+gd+h]A+B = \begin{bmatrix} a+e & b+f \\ c+g & d+h \end{bmatrix}

    > \begin{align*}
    > \det(A+B) &= (a+e)(d+h) - (b+f)(c+g) \\
    > &= (ad+ah+ed+eh) - (bc+bg+fc+fg) \\
    > &= ad+ah+ed+eh-bc-bg-fc-fg
    > \end{align*}

    Step 4: Calculate ABA-B and det(AB)\det(A-B).

    >

    AB=[aebfcgdh]A-B = \begin{bmatrix} a-e & b-f \\ c-g & d-h \end{bmatrix}

    > \begin{align*}
    > \det(A-B) &= (a-e)(d-h) - (b-f)(c-g) \\
    > &= (ad-ah-ed+eh) - (bc-bg-fc+fg) \\
    > &= ad-ah-ed+eh-bc+bg+fc-fg
    > \end{align*}

    Step 5: Add det(A+B)\det(A+B) and det(AB)\det(A-B).

    > \begin{align*}
    > \det(A+B) + \det(A-B) &= (ad+ah+ed+eh-bc-bg-fc-fg) + (ad-ah-ed+eh-bc+bg+fc-fg) \\
    > &= 2ad + 2eh - 2bc - 2fg \\
    > &= 2(ad-bc) + 2(eh-fg)
    > \end{align*}

    Step 6: Substitute det(A)\det(A) and det(B)\det(B) back into the expression.

    >

    det(A+B)+det(AB)=2det(A)+2det(B)\det(A+B) + \det(A-B) = 2 \det(A) + 2 \det(B)

    Answer: The identity is proven.

    :::question type="NAT" question="Let A=[x32y]A = \begin{bmatrix} x & 3 \\ 2 & y \end{bmatrix}. If det(A)=4\det(A) = 4 and det(A)=2\det(A) = 2 when x=2x=2, find the value of yy." answer="4" hint="Use the definition of determinant and the given conditions." solution="Step 1: Write the determinant of AA.
    >

    det(A)=(x)(y)(3)(2)=xy6\det(A) = (x)(y) - (3)(2) = xy - 6

    Step 2: Use the first given condition: det(A)=4\det(A) = 4.
    > \begin{align*}
    > xy - 6 &= 4 \\
    > xy &= 10 \quad (*)
    > \end{align*}
    Step 3: Use the second given condition: When x=2x=2, the determinant of AA is 22.
    Substitute x=2x=2 into the determinant expression and set it to 22.
    > \begin{align*}
    > (2)y - 6 &= 2 \\
    > 2y &= 8 \\
    > y &= 4
    > \end{align*}
    Step 4: Verify the conditions.
    If y=4y=4, then from xy=10xy=10 (from Step 2), we have x(4)=10    x=10/4=5/2x(4)=10 \implies x=10/4 = 5/2.
    So, the matrix is A=[5/2324]A = \begin{bmatrix} 5/2 & 3 \\ 2 & 4 \end{bmatrix}.
    Its determinant is det(A)=(5/2)(4)(3)(2)=106=4\det(A) = (5/2)(4) - (3)(2) = 10 - 6 = 4. This satisfies the first condition.
    Now, check the second condition: When x=2x=2, det(A)=2\det(A)=2.
    If x=2x=2, the matrix becomes A=[2324]A' = \begin{bmatrix} 2 & 3 \\ 2 & 4 \end{bmatrix}.
    Its determinant is det(A)=(2)(4)(3)(2)=86=2\det(A') = (2)(4) - (3)(2) = 8 - 6 = 2. This satisfies the second condition.
    Both conditions are satisfied with y=4y=4.
    Answer: \boxed{4}"
    :::

    ---

    💡 Next Up

    Proceeding to Solutions of Systems of Linear Equations.

    ---

    Part 2: Solutions of Systems of Linear Equations

    We examine the techniques for determining the existence and nature of solutions for systems of linear equations, a fundamental concept in linear algebra. This analysis is critical for understanding various mathematical models and is a recurrent theme in competitive examinations. We focus on methods involving matrix operations and rank.

    ---

    ---

    Core Concepts

    1. Definition and Matrix Representation

    A system of linear equations consists of one or more linear equations involving the same set of variables. We typically represent such a system in a compact matrix form Ax=bAx=b, where AA is the coefficient matrix, xx is the column vector of variables, and bb is the column vector of constants.

    The augmented matrix [Ab][A|b] combines the coefficient matrix and the constant vector, providing a consolidated representation for solving the system through row operations.

    📐 Matrix Representation of a System

    Given a system of mm linear equations in nn variables:

    a11x1+a12x2++a1nxn=b1a21x1+a22x2++a2nxn=b2am1x1+am2x2++amnxn=bm\begin{aligned} a_{11}x_1 + a_{12}x_2 + \dots + a_{1n}x_n & = b_1 \\ a_{21}x_1 + a_{22}x_2 + \dots + a_{2n}x_n & = b_2 \\ & \vdots \\ a_{m1}x_1 + a_{m2}x_2 + \dots + a_{mn}x_n & = b_m \end{aligned}

    This system can be written as Ax=bAx=b, where:
    A=[a11a12a1na21a22a2nam1am2amn],x=[x1x2xn],b=[b1b2bm]A = \begin{bmatrix} a_{11} & a_{12} & \dots & a_{1n} \\ a_{21} & a_{22} & \dots & a_{2n} \\ \vdots & \vdots & \ddots & \vdots \\ a_{m1} & a_{m2} & \dots & a_{mn} \end{bmatrix}, \quad x = \begin{bmatrix} x_1 \\ x_2 \\ \vdots \\ x_n \end{bmatrix}, \quad b = \begin{bmatrix} b_1 \\ b_2 \\ \vdots \\ b_m \end{bmatrix}

    The augmented matrix is [Ab][A|b]:
    [a11a12a1nb1a21a22a2nb2am1am2amnbm]\left[\begin{array}{cccc|c} a_{11} & a_{12} & \dots & a_{1n} & b_1 \\ a_{21} & a_{22} & \dots & a_{2n} & b_2 \\ \vdots & \vdots & \ddots & \vdots & \vdots \\ a_{m1} & a_{m2} & \dots & a_{mn} & b_m \end{array}\right]

    Where: AA is the m×nm \times n coefficient matrix, xx is the n×1n \times 1 variable vector, bb is the m×1m \times 1 constant vector.
    When to use: To represent any system of linear equations in a standardized matrix format suitable for algebraic manipulation.

    Quick Example:
    Represent the system 2xy+3z=92x - y + 3z = 9, x+2yz=4x + 2y - z = 4, 3x+y+2z=103x + y + 2z = 10 in augmented matrix form.

    Step 1: Identify coefficients and constants.
    The coefficients are aija_{ij} and constants are bib_i.

    Step 2: Construct the augmented matrix.
    >

    [2139121431210]\left[\begin{array}{ccc|c} 2 & -1 & 3 & 9 \\ 1 & 2 & -1 & 4 \\ 3 & 1 & 2 & 10 \end{array}\right]

    Answer: The augmented matrix is [2139121431210]\left[\begin{array}{ccc|c} 2 & -1 & 3 & 9 \\ 1 & 2 & -1 & 4 \\ 3 & 1 & 2 & 10 \end{array}\right].

    :::question type="MCQ" question="Which of the following augmented matrices correctly represents the system of equations: x12x2=5x_1 - 2x_2 = 5, 3x2+x3=73x_2 + x_3 = 7, 4x1+x3=14x_1 + x_3 = 1?" options=["

    [120503174011]\left[\begin{array}{ccc|c} 1 & -2 & 0 & 5 \\ 0 & 3 & 1 & 7 \\ 4 & 0 & 1 & 1 \end{array}\right]

    ","

    [125003174011]\left[\begin{array}{ccc|c} 1 & -2 & 5 & 0 \\ 0 & 3 & 1 & 7 \\ 4 & 0 & 1 & 1 \end{array}\right]

    ","

    [120503174101]\left[\begin{array}{ccc|c} 1 & -2 & 0 & 5 \\ 0 & 3 & 1 & 7 \\ 4 & 1 & 0 & 1 \end{array}\right]

    ","

    [120503174010]\left[\begin{array}{ccc|c} 1 & -2 & 0 & 5 \\ 0 & 3 & 1 & 7 \\ 4 & 0 & 1 & 0 \end{array}\right]

    "] answer="

    [120503174011]\left[\begin{array}{ccc|c} 1 & -2 & 0 & 5 \\ 0 & 3 & 1 & 7 \\ 4 & 0 & 1 & 1 \end{array}\right]

    " hint="Ensure all variables are accounted for in each equation, using a coefficient of 0 if a variable is missing." solution="The given system is:

    1x12x2+0x3=50x1+3x2+1x3=74x1+0x2+1x3=1\begin{aligned}1x_1 - 2x_2 + 0x_3 & = 5 \\
    0x_1 + 3x_2 + 1x_3 & = 7 \\
    4x_1 + 0x_2 + 1x_3 & = 1\end{aligned}

    Forming the augmented matrix directly from these coefficients and constants yields:
    [120503174011]\left[\begin{array}{ccc|c} 1 & -2 & 0 & 5 \\ 0 & 3 & 1 & 7 \\ 4 & 0 & 1 & 1 \end{array}\right]

    "
    :::

    ---

    2. Elementary Row Operations and Matrix Forms

    Elementary Row Operations (EROs) are fundamental transformations applied to the rows of a matrix that do not alter the solution set of the corresponding linear system. These operations are used to simplify a matrix into a more manageable form, such as Row Echelon Form (REF) or Reduced Row Echelon Form (RREF).

    The three types of EROs are:

  • Swapping two rows (RiRjR_i \leftrightarrow R_j).

  • Multiplying a row by a non-zero scalar (kRiRikR_i \to R_i, k0k \ne 0).

  • Adding a multiple of one row to another row (Ri+kRjRiR_i + kR_j \to R_i).
  • 📖 Row Echelon Form (REF)

    A matrix is in Row Echelon Form if it satisfies the following conditions:

    • All non-zero rows are above any rows of all zeros.

    • The leading entry (pivot) of each non-zero row is in a column to the right of the leading entry of the row above it.

    • All entries in a column below a leading entry are zeros.

    📖 Reduced Row Echelon Form (RREF)

    A matrix is in Reduced Row Echelon Form if it satisfies the conditions for REF and:

    • The leading entry in each non-zero row is 1 (a "leading 1").

    • Each column containing a leading 1 has zeros everywhere else.

    Quick Example:
    Transform the matrix into Row Echelon Form:

    [121213132]\begin{bmatrix} 1 & 2 & -1 \\ 2 & 1 & 3 \\ -1 & 3 & 2 \end{bmatrix}

    Step 1: Make entries below the first pivot zero (R22R1R2R_2 - 2R_1 \to R_2, R3+R1R3R_3 + R_1 \to R_3).
    >

    [121035051]\begin{bmatrix} 1 & 2 & -1 \\ 0 & -3 & 5 \\ 0 & 5 & 1 \end{bmatrix}

    Step 2: Make the entry below the second pivot zero (R3+53R2R3R_3 + \frac{5}{3}R_2 \to R_3).
    >

    [12103500283]\begin{bmatrix} 1 & 2 & -1 \\ 0 & -3 & 5 \\ 0 & 0 & \frac{28}{3} \end{bmatrix}

    Answer: The Row Echelon Form is [12103500283]\begin{bmatrix} 1 & 2 & -1 \\ 0 & -3 & 5 \\ 0 & 0 & \frac{28}{3} \end{bmatrix}.

    :::question type="MCQ" question="Which of the following matrices is in Reduced Row Echelon Form?" options=["

    [100010001]\begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix}

    ","

    [120010001]\begin{bmatrix} 1 & 2 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix}

    ","

    [010100001]\begin{bmatrix} 0 & 1 & 0 \\ 1 & 0 & 0 \\ 0 & 0 & 1 \end{bmatrix}

    ","

    [100001010]\begin{bmatrix} 1 & 0 & 0 \\ 0 & 0 & 1 \\ 0 & 1 & 0 \end{bmatrix}

    "] answer="

    [100010001]\begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix}

    " hint="Recall the conditions for RREF, especially regarding leading 1s and zeros in their columns." solution="A matrix in RREF must have leading 1s in each non-zero row, and all other entries in the column containing a leading 1 must be zero.
    Option 1:

    [100010001]\begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix}

    This matrix satisfies all RREF conditions.
    Option 2: The entry a12=2a_{12}=2 is not zero, but the column 2 has a leading 1 in a22a_{22}. This violates RREF condition 2.
    Option 3: The leading 1s are not in a staircase pattern, and the first row starts with 0. This violates REF condition 2.
    Option 4: The leading 1 in the second row is a23a_{23}, while the leading 1 in the third row is a32a_{32}. This violates REF condition 2. Also, the third row should be above the second row if ordered by leading 1 position."
    :::

    ---

    3. Rank of a Matrix

    The rank of a matrix is a fundamental property reflecting the dimensionality of the vector space spanned by its rows or columns. It is defined as the maximum number of linearly independent row (or column) vectors in the matrix.

    We determine the rank by transforming the matrix into Row Echelon Form (REF) using EROs. The rank is then the number of non-zero rows in its REF.

    📖 Rank of a Matrix

    The rank of a matrix AA, denoted rank(A)\operatorname{rank}(A), is the number of non-zero rows in any Row Echelon Form of AA. Equivalently, it is the dimension of the column space (or row space) of AA.

    Quick Example:
    Find the rank of the matrix A=[123246369]A = \begin{bmatrix} 1 & 2 & 3 \\ 2 & 4 & 6 \\ 3 & 6 & 9 \end{bmatrix}.

    Step 1: Transform AA into REF.
    R22R1R2R_2 - 2R_1 \to R_2
    R33R1R3R_3 - 3R_1 \to R_3
    >

    [123000000]\begin{bmatrix} 1 & 2 & 3 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \end{bmatrix}

    Step 2: Count the number of non-zero rows.
    The REF has one non-zero row.

    Answer: The rank of AA is 1.

    :::question type="NAT" question="What is the rank of the matrix M=[134271031014]M = \begin{bmatrix} 1 & 3 & 4 \\ 2 & 7 & 10 \\ 3 & 10 & 14 \end{bmatrix}?" answer="2" hint="Apply elementary row operations to reduce the matrix to Row Echelon Form and then count the number of non-zero rows." solution="Step 1: Start with the given matrix.
    >

    M=[134271031014]M = \begin{bmatrix} 1 & 3 & 4 \\ 2 & 7 & 10 \\ 3 & 10 & 14 \end{bmatrix}

    Step 2: Perform R22R1R2R_2 - 2R_1 \to R_2 and R33R1R3R_3 - 3R_1 \to R_3.
    >

    [134012012]\begin{bmatrix} 1 & 3 & 4 \\ 0 & 1 & 2 \\ 0 & 1 & 2 \end{bmatrix}

    Step 3: Perform R3R2R3R_3 - R_2 \to R_3.
    >

    [134012000]\begin{bmatrix} 1 & 3 & 4 \\ 0 & 1 & 2 \\ 0 & 0 & 0 \end{bmatrix}

    The matrix is now in Row Echelon Form.

    Step 4: Count the number of non-zero rows.
    There are two non-zero rows.

    Answer: The rank of MM is 2."
    :::

    ---

    4. Consistency of Linear Systems (Rouché-Capelli Theorem)

    The Rouché-Capelli Theorem provides a definitive criterion for determining whether a system of linear equations Ax=bAx=b has a solution (is consistent) or not (is inconsistent). This involves comparing the rank of the coefficient matrix AA with the rank of the augmented matrix [Ab][A|b].

    📐 Rouché-Capelli Theorem

    A system of linear equations Ax=bAx=b is consistent (i.e., has at least one solution) if and only if the rank of the coefficient matrix AA is equal to the rank of the augmented matrix [Ab][A|b].

    rank(A)=rank([Ab])\operatorname{rank}(A) = \operatorname{rank}([A|b])

    If rank(A)rank([Ab])\operatorname{rank}(A) \ne \operatorname{rank}([A|b]), the system is inconsistent (i.e., has no solution).

    Quick Example:
    Determine the consistency of the system: x+y=1x + y = 1, 2x+2y=32x + 2y = 3.

    Step 1: Form the augmented matrix.
    >

    [111223]\left[\begin{array}{cc|c} 1 & 1 & 1 \\ 2 & 2 & 3 \end{array}\right]

    Step 2: Reduce the augmented matrix to REF.
    R22R1R2R_2 - 2R_1 \to R_2
    >

    [111001]\left[\begin{array}{cc|c} 1 & 1 & 1 \\ 0 & 0 & 1 \end{array}\right]

    Step 3: Determine rank(A)\operatorname{rank}(A) and rank([Ab])\operatorname{rank}([A|b]).
    The coefficient matrix A=[1122]A = \begin{bmatrix} 1 & 1 \\ 2 & 2 \end{bmatrix} reduces to [1100]\begin{bmatrix} 1 & 1 \\ 0 & 0 \end{bmatrix}, so rank(A)=1\operatorname{rank}(A) = 1.
    The augmented matrix [Ab][A|b] reduces to [111001]\left[\begin{array}{cc|c} 1 & 1 & 1 \\ 0 & 0 & 1 \end{array}\right], so rank([Ab])=2\operatorname{rank}([A|b]) = 2.

    Step 4: Compare the ranks.
    Since rank(A)=1rank([Ab])=2\operatorname{rank}(A) = 1 \ne \operatorname{rank}([A|b]) = 2, the system is inconsistent.

    Answer: The system is inconsistent.

    :::question type="MCQ" question="Consider the system of linear equations: x1x2+x3=1x_1 - x_2 + x_3 = 1, 2x1+x2x3=22x_1 + x_2 - x_3 = 2, 3x1+0x2+0x3=43x_1 + 0x_2 + 0x_3 = 4. Determine its consistency." options=["Consistent with a unique solution","Consistent with infinitely many solutions","Inconsistent","Cannot be determined from the given information"] answer="Inconsistent" hint="Form the augmented matrix and reduce it to Row Echelon Form to compare the ranks of the coefficient and augmented matrices." solution="Step 1: Form the augmented matrix [Ab][A|b].
    >

    [111121123004]\left[\begin{array}{ccc|c} 1 & -1 & 1 & 1 \\ 2 & 1 & -1 & 2 \\ 3 & 0 & 0 & 4 \end{array}\right]

    Step 2: Reduce the augmented matrix to REF.
    R22R1R2R_2 - 2R_1 \to R_2
    R33R1R3R_3 - 3R_1 \to R_3
    >

    [111103300331]\left[\begin{array}{ccc|c} 1 & -1 & 1 & 1 \\ 0 & 3 & -3 & 0 \\ 0 & 3 & -3 & 1 \end{array}\right]

    R3R2R3R_3 - R_2 \to R_3
    >

    [111103300001]\left[\begin{array}{ccc|c} 1 & -1 & 1 & 1 \\ 0 & 3 & -3 & 0 \\ 0 & 0 & 0 & 1 \end{array}\right]

    Step 3: Determine the ranks.
    From the REF of [Ab][A|b], the coefficient matrix AA (first three columns) has 2 non-zero rows, so rank(A)=2\operatorname{rank}(A) = 2.
    The augmented matrix [Ab][A|b] has 3 non-zero rows, so rank([Ab])=3\operatorname{rank}([A|b]) = 3.

    Step 4: Compare the ranks.
    Since rank(A)=2rank([Ab])=3\operatorname{rank}(A) = 2 \ne \operatorname{rank}([A|b]) = 3, the system is inconsistent."
    :::

    ---

    ---

    5. Types of Solutions for Consistent Systems

    For a consistent system (Ax=bAx=b), the nature of its solutions (unique or infinitely many) depends on the relationship between the rank of the coefficient matrix and the number of variables.

    Solution Types for Consistent Systems

    Let AA be an m×nm \times n coefficient matrix and nn be the number of variables. If the system Ax=bAx=b is consistent:

    • Unique Solution: If rank(A)=rank([Ab])=n\operatorname{rank}(A) = \operatorname{rank}([A|b]) = n.

    • The number of leading variables (pivots) equals the number of variables.
    • Infinitely Many Solutions: If rank(A)=rank([Ab])<n\operatorname{rank}(A) = \operatorname{rank}([A|b]) < n.

    The number of leading variables (pivots) is less than the number of variables, leading to free variables.

    Quick Example:
    Determine the type of solution for the system: x+y+z=6x + y + z = 6, 2xy+z=32x - y + z = 3, x2y+2z=3x - 2y + 2z = 3.

    Step 1: Form the augmented matrix.

    [111621131223]\left[\begin{array}{ccc|c} 1 & 1 & 1 & 6 \\ 2 & -1 & 1 & 3 \\ 1 & -2 & 2 & 3 \end{array}\right]

    Step 2: Reduce the augmented matrix to REF.
    R22R1R2R_2 - 2R_1 \to R_2
    R3R1R3R_3 - R_1 \to R_3

    [111603190313]\left[\begin{array}{ccc|c} 1 & 1 & 1 & 6 \\ 0 & -3 & -1 & -9 \\ 0 & -3 & 1 & -3 \end{array}\right]

    R3R2R3R_3 - R_2 \to R_3

    [111603190026]\left[\begin{array}{ccc|c} 1 & 1 & 1 & 6 \\ 0 & -3 & -1 & -9 \\ 0 & 0 & 2 & 6 \end{array}\right]

    Step 3: Determine the ranks and number of variables.
    rank(A)=3\operatorname{rank}(A) = 3 (3 non-zero rows in the coefficient part).
    rank([Ab])=3\operatorname{rank}([A|b]) = 3 (3 non-zero rows in the augmented matrix).
    Number of variables n=3n = 3.

    Step 4: Compare ranks and number of variables.
    Since rank(A)=rank([Ab])=n=3\operatorname{rank}(A) = \operatorname{rank}([A|b]) = n = 3, the system has a unique solution.

    Answer: The system has a unique solution.\boxed{\text{The system has a unique solution.}}

    :::question type="MCQ" question="For the system of equations: xy+z=0x - y + z = 0, 2x2y+2z=02x - 2y + 2z = 0, 3x3y+3z=03x - 3y + 3z = 0. What type of solution does it have?" options=["No solution","Unique solution","Infinitely many solutions","Dependent on a parameter"] answer="Infinitely many solutions" hint="This is a homogeneous system. Reduce the augmented matrix to REF and compare ranks to the number of variables." solution="Step 1: Form the augmented matrix [Ab][A|b].

    [111022203330]\left[\begin{array}{ccc|c} 1 & -1 & 1 & 0 \\ 2 & -2 & 2 & 0 \\ 3 & -3 & 3 & 0 \end{array}\right]

    Step 2: Reduce the augmented matrix to REF.
    R22R1R2R_2 - 2R_1 \to R_2
    R33R1R3R_3 - 3R_1 \to R_3

    [111000000000]\left[\begin{array}{ccc|c} 1 & -1 & 1 & 0 \\ 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 \end{array}\right]

    Step 3: Determine the ranks and number of variables.
    rank(A)=1\operatorname{rank}(A) = 1 (1 non-zero row).
    rank([Ab])=1\operatorname{rank}([A|b]) = 1 (1 non-zero row).
    Number of variables n=3n = 3.

    Step 4: Compare ranks and number of variables.
    Since rank(A)=rank([Ab])=1<n=3\operatorname{rank}(A) = \operatorname{rank}([A|b]) = 1 < n = 3, the system is consistent and has infinitely many solutions. This is also a homogeneous system, so it always has at least the trivial solution. Since its rank is less than the number of variables, it must have non-trivial solutions.
    Answer: Infinitely many solutions.\boxed{\text{Infinitely many solutions.}}"
    :::

    ---

    6. Homogeneous Systems of Linear Equations

    A homogeneous system of linear equations is one where all the constant terms are zero, i.e., Ax=0Ax=0. Such systems always have at least one solution, the trivial solution where all variables are zero (x=0x=0). The primary question for homogeneous systems is whether non-trivial solutions exist.

    Homogeneous Systems (Ax=0Ax=0)

    A system Ax=0Ax=0 is always consistent, as x=0x=0 is always a solution (the trivial solution).
    Let AA be an m×nm \times n matrix and nn be the number of variables:

    • Unique (Trivial) Solution: If rank(A)=n\operatorname{rank}(A) = n.

    • The only solution is x1=x2==xn=0x_1=x_2=\dots=x_n=0.
    • Infinitely Many (Non-Trivial) Solutions: If rank(A)<n\operatorname{rank}(A) < n.

    There are non-zero solutions in addition to the trivial solution. The number of free variables is nrank(A)n - \operatorname{rank}(A).

    Quick Example:
    Determine if the system x+yz=0x + y - z = 0, 2xy+z=02x - y + z = 0, 3x+0y+0z=03x + 0y + 0z = 0 has non-trivial solutions.

    Step 1: Form the coefficient matrix AA.

    A=[111211300]A = \begin{bmatrix} 1 & 1 & -1 \\ 2 & -1 & 1 \\ 3 & 0 & 0 \end{bmatrix}

    Step 2: Reduce AA to REF to find its rank.
    R22R1R2R_2 - 2R_1 \to R_2
    R33R1R3R_3 - 3R_1 \to R_3

    [111033033]\begin{bmatrix} 1 & 1 & -1 \\ 0 & -3 & 3 \\ 0 & -3 & 3 \end{bmatrix}

    R3R2R3R_3 - R_2 \to R_3

    [111033000]\begin{bmatrix} 1 & 1 & -1 \\ 0 & -3 & 3 \\ 0 & 0 & 0 \end{bmatrix}

    Step 3: Determine rank(A)\operatorname{rank}(A) and compare to nn.
    rank(A)=2\operatorname{rank}(A) = 2.
    Number of variables n=3n = 3.

    Step 4: Conclude on non-trivial solutions.
    Since rank(A)=2<n=3\operatorname{rank}(A) = 2 < n = 3, the system has infinitely many non-trivial solutions.

    Answer: The system has infinitely many non-trivial solutions.\boxed{\text{The system has infinitely many non-trivial solutions.}}

    :::question type="MCQ" question="For a homogeneous system Ax=0Ax=0 where AA is a 4×34 \times 3 matrix, if rank(A)=3\operatorname{rank}(A) = 3, which statement is true?" options=["The system has no solution.","The system has a unique non-trivial solution.","The system has infinitely many non-trivial solutions.","The system has only the trivial solution."] answer="The system has only the trivial solution." hint="Recall the conditions for homogeneous systems: they are always consistent. The nature of the solution (trivial or non-trivial) depends on the rank relative to the number of variables." solution="A homogeneous system Ax=0Ax=0 is always consistent. The number of variables is n=3n=3.
    Given rank(A)=3\operatorname{rank}(A) = 3.
    Since rank(A)=n=3\operatorname{rank}(A) = n = 3, the system has a unique solution. For a homogeneous system, this unique solution is always the trivial solution (x1=0,x2=0,x3=0x_1=0, x_2=0, x_3=0). Therefore, the system has only the trivial solution.
    Answer: The system has only the trivial solution.\boxed{\text{The system has only the trivial solution.}}"
    :::

    ---

    7. Solving Systems using Gaussian/Gauss-Jordan Elimination

    Gaussian elimination uses EROs to transform the augmented matrix into Row Echelon Form (REF), from which solutions can be found using back-substitution. Gauss-Jordan elimination extends this by transforming the matrix into Reduced Row Echelon Form (RREF), allowing direct reading of the solutions.

    Gaussian Elimination Steps:

  • Form the augmented matrix [Ab][A|b].

  • Use EROs to transform [Ab][A|b] into REF.

  • Write out the equivalent system of equations from the REF.

  • Use back-substitution to solve for the variables.
  • Gauss-Jordan Elimination Steps:

  • Form the augmented matrix [Ab][A|b].

  • Use EROs to transform [Ab][A|b] into RREF.

  • Read the solutions directly from the RREF.
  • Worked Example:
    Solve the system: xy+2z=9x - y + 2z = 9, 2x+y+z=72x + y + z = 7, 3x2y2z=53x - 2y - 2z = 5 using Gauss-Jordan elimination.

    Step 1: Form the augmented matrix.

    [112921173225]\left[\begin{array}{ccc|c} 1 & -1 & 2 & 9 \\ 2 & 1 & 1 & 7 \\ 3 & -2 & -2 & 5 \end{array}\right]

    Step 2: Transform to REF.
    R22R1R2R_2 - 2R_1 \to R_2
    R33R1R3R_3 - 3R_1 \to R_3

    [11290331101822]\left[\begin{array}{ccc|c} 1 & -1 & 2 & 9 \\ 0 & 3 & -3 & -11 \\ 0 & 1 & -8 & -22 \end{array}\right]

    R2R3R_2 \leftrightarrow R_3 (to get a 1 in the pivot position)

    [11290182203311]\left[\begin{array}{ccc|c} 1 & -1 & 2 & 9 \\ 0 & 1 & -8 & -22 \\ 0 & 3 & -3 & -11 \end{array}\right]

    R33R2R3R_3 - 3R_2 \to R_3

    [112901822002155]\left[\begin{array}{ccc|c} 1 & -1 & 2 & 9 \\ 0 & 1 & -8 & -22 \\ 0 & 0 & 21 & 55 \end{array}\right]

    Step 3: Continue to RREF.
    121R3R3\frac{1}{21}R_3 \to R_3

    [1129018220015521]\left[\begin{array}{ccc|c} 1 & -1 & 2 & 9 \\ 0 & 1 & -8 & -22 \\ 0 & 0 & 1 & \frac{55}{21} \end{array}\right]

    R2+8R3R2R_2 + 8R_3 \to R_2
    R12R3R1R_1 - 2R_3 \to R_1

    [11092(5521)01022+8(5521)0015521]\left[\begin{array}{ccc|c} 1 & -1 & 0 & 9 - 2\left(\frac{55}{21}\right) \\ 0 & 1 & 0 & -22 + 8\left(\frac{55}{21}\right) \\ 0 & 0 & 1 & \frac{55}{21} \end{array}\right]

    [11018911021010462+440210015521]\left[\begin{array}{ccc|c} 1 & -1 & 0 & \frac{189 - 110}{21} \\ 0 & 1 & 0 & \frac{-462 + 440}{21} \\ 0 & 0 & 1 & \frac{55}{21} \end{array}\right]

    [110792101022210015521]\left[\begin{array}{ccc|c} 1 & -1 & 0 & \frac{79}{21} \\ 0 & 1 & 0 & -\frac{22}{21} \\ 0 & 0 & 1 & \frac{55}{21} \end{array}\right]

    R1+R2R1R_1 + R_2 \to R_1

    [1007921222101022210015521]\left[\begin{array}{ccc|c} 1 & 0 & 0 & \frac{79}{21} - \frac{22}{21} \\ 0 & 1 & 0 & -\frac{22}{21} \\ 0 & 0 & 1 & \frac{55}{21} \end{array}\right]

    [100572101022210015521]\left[\begin{array}{ccc|c} 1 & 0 & 0 & \frac{57}{21} \\ 0 & 1 & 0 & -\frac{22}{21} \\ 0 & 0 & 1 & \frac{55}{21} \end{array}\right]

    [10019701022210015521]\left[\begin{array}{ccc|c} 1 & 0 & 0 & \frac{19}{7} \\ 0 & 1 & 0 & -\frac{22}{21} \\ 0 & 0 & 1 & \frac{55}{21} \end{array}\right]

    Step 4: Read the solution.
    x=197x = \frac{19}{7}, y=2221y = -\frac{22}{21}, z=5521z = \frac{55}{21}.

    Answer: x=197,y=2221,z=5521.\boxed{x = \frac{19}{7}, y = -\frac{22}{21}, z = \frac{55}{21}.}

    :::question type="NAT" question="Solve the system x+2y=5x + 2y = 5, 3xy=13x - y = 1 for xx using Gaussian elimination. Provide the value of xx." answer="1" hint="Form the augmented matrix, perform EROs to get to REF, then use back-substitution." solution="Step 1: Form the augmented matrix.

    [125311]\left[\begin{array}{cc|c} 1 & 2 & 5 \\ 3 & -1 & 1 \end{array}\right]

    Step 2: Reduce to REF.
    R23R1R2R_2 - 3R_1 \to R_2

    [1250714]\left[\begin{array}{cc|c} 1 & 2 & 5 \\ 0 & -7 & -14 \end{array}\right]

    Step 3: Convert to equations and back-substitute.
    From the second row: 7y=14    y=2-7y = -14 \implies y = 2.
    Substitute y=2y=2 into the first equation: x+2(2)=5    x+4=5    x=1x + 2(2) = 5 \implies x + 4 = 5 \implies x = 1.

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

    ---

    8. Cramer's Rule

    Cramer's Rule is an alternative method for solving systems of linear equations, applicable only when the system has a unique solution. It involves calculating determinants of matrices derived from the original coefficient matrix.

    📐 Cramer's Rule

    For a system Ax=bAx=b of nn linear equations in nn variables, if det(A)0\det(A) \ne 0, then the system has a unique solution given by:

    xj=det(Aj)det(A)x_j = \frac{\det(A_j)}{\det(A)}

    Where:
    AA is the coefficient matrix.
    AjA_j is the matrix formed by replacing the jj-th column of AA with the constant vector bb.
    When to use: For systems with a unique solution where det(A)0\det(A) \ne 0. It is particularly efficient for 2×22 \times 2 or 3×33 \times 3 systems and when only specific variables are needed.

    Worked Example:
    Solve the system x+y=3x + y = 3, 2x3y=12x - 3y = 1 using Cramer's Rule.

    Step 1: Identify AA, bb, and calculate det(A)\det(A).

    A=[1123],b=[31]A = \begin{bmatrix} 1 & 1 \\ 2 & -3 \end{bmatrix}, \quad b = \begin{bmatrix} 3 \\ 1 \end{bmatrix}

    det(A)=(1)(3)(1)(2)=32=5\det(A) = (1)(-3) - (1)(2) = -3 - 2 = -5

    Since det(A)=50\det(A) = -5 \ne 0, a unique solution exists.

    Step 2: Form A1A_1 and A2A_2 and calculate their determinants.

    A1=[3113]A_1 = \begin{bmatrix} 3 & 1 \\ 1 & -3 \end{bmatrix}
    (replace column 1 of AA with bb)
    det(A1)=(3)(3)(1)(1)=91=10\det(A_1) = (3)(-3) - (1)(1) = -9 - 1 = -10

    A2=[1321]A_2 = \begin{bmatrix} 1 & 3 \\ 2 & 1 \end{bmatrix}
    (replace column 2 of AA with bb)
    det(A2)=(1)(1)(3)(2)=16=5\det(A_2) = (1)(1) - (3)(2) = 1 - 6 = -5

    Step 3: Calculate xx and yy.

    x=det(A1)det(A)=105=2x = \frac{\det(A_1)}{\det(A)} = \frac{-10}{-5} = 2

    y=det(A2)det(A)=55=1y = \frac{\det(A_2)}{\det(A)} = \frac{-5}{-5} = 1

    Answer: x=2,y=1.\boxed{x = 2, y = 1.}

    :::question type="MCQ" question="Using Cramer's Rule, find the value of yy for the system: 3x2y=13x - 2y = 1, x+4y=7x + 4y = 7." options=["1","2","3","4"] answer="2" hint="Calculate det(A)\det(A) and det(Ay)\det(A_y) (where column 2 of AA is replaced by the constant vector)." solution="Step 1: Write the coefficient matrix AA and constant vector bb.

    A=[3214],b=[17]A = \begin{bmatrix} 3 & -2 \\ 1 & 4 \end{bmatrix}, \quad b = \begin{bmatrix} 1 \\ 7 \end{bmatrix}

    Step 2: Calculate det(A)\det(A).

    det(A)=(3)(4)(2)(1)=12(2)=12+2=14\det(A) = (3)(4) - (-2)(1) = 12 - (-2) = 12 + 2 = 14

    Step 3: Form AyA_y (replace the second column of AA with bb) and calculate det(Ay)\det(A_y).

    Ay=[3117]A_y = \begin{bmatrix} 3 & 1 \\ 1 & 7 \end{bmatrix}

    det(Ay)=(3)(7)(1)(1)=211=20\det(A_y) = (3)(7) - (1)(1) = 21 - 1 = 20

    Step 4: Apply Cramer's Rule for yy.

    y=det(Ay)det(A)=2014=107y = \frac{\det(A_y)}{\det(A)} = \frac{20}{14} = \frac{10}{7}

    Answer: 107\boxed{\frac{10}{7}}"
    :::

    ---

    Advanced Applications

    Systems with Parameters

    Analyzing systems of linear equations containing unknown parameters is crucial for determining conditions under which the system is consistent, has a unique solution, or infinitely many solutions. This often involves reducing the augmented matrix to REF and examining the rows containing the parameters.

    Worked Example 1 (Consistency with Parameters - from PYQ 7 pattern):
    Consider the system of linear equations:

    x+y+5z=3x+y+5z=3

    x+2y+mz=5x+2y+mz=5

    x+2y+4z=kx+2y+4z=k

    Determine the conditions on mm and kk for the system to be consistent.

    Step 1: Form the augmented matrix.
    >

    [115312m5124k]\left[\begin{array}{ccc|c} 1 & 1 & 5 & 3 \\ 1 & 2 & m & 5 \\ 1 & 2 & 4 & k \end{array}\right]

    Step 2: Reduce the augmented matrix to REF.
    R2R1R2R_2 - R_1 \to R_2
    R3R1R3R_3 - R_1 \to R_3
    >

    [115301m52011k3]\left[\begin{array}{ccc|c} 1 & 1 & 5 & 3 \\ 0 & 1 & m-5 & 2 \\ 0 & 1 & -1 & k-3 \end{array}\right]

    R3R2R3R_3 - R_2 \to R_3
    >

    [115301m52001(m5)(k3)2]\left[\begin{array}{ccc|c} 1 & 1 & 5 & 3 \\ 0 & 1 & m-5 & 2 \\ 0 & 0 & -1-(m-5) & (k-3)-2 \end{array}\right]

    >
    [115301m52004mk5]\left[\begin{array}{ccc|c} 1 & 1 & 5 & 3 \\ 0 & 1 & m-5 & 2 \\ 0 & 0 & 4-m & k-5 \end{array}\right]

    Step 3: Analyze consistency using Rouché-Capelli Theorem.
    The system is consistent if rank(A)=rank([Ab])\operatorname{rank}(A) = \operatorname{rank}([A|b]).
    * If 4m04-m \ne 0 (i.e., m4m \ne 4), then rank(A)=3\operatorname{rank}(A) = 3 and rank([Ab])=3\operatorname{rank}([A|b]) = 3. In this case, the system has a unique solution, hence consistent.
    * If 4m=04-m = 0 (i.e., m=4m = 4), then the third row of the coefficient matrix becomes all zeros.
    * If m=4m=4, the augmented matrix becomes:
    >

    [11530112000k5]\left[\begin{array}{ccc|c} 1 & 1 & 5 & 3 \\ 0 & 1 & -1 & 2 \\ 0 & 0 & 0 & k-5 \end{array}\right]

    * For consistency when m=4m=4, we must have the last row of the augmented matrix also be all zeros, meaning k5=0k-5=0, so k=5k=5.
    In this case, rank(A)=2\operatorname{rank}(A) = 2 and rank([Ab])=2\operatorname{rank}([A|b]) = 2. The system has infinitely many solutions.
    * If m=4m=4 and k5k \ne 5, then the last row is [000k5]\left[\begin{array}{ccc|c} 0 & 0 & 0 & k-5 \end{array}\right] where k50k-5 \ne 0.
    In this case, rank(A)=2\operatorname{rank}(A) = 2 and rank([Ab])=3\operatorname{rank}([A|b]) = 3. The system is inconsistent.

    Step 4: Combine the conditions for consistency.
    The system is consistent if:

  • m4m \ne 4 (unique solution)

  • m=4m = 4 AND k=5k = 5 (infinitely many solutions)
  • Answer: The system is consistent if m4m \ne 4 or (m=4m=4 and k=5k=5).

    Worked Example 2 (Unique Solution with Parameters - from PYQ 8 pattern):
    The system of linear equations x+y+z=6x+y+z=6, x+2y+5z=10x+2y+5z=10, 2x+3y+λz=μ2x+3y+\lambda z=\mu has a unique solution. Determine the conditions on λ\lambda and μ\mu.

    Step 1: Form the augmented matrix.
    >

    [11161251023λμ]\left[\begin{array}{ccc|c} 1 & 1 & 1 & 6 \\ 1 & 2 & 5 & 10 \\ 2 & 3 & \lambda & \mu \end{array}\right]

    Step 2: Reduce the augmented matrix to REF.
    R2R1R2R_2 - R_1 \to R_2
    R32R1R3R_3 - 2R_1 \to R_3
    >

    [1116014401λ2μ12]\left[\begin{array}{ccc|c} 1 & 1 & 1 & 6 \\ 0 & 1 & 4 & 4 \\ 0 & 1 & \lambda-2 & \mu-12 \end{array}\right]

    R3R2R3R_3 - R_2 \to R_3
    >

    [1116014400λ24μ124]\left[\begin{array}{ccc|c} 1 & 1 & 1 & 6 \\ 0 & 1 & 4 & 4 \\ 0 & 0 & \lambda-2-4 & \mu-12-4 \end{array}\right]

    >
    [1116014400λ6μ16]\left[\begin{array}{ccc|c} 1 & 1 & 1 & 6 \\ 0 & 1 & 4 & 4 \\ 0 & 0 & \lambda-6 & \mu-16 \end{array}\right]

    Step 3: Analyze conditions for a unique solution.
    For a unique solution, we need rank(A)=rank([Ab])=n\operatorname{rank}(A) = \operatorname{rank}([A|b]) = n, where n=3n=3 is the number of variables.
    This requires that all three rows of the coefficient matrix AA (left of the bar) must be non-zero after reduction.
    Therefore, the entry (λ6)(\lambda-6) in the third row must be non-zero.
    So, λ60    λ6\lambda - 6 \ne 0 \implies \lambda \ne 6.
    If λ6\lambda \ne 6, then rank(A)=3\operatorname{rank}(A) = 3 and rank([Ab])=3\operatorname{rank}([A|b]) = 3, irrespective of the value of μ\mu. Thus, the system is consistent and has a unique solution.

    Step 4: Conclude the conditions.
    The system has a unique solution if λ6\lambda \ne 6 and μ\mu can be any real number (μR\mu \in \mathbb{R}).

    Answer: The system has a unique solution if λ6\lambda \ne 6, μR\mu \in \mathbb{R}.

    :::question type="MCQ" question="For the system x+2y+z=3x+2y+z=3, 2x+5y+2z=72x+5y+2z=7, 3x+my+3z=103x+my+3z=10. If the system has infinitely many solutions, what is the value of mm?" options=["7","8","9","10"] answer="7" hint="For infinitely many solutions, rank(A)=rank([Ab])<n\operatorname{rank}(A) = \operatorname{rank}([A|b]) < n. Reduce the augmented matrix to REF and find the condition on mm that leads to a row of zeros in both AA and [Ab][A|b]." solution="Step 1: Form the augmented matrix.
    >

    [121325273m310]\left[\begin{array}{ccc|c} 1 & 2 & 1 & 3 \\ 2 & 5 & 2 & 7 \\ 3 & m & 3 & 10 \end{array}\right]

    Step 2: Reduce the augmented matrix to Row Echelon Form.
    R22R1R2R_2 - 2R_1 \to R_2
    R33R1R3R_3 - 3R_1 \to R_3
    >

    [121301010m601]\left[\begin{array}{ccc|c} 1 & 2 & 1 & 3 \\ 0 & 1 & 0 & 1 \\ 0 & m-6 & 0 & 1 \end{array}\right]

    R3(m6)R2R3R_3 - (m-6)R_2 \to R_3
    >

    [121301010(m6)(m6)(1)0(m6)(0)1(m6)(1)]\left[\begin{array}{ccc|c} 1 & 2 & 1 & 3 \\ 0 & 1 & 0 & 1 \\ 0 & (m-6)-(m-6)(1) & 0-(m-6)(0) & 1-(m-6)(1) \end{array}\right]

    >
    [121301010001m+6]\left[\begin{array}{ccc|c} 1 & 2 & 1 & 3 \\ 0 & 1 & 0 & 1 \\ 0 & 0 & 0 & 1-m+6 \end{array}\right]

    >
    [121301010007m]\left[\begin{array}{ccc|c} 1 & 2 & 1 & 3 \\ 0 & 1 & 0 & 1 \\ 0 & 0 & 0 & 7-m \end{array}\right]

    Step 3: Apply conditions for infinitely many solutions.
    For a system to have infinitely many solutions, it must be consistent, and rank(A)<n\operatorname{rank}(A) < n.
    Here n=3n=3. From the REF, rank(A)\operatorname{rank}(A) will be 2 if the third row of AA is zero. This happens when 0=00=0 in the third row.
    For consistency, the entire third row of the augmented matrix must be zero. This means 7m=07-m=0.
    Thus, m=7m=7.
    If m=7m=7, then rank(A)=2\operatorname{rank}(A) = 2 and rank([Ab])=2\operatorname{rank}([A|b]) = 2. Since n=3n=3, rank(A)=rank([Ab])<n\operatorname{rank}(A) = \operatorname{rank}([A|b]) < n, leading to infinitely many solutions.

    Answer: 7\boxed{7}"
    :::

    ---

    Problem-Solving Strategies

    💡 CUET PG Strategy

    Rank-based Approach is Primary: For most problems involving consistency and number of solutions, the Rouché-Capelli Theorem (comparing rank(A)\operatorname{rank}(A) and rank([Ab])\operatorname{rank}([A|b])) is the most robust method. Always reduce the augmented matrix to REF first.
    Unique Solution Shortcut (Determinant): For an n×nn \times n system Ax=bAx=b, a unique solution exists if and only if det(A)0\det(A) \ne 0. This is faster than rank for square systems when only uniqueness is questioned.
    Homogeneous Systems: Remember they are always consistent. The existence of non-trivial solutions hinges solely on rank(A)<n\operatorname{rank}(A) < n.
    Parameter Analysis: When parameters are involved, perform EROs as usual. The conditions for solution types will emerge from the entries in the final row(s) of the REF, particularly those involving parameters. Consider cases where the parameter makes a leading entry zero.

    ---

    Common Mistakes

    ⚠️ Watch Out

    Incorrect EROs: Errors in arithmetic or applying row operations incorrectly can lead to incorrect REF/RREF and thus wrong ranks and solutions.
    Correct Approach: Double-check each ERO. Practice makes perfect for speed and accuracy.

    Misinterpreting Rank Conditions: Confusing conditions for consistency, unique, or infinite solutions, especially when nn (number of variables) differs from mm (number of equations).
    Correct Approach: Clearly define nn, rank(A)\operatorname{rank}(A), and rank([Ab])\operatorname{rank}([A|b]) and compare them rigorously using the Rouché-Capelli Theorem.

    Ignoring Parameter Edge Cases: Failing to consider scenarios where a parameter makes a leading entry zero during row reduction, which changes the rank.
    Correct Approach: Always analyze the cases where expressions involving parameters are zero and non-zero separately. This often creates branches in the solution.

    Applying Cramer's Rule Incorrectly: Using Cramer's Rule when det(A)=0\det(A)=0 or for non-square systems.
    Correct Approach: Cramer's Rule is strictly for square systems (nn equations, nn variables) with a unique solution (det(A)0\det(A) \ne 0). If det(A)=0\det(A)=0, the system either has no solution or infinitely many, and Cramer's Rule is not applicable.

    ---

    Practice Questions

    :::question type="MCQ" question="Consider the system: x+y+z=1x+y+z=1, 2x+3y+z=22x+3y+z=2, 3x+4y+2z=k3x+4y+2z=k. For what value of kk does the system have infinitely many solutions?" options=["1","2","3","4"] answer="3" hint="Reduce the augmented matrix to REF. For infinitely many solutions, rank(A)=rank([Ab])<n\operatorname{rank}(A) = \operatorname{rank}([A|b]) < n." solution="Step 1: Form the augmented matrix.
    >

    [11112312342k]\left[\begin{array}{ccc|c} 1 & 1 & 1 & 1 \\ 2 & 3 & 1 & 2 \\ 3 & 4 & 2 & k \end{array}\right]

    Step 2: Reduce to REF.
    R22R1R2R_2 - 2R_1 \to R_2
    R33R1R3R_3 - 3R_1 \to R_3
    >

    [11110110011k3]\left[\begin{array}{ccc|c} 1 & 1 & 1 & 1 \\ 0 & 1 & -1 & 0 \\ 0 & 1 & -1 & k-3 \end{array}\right]

    R3R2R3R_3 - R_2 \to R_3
    >

    [11110110000k3]\left[\begin{array}{ccc|c} 1 & 1 & 1 & 1 \\ 0 & 1 & -1 & 0 \\ 0 & 0 & 0 & k-3 \end{array}\right]

    Step 3: Analyze for infinitely many solutions.
    For infinitely many solutions, the system must be consistent, and rank(A)<n\operatorname{rank}(A) < n.
    Here, n=3n=3. From the REF, rank(A)=2\operatorname{rank}(A) = 2 (since the third column of AA is zero in the last row).
    For consistency, we need rank([Ab])=rank(A)=2\operatorname{rank}([A|b]) = \operatorname{rank}(A) = 2.
    This requires the last entry in the augmented matrix's third row to be zero, i.e., k3=0k-3=0.
    Thus, k=3k=3.

    Answer: 3\boxed{3}"
    :::

    :::question type="NAT" question="For the homogeneous system x+y+z=0x+y+z=0, 2x+2y+2z=02x+2y+2z=0, 3x+3y+3z=03x+3y+3z=0, find the number of linearly independent solutions." answer="2" hint="The number of linearly independent solutions for a homogeneous system is nrank(A)n - \operatorname{rank}(A), where nn is the number of variables." solution="Step 1: Form the coefficient matrix AA.
    >

    A=[111222333]A = \begin{bmatrix} 1 & 1 & 1 \\ 2 & 2 & 2 \\ 3 & 3 & 3 \end{bmatrix}

    Step 2: Reduce AA to REF.
    R22R1R2R_2 - 2R_1 \to R_2
    R33R1R3R_3 - 3R_1 \to R_3
    >

    [111000000]\begin{bmatrix} 1 & 1 & 1 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \end{bmatrix}

    Step 3: Determine rank(A)\operatorname{rank}(A).
    The number of non-zero rows in REF is 1. So, rank(A)=1\operatorname{rank}(A) = 1.

    Step 4: Calculate the number of linearly independent solutions.
    The number of variables is n=3n=3.
    The number of linearly independent solutions (dimension of the null space) is nrank(A)=31=2n - \operatorname{rank}(A) = 3 - 1 = 2.

    Answer: 2\boxed{2}"
    :::

    :::question type="MSQ" question="Which of the following statements are true regarding the system Ax=bAx=b if AA is an m×nm \times n matrix?" options=["If rank(A)<rank([Ab])\operatorname{rank}(A) < \operatorname{rank}([A|b]), the system has no solution.","If rank(A)=n\operatorname{rank}(A) = n, the system always has a unique solution.","If rank(A)=rank([Ab])<n\operatorname{rank}(A) = \operatorname{rank}([A|b]) < n, the system has infinitely many solutions.","If m<nm < n, the system must have infinitely many solutions."] answer="If rank(A)<rank([Ab])\operatorname{rank}(A) < \operatorname{rank}([A|b]), the system has no solution.,If rank(A)=rank([Ab])<n\operatorname{rank}(A) = \operatorname{rank}([A|b]) < n, the system has infinitely many solutions." hint="Carefully apply the Rouché-Capelli Theorem and the conditions for unique/infinite solutions. Also consider cases where m<nm < n for consistency." solution="Let's analyze each option:
    * 'If rank(A)<rank([Ab])\operatorname{rank}(A) < \operatorname{rank}([A|b]), the system has no solution.' This is the direct statement of inconsistency from the Rouché-Capelli Theorem. This statement is TRUE.
    * 'If rank(A)=n\operatorname{rank}(A) = n, the system always has a unique solution.' This statement is only true if the system is consistent. If rank(A)=n\operatorname{rank}(A) = n but rank([Ab])n\operatorname{rank}([A|b]) \ne n, the system is inconsistent (no solution). For example, x=1x=1, x=2x=2. Here rank(A)=1\operatorname{rank}(A)=1, n=1n=1, but rank([Ab])=2\operatorname{rank}([A|b])=2. So this statement is FALSE. A more precise statement would be: 'If rank(A)=rank([Ab])=n\operatorname{rank}(A) = \operatorname{rank}([A|b]) = n, the system has a unique solution.'
    * 'If rank(A)=rank([Ab])<n\operatorname{rank}(A) = \operatorname{rank}([A|b]) < n, the system has infinitely many solutions.' This is the correct condition for a consistent system to have infinitely many solutions, as there are nrank(A)n - \operatorname{rank}(A) free variables. This statement is TRUE.
    'If m<nm < n, the system must have infinitely many solutions.' If the number of equations (mm) is less than the number of variables (nn), the system might have infinitely many solutions (if consistent) OR no solution (if inconsistent). It does not must* have infinitely many solutions. For example, x+y+z=1x+y+z=1 (1 equation, 3 variables). This has infinite solutions. But consider x+y+z=1x+y+z=1, x+y+z=2x+y+z=2. Here m=2,n=3m=2, n=3, but it's inconsistent (no solution). So this statement is FALSE.

    Therefore, the correct statements are: 'If rank(A)<rank([Ab])\operatorname{rank}(A) < \operatorname{rank}([A|b]), the system has no solution.' and 'If rank(A)=rank([Ab])<n\operatorname{rank}(A) = \operatorname{rank}([A|b]) < n, the system has infinitely many solutions.'"
    :::

    :::question type="MCQ" question="Given the system: x+2y=c1x+2y=c_1, 3x+6y=c23x+6y=c_2. For what conditions on c1c_1 and c2c_2 will the system have infinitely many solutions?" options=["c2=3c1c_2 = 3c_1","rank(A)=1\operatorname{rank}(A) = 1","Both c1,c2c_1, c_2 are non-zero","The system is always inconsistent"] answer="c2=3c1c_2 = 3c_1" hint="Reduce the augmented matrix to REF. For infinitely many solutions, the last row must be all zeros." solution="Step 1: Form the augmented matrix.
    >

    [12c136c2]\left[\begin{array}{cc|c} 1 & 2 & c_1 \\ 3 & 6 & c_2 \end{array}\right]

    Step 2: Reduce to REF.
    R23R1R2R_2 - 3R_1 \to R_2
    >

    [12c100c23c1]\left[\begin{array}{cc|c} 1 & 2 & c_1 \\ 0 & 0 & c_2 - 3c_1 \end{array}\right]

    Step 3: Analyze for infinitely many solutions.
    For infinitely many solutions, we need rank(A)=rank([Ab])<n\operatorname{rank}(A) = \operatorname{rank}([A|b]) < n.
    Here, n=2n=2. From the REF, rank(A)=1\operatorname{rank}(A) = 1.
    For rank([Ab])\operatorname{rank}([A|b]) to be 1, the last entry in the augmented matrix must be zero.
    So, c23c1=0    c2=3c1c_2 - 3c_1 = 0 \implies c_2 = 3c_1.
    If c2=3c1c_2 = 3c_1, then rank(A)=1\operatorname{rank}(A) = 1 and rank([Ab])=1\operatorname{rank}([A|b]) = 1. Since 1<n=21 < n=2, the system has infinitely many solutions.

    Answer: c2=3c1\boxed{c_2 = 3c_1}"
    :::

    :::question type="NAT" question="If the system x+y=1x+y=1, 2x+ay=b2x+ay=b has no solution, and a,ba, b are integers, find the smallest positive integer value of a+ba+b." answer="3" hint="For no solution, rank(A)<rank([Ab])\operatorname{rank}(A) < \operatorname{rank}([A|b]). Reduce the augmented matrix to REF and find the conditions on aa and bb." solution="Step 1: Form the augmented matrix.
    >

    [1112ab]\left[\begin{array}{cc|c} 1 & 1 & 1 \\ 2 & a & b \end{array}\right]

    Step 2: Reduce to REF.
    R22R1R2R_2 - 2R_1 \to R_2
    >

    [1110a2b2]\left[\begin{array}{cc|c} 1 & 1 & 1 \\ 0 & a-2 & b-2 \end{array}\right]

    Step 3: Analyze for no solution.
    For no solution, we need rank(A)<rank([Ab])\operatorname{rank}(A) < \operatorname{rank}([A|b]).
    This occurs when the coefficient part of the last row is zero, but the constant part is non-zero.
    So, a2=0    a=2a-2=0 \implies a=2.
    And b20    b2b-2 \ne 0 \implies b \ne 2.

    Step 4: Find the smallest positive integer value of a+ba+b.
    We have a=2a=2.
    We need b2b \ne 2. Since bb is an integer, the smallest positive integer value for bb (that is not 2) is b=1b=1.
    Then a+b=2+1=3a+b = 2+1 = 3.

    Answer: 3\boxed{3}"
    :::

    ---

    Summary

    Key Formulas & Takeaways

    | # | Formula/Concept | Expression |
    |---|----------------|------------|
    | 1 | Matrix Form | Ax=bAx=b |
    | 2 | Augmented Matrix | [Ab][A|b] |
    | 3 | Rank of Matrix | rank(A)=number of non-zero rows in REF\operatorname{rank}(A) = \text{number of non-zero rows in REF} |
    | 4 | Consistency (Rouché-Capelli) | rank(A)=rank([Ab])\operatorname{rank}(A) = \operatorname{rank}([A|b]): Consistent |
    | | | rank(A)rank([Ab])\operatorname{rank}(A) \ne \operatorname{rank}([A|b]): Inconsistent (No Solution) |
    | 5 | Unique Solution | rank(A)=rank([Ab])=n\operatorname{rank}(A) = \operatorname{rank}([A|b]) = n |
    | 6 | Infinite Solutions | rank(A)=rank([Ab])<n\operatorname{rank}(A) = \operatorname{rank}([A|b]) < n |
    | 7 | Homogeneous System (Ax=0Ax=0) | Always consistent (trivial solution x=0x=0) |
    | | | rank(A)=n\operatorname{rank}(A) = n: Unique (Trivial) Solution |
    | | | rank(A)<n\operatorname{rank}(A) < n: Infinitely Many (Non-Trivial) Solutions |
    | 8 | Cramer's Rule | xj=det(Aj)det(A)x_j = \frac{\det(A_j)}{\det(A)} (if det(A)0\det(A) \ne 0) |

    ---

    What's Next?

    💡 Continue Learning

    This topic connects to:
    Vector Spaces and Subspaces: The solution set of a homogeneous system Ax=0Ax=0 forms the null space of AA, which is a vector subspace. Understanding its dimension (nrank(A)n - \operatorname{rank}(A)) is crucial.
    Linear Transformations: A system Ax=bAx=b can be viewed as finding an input vector xx that maps to an output vector bb under the linear transformation T(x)=AxT(x)=Ax. Consistency relates to whether bb is in the image (range) of TT.
    * Eigenvalues and Eigenvectors: While not directly about solving Ax=bAx=b, understanding matrix properties like rank and determinants is foundational for later topics involving eigenvalues and eigenvectors, which arise from homogeneous systems (AλI)x=0(A - \lambda I)x = 0.

    ---

    💡 Next Up

    Proceeding to Rank and Inverse of a Matrix.

    ---

    Part 3: Rank and Inverse of a Matrix

    This section establishes the fundamental concepts of matrix rank and invertibility, which are crucial for understanding linear transformations, solving systems of linear equations, and analyzing the properties of vector spaces. We will explore methods for their computation and examine their essential properties relevant to competitive examinations.

    ---

    ---

    Core Concepts

    1. Rank of a Matrix

    We define the rank of a matrix AA, denoted rank(A)\operatorname{rank}(A), as the maximum number of linearly independent column vectors in AA, which is equivalent to the maximum number of linearly independent row vectors in AA. Alternatively, it is the order of the largest non-singular square submatrix of AA. A practical method for determining rank involves reducing the matrix to its row echelon form.

    📖 Row Echelon Form

    A matrix is in row echelon form if:

    • All non-zero rows are above any rows of all zeros.

    • The leading entry (pivot) of each non-zero row is in a column to the right of the leading entry of the row above it.

    • All entries in a column below a leading entry are zero.

    📖 Reduced Row Echelon Form

    A matrix is in reduced row echelon form if it satisfies the conditions for row echelon form and additionally:

    • The leading entry in each non-zero row is 1.

    • Each column containing a leading 1 has zeros everywhere else.

    The rank of a matrix is the number of non-zero rows in its row echelon form.

    Quick Example: Determine the rank of A=[123246369]A = \begin{bmatrix} 1 & 2 & 3 \\ 2 & 4 & 6 \\ 3 & 6 & 9 \end{bmatrix}.

    Step 1: Apply row operations to achieve row echelon form.
    >

    [123246369]\begin{bmatrix} 1 & 2 & 3 \\ 2 & 4 & 6 \\ 3 & 6 & 9 \end{bmatrix}

    Step 2: Perform R2R22R1R_2 \to R_2 - 2R_1 and R3R33R1R_3 \to R_3 - 3R_1.
    >

    [123000000]\begin{bmatrix} 1 & 2 & 3 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \end{bmatrix}

    Step 3: Count the number of non-zero rows.
    The matrix in row echelon form has one non-zero row.

    Answer: rank(A)=1\operatorname{rank}(A) = 1.

    :::question type="MCQ" question="What is the rank of the matrix M=[1201263331065]M = \begin{bmatrix} 1 & 2 & 0 & -1 \\ 2 & 6 & -3 & -3 \\ 3 & 10 & -6 & -5 \end{bmatrix}?" options=["Rank (MM) = 4","Rank (MM) = 3","Rank (MM) = 2","Rank (MM) = 1"] answer="Rank (MM) = 2" hint="Reduce the matrix to row echelon form using elementary row operations and count the number of non-zero rows." solution="Step 1: Start with the given matrix.
    >

    [1201263331065]\begin{bmatrix} 1 & 2 & 0 & -1 \\ 2 & 6 & -3 & -3 \\ 3 & 10 & -6 & -5 \end{bmatrix}

    Step 2: Perform R2R22R1R_2 \to R_2 - 2R_1 and R3R33R1R_3 \to R_3 - 3R_1.
    >

    [120102310462]\begin{bmatrix} 1 & 2 & 0 & -1 \\ 0 & 2 & -3 & -1 \\ 0 & 4 & -6 & -2 \end{bmatrix}

    Step 3: Perform R3R32R2R_3 \to R_3 - 2R_2.
    >

    [120102310000]\begin{bmatrix} 1 & 2 & 0 & -1 \\ 0 & 2 & -3 & -1 \\ 0 & 0 & 0 & 0 \end{bmatrix}

    Step 4: Count the number of non-zero rows.
    The row echelon form has two non-zero rows.
    Therefore, rank(M)=2\operatorname{rank}(M) = 2."
    :::

    ---

    2. Properties of Rank

    The rank of a matrix possesses several important properties that are useful in various applications, particularly concerning matrix products and systems of linear equations.

    Key Properties of Rank

    For matrices AA of size m×nm \times n and BB of size n×pn \times p:

    • rank(A)=rank(AT)\operatorname{rank}(A) = \operatorname{rank}(A^T).

    • rank(A)min(m,n)\operatorname{rank}(A) \leq \min(m, n).

    • Sylvester's Inequality: rank(A)+rank(B)nrank(AB)min(rank(A),rank(B))\operatorname{rank}(A) + \operatorname{rank}(B) - n \leq \operatorname{rank}(AB) \leq \min(\operatorname{rank}(A), \operatorname{rank}(B)).

    • If AA is an n×nn \times n matrix, then AA is invertible if and only if rank(A)=n\operatorname{rank}(A) = n.

    📖 Nullity of a Matrix

    The nullity of a matrix AA, denoted nullity(A)\operatorname{nullity}(A), is the dimension of the null space of AA. It is the number of free variables in the solution to Ax=0Ax=0, or equivalently, the number of columns without a leading entry in the row echelon form.

    📐 Rank-Nullity Theorem

    For any m×nm \times n matrix AA:

    rank(A)+nullity(A)=n\operatorname{rank}(A) + \operatorname{nullity}(A) = n

    Where: nn is the number of columns in AA.
    When to use: To relate the dimension of the column space (rank) to the dimension of the null space (nullity).

    Quick Example: If AA is a 5×75 \times 7 matrix and nullity(A)=3\operatorname{nullity}(A) = 3, find rank(A)\operatorname{rank}(A).

    Step 1: Apply the Rank-Nullity Theorem.
    >

    rank(A)+nullity(A)=n\operatorname{rank}(A) + \operatorname{nullity}(A) = n

    Step 2: Substitute the given values.
    Here, n=7n=7 (number of columns) and nullity(A)=3\operatorname{nullity}(A) = 3.
    >

    rank(A)+3=7\operatorname{rank}(A) + 3 = 7

    Step 3: Solve for rank(A)\operatorname{rank}(A).
    >

    rank(A)=73=4\operatorname{rank}(A) = 7 - 3 = 4

    Answer: rank(A)=4\operatorname{rank}(A) = 4.

    :::question type="MSQ" question="Let AA be an m×nm \times n matrix and BB be an n×pn \times p matrix. Which of the following statements about rank are always true?" options=["rank(A)m\operatorname{rank}(A) \leq m","rank(AB)rank(A)\operatorname{rank}(AB) \leq \operatorname{rank}(A)","rank(A)+nullity(A)=m\operatorname{rank}(A) + \operatorname{nullity}(A) = m","rank(AB)rank(B)\operatorname{rank}(AB) \leq \operatorname{rank}(B)"] answer="rank(A)m\operatorname{rank}(A) \leq m,rank(AB)rank(A)\operatorname{rank}(AB) \leq \operatorname{rank}(A),rank(AB)rank(B)\operatorname{rank}(AB) \leq \operatorname{rank}(B)" hint="Recall the fundamental properties of matrix rank and the Rank-Nullity Theorem. Pay attention to the dimensions." solution="Let AA be an m×nm \times n matrix and BB be an n×pn \times p matrix.

    * Option 1: rank(A)m\operatorname{rank}(A) \leq m
    The rank of a matrix is at most its number of rows (or columns). Since AA has mm rows, rank(A)m\operatorname{rank}(A) \leq m is always true.

    * Option 2: rank(AB)rank(A)\operatorname{rank}(AB) \leq \operatorname{rank}(A)
    The rank of a product of matrices is less than or equal to the rank of either factor. Specifically, the column space of ABAB is a subspace of the column space of AA. Thus, rank(AB)rank(A)\operatorname{rank}(AB) \leq \operatorname{rank}(A) is always true.

    * Option 3: rank(A)+nullity(A)=m\operatorname{rank}(A) + \operatorname{nullity}(A) = m
    The Rank-Nullity Theorem states that rank(A)+nullity(A)=n\operatorname{rank}(A) + \operatorname{nullity}(A) = n, where nn is the number of columns of AA. This statement claims it equals mm (number of rows), which is generally false unless m=nm=n.

    * Option 4: rank(AB)rank(B)\operatorname{rank}(AB) \leq \operatorname{rank}(B)
    Similarly, the row space of ABAB is a subspace of the row space of BB. Thus, rank(AB)rank(B)\operatorname{rank}(AB) \leq \operatorname{rank}(B) is always true.

    Therefore, the correct options are rank(A)m\operatorname{rank}(A) \leq m, rank(AB)rank(A)\operatorname{rank}(AB) \leq \operatorname{rank}(A), and rank(AB)rank(B)\operatorname{rank}(AB) \leq \operatorname{rank}(B)."
    :::

    ---

    3. Inverse of a Matrix

    An inverse matrix is a fundamental concept for solving linear systems and understanding matrix transformations. Not all matrices have an inverse.

    📖 Inverse of a Matrix

    A square matrix AA of order nn is said to be invertible if there exists a square matrix BB of the same order nn such that:

    AB=BA=IAB = BA = I

    where II is the n×nn \times n identity matrix. The matrix BB is called the inverse of AA and is denoted by A1A^{-1}.

    Conditions for Invertibility

    A square matrix AA of order nn is invertible if and only if any of the following equivalent conditions hold:

    • det(A)0\det(A) \neq 0 (i.e., AA is non-singular).

    • rank(A)=n\operatorname{rank}(A) = n.

    • The columns (or rows) of AA are linearly independent.

    • The null space of AA contains only the zero vector (nullity(A)=0\operatorname{nullity}(A) = 0).

    • The system Ax=bAx=b has a unique solution for every bb.

    Quick Example: Verify if B=[2132]B = \begin{bmatrix} 2 & -1 \\ -3 & 2 \end{bmatrix} is the inverse of A=[2132]A = \begin{bmatrix} 2 & 1 \\ 3 & 2 \end{bmatrix}.

    Step 1: Calculate the product ABAB.
    >

    AB=[2132][2132]=[(2)(2)+(1)(3)(2)(1)+(1)(2)(3)(2)+(2)(3)(3)(1)+(2)(2)]=[432+2663+4]=[1001]\begin{aligned} AB & = \begin{bmatrix} 2 & 1 \\ 3 & 2 \end{bmatrix} \begin{bmatrix} 2 & -1 \\ -3 & 2 \end{bmatrix} \\ & = \begin{bmatrix} (2)(2) + (1)(-3) & (2)(-1) + (1)(2) \\ (3)(2) + (2)(-3) & (3)(-1) + (2)(2) \end{bmatrix} \\ & = \begin{bmatrix} 4 - 3 & -2 + 2 \\ 6 - 6 & -3 + 4 \end{bmatrix} \\ & = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix} \end{aligned}

    Step 2: Calculate the product BABA.
    >

    BA=[2132][2132]=[(2)(2)+(1)(3)(2)(1)+(1)(2)(3)(2)+(2)(3)(3)(1)+(2)(2)]=[43226+63+4]=[1001]\begin{aligned} BA & = \begin{bmatrix} 2 & -1 \\ -3 & 2 \end{bmatrix} \begin{bmatrix} 2 & 1 \\ 3 & 2 \end{bmatrix} \\ & = \begin{bmatrix} (2)(2) + (-1)(3) & (2)(1) + (-1)(2) \\ (-3)(2) + (2)(3) & (-3)(1) + (2)(2) \end{bmatrix} \\ & = \begin{bmatrix} 4 - 3 & 2 - 2 \\ -6 + 6 & -3 + 4 \end{bmatrix} \\ & = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix} \end{aligned}

    Step 3: Compare products to the identity matrix.
    Since AB=BA=IAB = BA = I, BB is indeed the inverse of AA.

    Answer: Yes, BB is the inverse of AA.

    :::question type="MCQ" question="Let PP be the inverse of a matrix QQ. If II denotes the identity matrix, which one of the following options is correct?" options=["PQ=IPQ = I but QPIQP \neq I","QP=IQP = I but PQIPQ \neq I","PQ=IPQ = I and QP=IQP = I","PQQP=IPQ - QP = I"] answer="PQ=IPQ = I and QP=IQP = I" hint="Recall the definition of a matrix inverse. The definition requires commutativity with respect to multiplication by the inverse to produce the identity matrix." solution="By the definition of a matrix inverse, if PP is the inverse of QQ, then their product must yield the identity matrix, regardless of the order of multiplication. That is, PQ=IPQ = I and QP=IQP = I. The inverse is unique and satisfies this property for both pre-multiplication and post-multiplication.
    Therefore, the correct option is 'PQ=IPQ = I and QP=IQP = I'."
    :::

    ---

    4. Methods to Find Inverse

    We can compute the inverse of a square matrix using two primary methods: the adjoint method and the Gauss-Jordan elimination method.

    4.1. Adjoint Method

    For a square matrix AA, its inverse A1A^{-1} can be found using the formula:

    📐 Inverse using Adjoint
    A1=1det(A)adj(A)A^{-1} = \frac{1}{\det(A)} \operatorname{adj}(A)
    Where: det(A)\det(A) is the determinant of AA, and adj(A)\operatorname{adj}(A) is the adjoint of AA. The adjoint of AA is the transpose of the cofactor matrix of AA. When to use: For 2×22 \times 2 matrices, it is very fast. For 3×33 \times 3 matrices, it is manageable. For larger matrices, it becomes computationally intensive.

    Quick Example: Find the inverse of A=[2132]A = \begin{bmatrix} 2 & 1 \\ 3 & 2 \end{bmatrix} using the adjoint method.

    Step 1: Calculate the determinant of AA.
    >

    det(A)=(2)(2)(1)(3)=43=1\det(A) = (2)(2) - (1)(3) = 4 - 3 = 1

    Step 2: Find the cofactor matrix CC of AA.
    >

    C=[C11C12C21C22]C = \begin{bmatrix} C_{11} & C_{12} \\ C_{21} & C_{22} \end{bmatrix}

    > C11=2C_{11} = 2
    > C12=3C_{12} = -3
    > C21=1C_{21} = -1
    > C22=2C_{22} = 2
    >
    C=[2312]C = \begin{bmatrix} 2 & -3 \\ -1 & 2 \end{bmatrix}

    Step 3: Find the adjoint of AA, which is CTC^T.
    >

    adj(A)=CT=[2132]\operatorname{adj}(A) = C^T = \begin{bmatrix} 2 & -1 \\ -3 & 2 \end{bmatrix}

    Step 4: Compute A1A^{-1}.
    >

    A1=1det(A)adj(A)=11[2132]=[2132]A^{-1} = \frac{1}{\det(A)} \operatorname{adj}(A) = \frac{1}{1} \begin{bmatrix} 2 & -1 \\ -3 & 2 \end{bmatrix} = \begin{bmatrix} 2 & -1 \\ -3 & 2 \end{bmatrix}

    Answer: A1=[2132]A^{-1} = \begin{bmatrix} 2 & -1 \\ -3 & 2 \end{bmatrix}.

    4.2. Gauss-Jordan Elimination Method

    This method involves augmenting the matrix AA with an identity matrix II of the same order, forming [AI][A|I], and then performing elementary row operations to transform AA into II. The matrix that results on the right side will be A1A^{-1}.

    💡 Gauss-Jordan for Inverse

    To find A1A^{-1}, form the augmented matrix [AI][A|I]. Apply elementary row operations to transform AA into II. The resulting matrix will be [IA1][I|A^{-1}]. If AA cannot be transformed into II, then AA is not invertible.

    Quick Example: Find the inverse of A=[1234]A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} using Gauss-Jordan elimination.

    Step 1: Form the augmented matrix [AI][A|I].
    >

    [12103401]\left[\begin{array}{cc|cc} 1 & 2 & 1 & 0 \\ 3 & 4 & 0 & 1 \end{array}\right]

    Step 2: Perform R2R23R1R_2 \to R_2 - 3R_1.
    >

    [12100231]\left[\begin{array}{cc|cc} 1 & 2 & 1 & 0 \\ 0 & -2 & -3 & 1 \end{array}\right]

    Step 3: Perform R212R2R_2 \to -\frac{1}{2}R_2.
    >

    [1210013212]\left[\begin{array}{cc|cc} 1 & 2 & 1 & 0 \\ 0 & 1 & \frac{3}{2} & -\frac{1}{2} \end{array}\right]

    Step 4: Perform R1R12R2R_1 \to R_1 - 2R_2.
    >

    [1012(32)02(12)013212]\left[\begin{array}{cc|cc} 1 & 0 & 1 - 2(\frac{3}{2}) & 0 - 2(-\frac{1}{2}) \\ 0 & 1 & \frac{3}{2} & -\frac{1}{2} \end{array}\right]

    >
    [1021013212]\left[\begin{array}{cc|cc} 1 & 0 & -2 & 1 \\ 0 & 1 & \frac{3}{2} & -\frac{1}{2} \end{array}\right]

    Answer: A1=[213212]A^{-1} = \begin{bmatrix} -2 & 1 \\ \frac{3}{2} & -\frac{1}{2} \end{bmatrix}.

    :::question type="NAT" question="Find the element in the first row and second column of the inverse of A=[101210011]A = \begin{bmatrix} 1 & 0 & 1 \\ 2 & 1 & 0 \\ 0 & 1 & 1 \end{bmatrix}." answer="-0.5" hint="Use Gauss-Jordan elimination to find the inverse. The element A121A^{-1}_{12} is required." solution="Step 1: Form the augmented matrix [AI][A|I].
    >

    [101100210010011001]\left[\begin{array}{ccc|ccc} 1 & 0 & 1 & 1 & 0 & 0 \\ 2 & 1 & 0 & 0 & 1 & 0 \\ 0 & 1 & 1 & 0 & 0 & 1 \end{array}\right]

    Step 2: Perform R2R22R1R_2 \to R_2 - 2R_1.
    >

    [101100012210011001]\left[\begin{array}{ccc|ccc} 1 & 0 & 1 & 1 & 0 & 0 \\ 0 & 1 & -2 & -2 & 1 & 0 \\ 0 & 1 & 1 & 0 & 0 & 1 \end{array}\right]

    Step 3: Perform R3R3R2R_3 \to R_3 - R_2.
    >

    [101100012210003211]\left[\begin{array}{ccc|ccc} 1 & 0 & 1 & 1 & 0 & 0 \\ 0 & 1 & -2 & -2 & 1 & 0 \\ 0 & 0 & 3 & 2 & -1 & 1 \end{array}\right]

    Step 4: Perform R313R3R_3 \to \frac{1}{3}R_3.
    >

    [101231313012210001231313]\left[\begin{array}{ccc|ccc} 1 & 0 & 1 & \frac{2}{3} & -\frac{1}{3} & \frac{1}{3} \\ 0 & 1 & -2 & -2 & 1 & 0 \\ 0 & 0 & 1 & \frac{2}{3} & -\frac{1}{3} & \frac{1}{3} \end{array}\right]

    Step 5: Perform R1R1R3R_1 \to R_1 - R_3 and R2R2+2R3R_2 \to R_2 + 2R_3.
    >

    [1001230(13)0130102+2(23)1+2(13)0+2(13)001231313]\left[\begin{array}{ccc|ccc} 1 & 0 & 0 & 1 - \frac{2}{3} & 0 - (-\frac{1}{3}) & 0 - \frac{1}{3} \\ 0 & 1 & 0 & -2 + 2(\frac{2}{3}) & 1 + 2(-\frac{1}{3}) & 0 + 2(\frac{1}{3}) \\ 0 & 0 & 1 & \frac{2}{3} & -\frac{1}{3} & \frac{1}{3} \end{array}\right]

    >
    [100131313010231323001231313]\left[\begin{array}{ccc|ccc} 1 & 0 & 0 & \frac{1}{3} & \frac{1}{3} & -\frac{1}{3} \\ 0 & 1 & 0 & -\frac{2}{3} & \frac{1}{3} & \frac{2}{3} \\ 0 & 0 & 1 & \frac{2}{3} & -\frac{1}{3} & \frac{1}{3} \end{array}\right]

    The inverse matrix is A1=[131313231323231313]A^{-1} = \begin{bmatrix} \frac{1}{3} & \frac{1}{3} & -\frac{1}{3} \\ -\frac{2}{3} & \frac{1}{3} & \frac{2}{3} \\ \frac{2}{3} & -\frac{1}{3} & \frac{1}{3} \end{bmatrix}.

    The element in the first row and second column of A1A^{-1} is 13\frac{1}{3}. This is approximately 0.3330.333.
    Let's recheck with the adjoint method for verification:
    det(A)=1(10)0(20)+1(20)=1+2=3\det(A) = 1(1-0) - 0(2-0) + 1(2-0) = 1+2=3.
    Cofactor matrix:
    C11=(1)(1)(0)(1)=1C_{11} = (1)(1) - (0)(1) = 1
    C12=((2)(1)(0)(0))=2C_{12} = -((2)(1) - (0)(0)) = -2
    C13=(2)(1)(1)(0)=2C_{13} = (2)(1) - (1)(0) = 2
    C21=((0)(1)(1)(1))=1C_{21} = -((0)(1) - (1)(1)) = 1
    C22=(1)(1)(0)(1)=1C_{22} = (1)(1) - (0)(1) = 1
    C23=((1)(1)(0)(0))=1C_{23} = -((1)(1) - (0)(0)) = -1
    C31=((0)(0)(1)(1))=1C_{31} = ((0)(0) - (1)(1)) = -1
    C32=((1)(0)(1)(2))=2C_{32} = -((1)(0) - (1)(2)) = 2
    C33=((1)(1)(0)(2))=1C_{33} = ((1)(1) - (0)(2)) = 1
    Cofactor matrix C=[122111121]C = \begin{bmatrix} 1 & -2 & 2 \\ 1 & 1 & -1 \\ -1 & 2 & 1 \end{bmatrix}.
    adj(A)=CT=[111212211]\operatorname{adj}(A) = C^T = \begin{bmatrix} 1 & 1 & -1 \\ -2 & 1 & 2 \\ 2 & -1 & 1 \end{bmatrix}.
    A1=13[111212211]=[131313231323231313]A^{-1} = \frac{1}{3} \begin{bmatrix} 1 & 1 & -1 \\ -2 & 1 & 2 \\ 2 & -1 & 1 \end{bmatrix} = \begin{bmatrix} \frac{1}{3} & \frac{1}{3} & -\frac{1}{3} \\ -\frac{2}{3} & \frac{1}{3} & \frac{2}{3} \\ \frac{2}{3} & -\frac{1}{3} & \frac{1}{3} \end{bmatrix}.

    The element in the first row and second column is 1/31/3."
    :::

    ---

    5. Properties of Inverse

    The inverse operation has several algebraic properties that are useful for manipulating matrix expressions.

    Properties of Inverse

    For invertible matrices AA and BB of the same order nn, and a non-zero scalar kk:

    • (A1)1=A(A^{-1})^{-1} = A

    • (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1} (Note the order reversal)

    • (AT)1=(A1)T(A^T)^{-1} = (A^{-1})^T

    • (kA)1=1kA1(kA)^{-1} = \frac{1}{k}A^{-1}

    • If AA is a diagonal matrix A=diag(d1,d2,,dn)A = \operatorname{diag}(d_1, d_2, \dots, d_n) with di0d_i \neq 0, then A1=diag(1/d1,1/d2,,1/dn)A^{-1} = \operatorname{diag}(1/d_1, 1/d_2, \dots, 1/d_n).

    Quick Example: Given A1=[1201]A^{-1} = \begin{bmatrix} 1 & 2 \\ 0 & 1 \end{bmatrix} and B1=[1011]B^{-1} = \begin{bmatrix} 1 & 0 \\ -1 & 1 \end{bmatrix}, find (AB)1(AB)^{-1}.

    Step 1: Apply the property (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1}.
    >

    (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1}

    Step 2: Substitute the given inverse matrices and perform multiplication.
    >

    (AB)1=[1011][1201]=[(1)(1)+(0)(0)(1)(2)+(0)(1)(1)(1)+(1)(0)(1)(2)+(1)(1)]=[1211]\begin{aligned} (AB)^{-1} & = \begin{bmatrix} 1 & 0 \\ -1 & 1 \end{bmatrix} \begin{bmatrix} 1 & 2 \\ 0 & 1 \end{bmatrix} \\ & = \begin{bmatrix} (1)(1) + (0)(0) & (1)(2) + (0)(1) \\ (-1)(1) + (1)(0) & (-1)(2) + (1)(1) \end{bmatrix} \\ & = \begin{bmatrix} 1 & 2 \\ -1 & -1 \end{bmatrix} \end{aligned}

    Answer: (AB)1=[1211](AB)^{-1} = \begin{bmatrix} 1 & 2 \\ -1 & -1 \end{bmatrix}.

    :::question type="MCQ" question="Let AA and BB be invertible matrices of order nn. Which of the following statements is INCORRECT?" options=["(AT)1=(A1)T(A^T)^{-1} = (A^{-1})^T","((A1)T)1=AT((A^{-1})^T)^{-1} = A^T","(A+B)1=A1+B1(A+B)^{-1} = A^{-1} + B^{-1}","(5A)1=15A1(5A)^{-1} = \frac{1}{5}A^{-1}"] answer="(A+B)1=A1+B1(A+B)^{-1} = A^{-1} + B^{-1}" hint="Carefully review the properties of matrix inverse. Matrix addition inverse does not distribute." solution="Let us analyze each statement:

    * Option 1: (AT)1=(A1)T(A^T)^{-1} = (A^{-1})^T
    This is a standard property of matrix inverses and transposes. The inverse of the transpose is the transpose of the inverse. This statement is correct.

    * Option 2: ((A1)T)1=AT((A^{-1})^T)^{-1} = A^T
    Using the property from Option 1, (A1)T=(AT)1(A^{-1})^T = (A^T)^{-1}. So, ((A1)T)1=((AT)1)1((A^{-1})^T)^{-1} = ((A^T)^{-1})^{-1}. Since (X1)1=X(X^{-1})^{-1} = X, we have ((AT)1)1=AT((A^T)^{-1})^{-1} = A^T. This statement is correct.

    * Option 3: (A+B)1=A1+B1(A+B)^{-1} = A^{-1} + B^{-1}
    This statement is generally false. There is no distributive property for matrix inversion over matrix addition. For example, consider A=IA=I and B=IB=I. Then (A+B)1=(2I)1=12I(A+B)^{-1} = (2I)^{-1} = \frac{1}{2}I. However, A1+B1=I1+I1=I+I=2IA^{-1}+B^{-1} = I^{-1}+I^{-1} = I+I = 2I. Since 12I2I\frac{1}{2}I \neq 2I, this statement is incorrect.

    * Option 4: (5A)1=15A1(5A)^{-1} = \frac{1}{5}A^{-1}
    This is a standard property of scalar multiplication with matrix inverse. If kk is a non-zero scalar, (kA)1=1kA1(kA)^{-1} = \frac{1}{k}A^{-1}. This statement is correct.

    Therefore, the incorrect statement is (A+B)1=A1+B1(A+B)^{-1} = A^{-1} + B^{-1}."
    :::

    ---

    Advanced Applications

    Rank and inverse concepts are foundational for understanding the solvability and nature of solutions to systems of linear equations.

    Advanced Example: Consider the system of linear equations Ax=bAx=b. If AA is an n×nn \times n matrix, discuss the solution based on its rank.

    Step 1: If rank(A)=n\operatorname{rank}(A) = n.
    This implies AA is invertible. The system Ax=bAx=b has a unique solution given by x=A1bx = A^{-1}b.

    Step 2: If rank(A)<n\operatorname{rank}(A) < n.
    This implies AA is singular (not invertible). In this case, we must consider the augmented matrix [Ab][A|b] and its rank.
    If rank(A)rank([Ab])\operatorname{rank}(A) \neq \operatorname{rank}([A|b]), the system is inconsistent and has no solution.
    If rank(A)=rank([Ab])<n\operatorname{rank}(A) = \operatorname{rank}([A|b]) < n, the system is consistent and has infinitely many solutions. The number of free variables will be nrank(A)n - \operatorname{rank}(A).

    :::question type="MCQ" question="Let AA be a 3×33 \times 3 matrix such that det(A)=0\det(A) = 0. Consider the system of linear equations Ax=bAx = b. Which of the following statements is necessarily true?" options=["The system Ax=bAx=b has a unique solution." ,"The system Ax=bAx=b has no solution." ,"The system Ax=bAx=b has infinitely many solutions." ,"The system Ax=bAx=b has either no solution or infinitely many solutions."] answer="The system Ax=bAx=b has either no solution or infinitely many solutions." hint="If det(A)=0\det(A)=0, the matrix AA is singular, meaning rank(A)<3\operatorname{rank}(A) < 3. Recall the conditions for the existence and uniqueness of solutions to linear systems based on rank." solution="Given that AA is a 3×33 \times 3 matrix and det(A)=0\det(A) = 0.
    This implies that AA is a singular matrix, and its rank is less than 3 (rank(A)<3\operatorname{rank}(A) < 3).

    For a system of linear equations Ax=bAx=b:
    * If rank(A)=rank([Ab])=n\operatorname{rank}(A) = \operatorname{rank}([A|b]) = n (where nn is the number of variables, here n=3n=3), then the system has a unique solution.
    * If rank(A)=rank([Ab])<n\operatorname{rank}(A) = \operatorname{rank}([A|b]) < n, then the system has infinitely many solutions.
    * If rank(A)rank([Ab])\operatorname{rank}(A) \neq \operatorname{rank}([A|b]), then the system has no solution.

    Since rank(A)<3\operatorname{rank}(A) < 3, the first case (unique solution) is impossible.
    Therefore, the system Ax=bAx=b must either have no solution (if rank(A)rank([Ab])\operatorname{rank}(A) \neq \operatorname{rank}([A|b])) or infinitely many solutions (if rank(A)=rank([Ab])<3\operatorname{rank}(A) = \operatorname{rank}([A|b]) < 3).
    We cannot definitively say it has no solution or infinitely many solutions without knowing rank([Ab])\operatorname{rank}([A|b]). However, we can definitively say it will be one of these two possibilities.

    Therefore, the statement 'The system Ax=bAx=b has either no solution or infinitely many solutions' is necessarily true."
    :::

    ---

    Problem-Solving Strategies

    💡 CUET PG Strategy: Rank Calculation

    For rank calculation, prioritize elementary row operations to reduce the matrix to row echelon form. This is generally faster and less error-prone than calculating determinants of minors for larger matrices. For 2×22 \times 2 or 3×33 \times 3 matrices, checking if the determinant is non-zero (for full rank) or finding the largest non-singular submatrix can also be efficient.

    💡 CUET PG Strategy: Inverse Calculation

    For 2×22 \times 2 matrices, the adjoint method is almost instantaneous: [abcd]1=1adbc[dbca]\begin{bmatrix} a & b \\ c & d \end{bmatrix}^{-1} = \frac{1}{ad-bc} \begin{bmatrix} d & -b \\ -c & a \end{bmatrix}. For 3×33 \times 3 or larger, the Gauss-Jordan method is more systematic and less prone to sign errors than the adjoint method.

    ---

    Common Mistakes

    ⚠️ Common Mistake: Inverse of Sums/Differences

    (A+B)1=A1+B1(A+B)^{-1} = A^{-1} + B^{-1}
    ✅ There is no general formula for the inverse of a sum or difference of matrices. This property only holds for scalar multiplication, i.e., (kA)1=1kA1(kA)^{-1} = \frac{1}{k}A^{-1}.

    ⚠️ Common Mistake: Order of Inverse Products

    (AB)1=A1B1(AB)^{-1} = A^{-1}B^{-1}
    ✅ The correct property is (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1}. The order of multiplication is reversed. This is a frequent source of error.

    ⚠️ Common Mistake: Rank of Product Inequality

    ❌ Assuming rank(AB)=min(rank(A),rank(B))\operatorname{rank}(AB) = \min(\operatorname{rank}(A), \operatorname{rank}(B)) always holds.
    ✅ This is only an upper bound. The exact relationship is given by Sylvester's Inequality: rank(A)+rank(B)nrank(AB)min(rank(A),rank(B))\operatorname{rank}(A) + \operatorname{rank}(B) - n \leq \operatorname{rank}(AB) \leq \min(\operatorname{rank}(A), \operatorname{rank}(B)). For instance, if AA is 2×22 \times 2 and A2=0A^2 = 0 (e.g., A=[0100]A=\begin{bmatrix} 0 & 1 \\ 0 & 0 \end{bmatrix}), then rank(A)=1\operatorname{rank}(A)=1 but rank(A2)=0\operatorname{rank}(A^2)=0. Here rank(A2)<rank(A)\operatorname{rank}(A^2) < \operatorname{rank}(A).

    ---

    Practice Questions

    :::question type="MCQ" question="If A=[123014000]A = \begin{bmatrix} 1 & 2 & 3 \\ 0 & 1 & 4 \\ 0 & 0 & 0 \end{bmatrix}, what is rank(A)\operatorname{rank}(A)?" options=["0","1","2","3"] answer="2" hint="The matrix is already in row echelon form. Count the number of non-zero rows." solution="The given matrix A=[123014000]A = \begin{bmatrix} 1 & 2 & 3 \\ 0 & 1 & 4 \\ 0 & 0 & 0 \end{bmatrix} is in row echelon form.
    The number of non-zero rows is 2 (the first and second rows).
    Therefore, rank(A)=2\operatorname{rank}(A) = 2."
    :::

    :::question type="NAT" question="Let A=[3152]A = \begin{bmatrix} 3 & -1 \\ -5 & 2 \end{bmatrix}. If A1=[xyzw]A^{-1} = \begin{bmatrix} x & y \\ z & w \end{bmatrix}, find the value of x+y+z+wx+y+z+w." answer="11" hint="First, find the inverse of AA. Then sum its elements." solution="Step 1: Calculate the determinant of AA.
    >

    det(A)=(3)(2)(1)(5)=65=1\det(A) = (3)(2) - (-1)(-5) = 6 - 5 = 1

    Step 2: Find the inverse of AA using the 2×22 \times 2 inverse formula.
    >

    A1=11[2153]=[2153]A^{-1} = \frac{1}{1} \begin{bmatrix} 2 & 1 \\ 5 & 3 \end{bmatrix} = \begin{bmatrix} 2 & 1 \\ 5 & 3 \end{bmatrix}

    Step 3: Sum the elements of A1A^{-1}.
    >

    x+y+z+w=2+1+5+3=11x+y+z+w = 2 + 1 + 5 + 3 = 11

    "
    :::

    :::question type="MCQ" question="If AA is a 4×54 \times 5 matrix and nullity(A)=2\operatorname{nullity}(A) = 2, what is rank(A)\operatorname{rank}(A)?" options=["2","3","4","5"] answer="3" hint="Apply the Rank-Nullity Theorem: rank(A)+nullity(A)=n\operatorname{rank}(A) + \operatorname{nullity}(A) = n, where nn is the number of columns." solution="Given AA is a 4×54 \times 5 matrix, so the number of columns n=5n=5.
    Given nullity(A)=2\operatorname{nullity}(A) = 2.
    By the Rank-Nullity Theorem:
    >

    rank(A)+nullity(A)=n\operatorname{rank}(A) + \operatorname{nullity}(A) = n

    >
    rank(A)+2=5\operatorname{rank}(A) + 2 = 5

    >
    rank(A)=52=3\operatorname{rank}(A) = 5 - 2 = 3

    The rank of AA is 3."
    :::

    :::question type="MSQ" question="Let AA and BB be n×nn \times n matrices. Which of the following conditions imply that AA is invertible?" options=["det(A)0\det(A) \neq 0","rank(A)=n\operatorname{rank}(A) = n","Ax=0Ax = 0 has only the trivial solution x=0x=0","ATA^T is invertible"] answer="det(A)0\det(A) \neq 0,rank(A)=n\operatorname{rank}(A) = n,Ax=0Ax = 0 has only the trivial solution x=0x=0,ATA^T is invertible" hint="Recall the equivalent conditions for matrix invertibility." solution="A square matrix AA of order nn is invertible if and only if any of the following equivalent conditions hold:

    * det(A)0\det(A) \neq 0: This is the fundamental definition of a non-singular matrix, which is equivalent to invertibility. Correct.
    * rank(A)=n\operatorname{rank}(A) = n: A matrix is invertible if and only if its rank is equal to its order (full rank). Correct.
    * Ax=0Ax = 0 has only the trivial solution x=0x=0: This means the null space of AA contains only the zero vector, implying nullity(A)=0\operatorname{nullity}(A)=0. By the Rank-Nullity Theorem (rank(A)+nullity(A)=n\operatorname{rank}(A) + \operatorname{nullity}(A) = n), this means rank(A)=n\operatorname{rank}(A)=n, which implies invertibility. Correct.
    * ATA^T is invertible: If ATA^T is invertible, then det(AT)0\det(A^T) \neq 0. Since det(AT)=det(A)\det(A^T) = \det(A), this implies det(A)0\det(A) \neq 0, meaning AA is also invertible. Correct.

    All the given options are correct conditions for AA to be invertible."
    :::

    :::question type="NAT" question="Given A=[1234]A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} and B=[4321]B = \begin{bmatrix} 4 & 3 \\ 2 & 1 \end{bmatrix}. Find the determinant of (AB)1(AB)^{-1}." answer="0.25" hint="Use the properties of determinants: det(AB)=det(A)det(B)\det(AB) = \det(A)\det(B) and det(A1)=1/det(A)\det(A^{-1}) = 1/\det(A)." solution="Step 1: Calculate det(A)\det(A).
    >

    det(A)=(1)(4)(2)(3)=46=2\det(A) = (1)(4) - (2)(3) = 4 - 6 = -2

    Step 2: Calculate det(B)\det(B).
    >

    det(B)=(4)(1)(3)(2)=46=2\det(B) = (4)(1) - (3)(2) = 4 - 6 = -2

    Step 3: Calculate det(AB)\det(AB).
    Using the property det(AB)=det(A)det(B)\det(AB) = \det(A)\det(B):
    >

    det(AB)=(2)(2)=4\det(AB) = (-2)(-2) = 4

    Step 4: Calculate det((AB)1)\det((AB)^{-1}).
    Using the property det(X1)=1/det(X)\det(X^{-1}) = 1/\det(X):
    >

    det((AB)1)=1det(AB)=14\det((AB)^{-1}) = \frac{1}{\det(AB)} = \frac{1}{4}

    The value is 1/4=0.251/4 = 0.25."
    :::

    ---

    Summary

    Key Formulas & Takeaways

    |

    | Formula/Concept | Expression |

    |---|----------------|------------| | 1 | Rank Definition | Number of non-zero rows in row echelon form. | | 2 | Rank-Nullity Theorem | rank(A)+nullity(A)=n\operatorname{rank}(A) + \operatorname{nullity}(A) = n | | 3 | Rank of Product | rank(AB)min(rank(A),rank(B))\operatorname{rank}(AB) \leq \min(\operatorname{rank}(A), \operatorname{rank}(B)) | | 4 | Inverse Definition | AB=BA=I    B=A1AB = BA = I \implies B = A^{-1} | | 5 | Inverse using Adjoint | A1=1det(A)adj(A)A^{-1} = \frac{1}{\det(A)} \operatorname{adj}(A) | | 6 | Inverse of Product | (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1} | | 7 | Inverse of Transpose | (AT)1=(A1)T(A^T)^{-1} = (A^{-1})^T | | 8 | Inverse of Scalar Mult. | (kA)1=1kA1(kA)^{-1} = \frac{1}{k}A^{-1} |

    ---

    What's Next?

    💡 Continue Learning

    This topic connects to:

      • Systems of Linear Equations: The rank of a matrix and its augmented matrix directly determine the existence and uniqueness of solutions.

      • Eigenvalues and Eigenvectors: Invertibility is crucial for defining eigenvalues (AλIA - \lambda I must be singular for non-trivial solutions).

      • Vector Spaces: Rank relates to the dimension of column and row spaces, while nullity relates to the dimension of the null space.

    Chapter Summary

    Matrix Theory and Systems of Equations — Key Points

    Determinants: A scalar value for square matrices, indicating invertibility (

    det(A)0\det(A) \neq 0
    implies
    A1A^{-1}
    exists) and crucial for solving systems via Cramer's Rule.
    Matrix Inverse: For a square matrix
    AA
    , its inverse
    A1A^{-1}
    exists if and only if
    AA
    is non-singular (
    det(A)0\det(A) \neq 0
    ). It is used to solve matrix equations of the form
    AX=BAX=B
    .
    Rank of a Matrix: The maximum number of linearly independent rows or columns. It is invariant under elementary row/column operations and defines the dimension of the row/column space.
    Systems of Linear Equations (Ax=b): A system is consistent (has solutions) if and only if
    rank(A)=rank([Ab])\operatorname{rank}(A) = \operatorname{rank}([A|b])
    .
    Unique vs. Infinite Solutions: For a consistent system with
    nn
    variables:
    Unique solution if
    rank(A)=n\operatorname{rank}(A) = n
    .
    Infinitely many solutions if
    rank(A)<n\operatorname{rank}(A) < n
    .
    Homogeneous Systems (Ax=0): Always consistent (trivial solution
    x=0x=0
    always exists). Non-trivial solutions exist if and only if
    rank(A)<n\operatorname{rank}(A) < n
    (or
    det(A)=0\det(A) = 0
    for a square matrix
    AA
    ).

    Chapter Review Questions

    :::question type="MCQ" question="For what value of

    kk
    is the matrix
    A=(1230k2005)A = \begin{pmatrix} 1 & 2 & 3 \\ 0 & k & 2 \\ 0 & 0 & 5 \end{pmatrix}
    singular?" options=["0","1","2","5"] answer="0" hint="A matrix is singular if its determinant is zero." solution="The determinant of an upper triangular matrix is the product of its diagonal elements.
    det(A)=1×k×5=5k\det(A) = 1 \times k \times 5 = 5k

    For
    AA
    to be singular,
    det(A)=0\det(A) = 0
    .
    5k=0    k=05k = 0 \implies k = 0
    "
    :::

    :::question type="NAT" question="Consider the system of linear equations:

    x+y+z=6x + y + z = 6

    x+2y+3z=10x + 2y + 3z = 10

    x+2y+λz=μx + 2y + \lambda z = \mu

    Find the value of
    λ\lambda
    for which the system has infinitely many solutions." answer="3" hint="For infinitely many solutions, the rank of the coefficient matrix must be equal to the rank of the augmented matrix, and both must be less than the number of variables. This implies a row of zeros in the row-reduced echelon form for both matrices." solution="The augmented matrix is:
    (11161231012λμ)\begin{pmatrix} 1 & 1 & 1 & 6 \\ 1 & 2 & 3 & 10 \\ 1 & 2 & \lambda & \mu \end{pmatrix}

    Applying row operations:
    R2R2R1R_2 \to R_2 - R_1

    R3R3R1R_3 \to R_3 - R_1

    (1116012401λ1μ6)\begin{pmatrix} 1 & 1 & 1 & 6 \\ 0 & 1 & 2 & 4 \\ 0 & 1 & \lambda-1 & \mu-6 \end{pmatrix}

    R3R3R2R_3 \to R_3 - R_2

    (1116012400λ3μ10)\begin{pmatrix} 1 & 1 & 1 & 6 \\ 0 & 1 & 2 & 4 \\ 0 & 0 & \lambda-3 & \mu-10 \end{pmatrix}

    For infinitely many solutions, the last row of the row-reduced echelon form must be entirely zeros.
    Thus,
    λ3=0    λ=3\lambda - 3 = 0 \implies \lambda = 3

    And
    μ10=0    μ=10\mu - 10 = 0 \implies \mu = 10

    The question asks for
    λ\lambda
    , which is 3."
    :::

    :::question type="MCQ" question="What is the rank of the matrix

    M=(123246369)M = \begin{pmatrix} 1 & 2 & 3 \\ 2 & 4 & 6 \\ 3 & 6 & 9 \end{pmatrix}
    ?" options=["1","2","3","0"] answer="1" hint="Observe the linear dependence between the rows or columns. The rank is the number of linearly independent rows (or columns)." solution="Notice that
    R2=2R1R_2 = 2R_1
    and
    R3=3R1R_3 = 3R_1
    . All rows are scalar multiples of the first row. Since the first row is non-zero, there is only one linearly independent row. Therefore, the rank of the matrix is 1."
    :::

    :::question type="NAT" question="If

    AA
    is a
    3×33 \times 3
    matrix such that
    det(A)=4\det(A) = 4
    , what is the value of
    det(3A1)\det(3A^{-1})
    ?" answer="6.75" hint="Recall the determinant properties:
    det(kA)=kndet(A)\det(kA) = k^n \det(A)
    for an
    n×nn \times n
    matrix, and
    det(A1)=1/det(A)\det(A^{-1}) = 1/\det(A)
    ." solution="Given that
    AA
    is a
    3×33 \times 3
    matrix and
    det(A)=4\det(A) = 4
    .
    We need to find
    det(3A1)\det(3A^{-1})
    .
    Using the property
    det(kA)=kndet(A)\det(kA) = k^n \det(A)
    , where
    nn
    is the order of the matrix (here,
    n=3n=3
    ):
    det(3A1)=33det(A1)\det(3A^{-1}) = 3^3 \det(A^{-1})

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

    Now, using the property
    det(A1)=1/det(A)\det(A^{-1}) = 1/\det(A)
    :
    =27×1det(A)= 27 \times \frac{1}{\det(A)}

    =27×14= 27 \times \frac{1}{4}

    =274=6.75= \frac{27}{4} = 6.75
    "
    :::

    What's Next?

    💡 Continue Your CUET PG Journey

    This chapter provides the foundational tools for understanding higher-level concepts in Linear Algebra. The principles of rank, invertibility, and solving systems of equations are indispensable for subsequent chapters on Vector Spaces, Linear Transformations, and especially for Eigenvalues and Eigenvectors. A solid grasp of these matrix fundamentals will significantly aid in mastering the broader algebraic landscape required for CUET PG.

    🎯 Key Points to Remember

    • Master the core concepts in Matrix Theory and Systems of Equations 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 Algebra

    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