Definitions [4]
The adjoint of A is defined as the transpose (i.e. interchange rows and columns) of the cofactor matrix, and it is denoted by adj (A).
If A and B are non-singular square matrices of the same order such that AB = BA = I (where I is the identity matrix of the same order as A and B), then A and B are called inverses of each other.
We write A⁻¹ = B and B⁻¹ = A.
i.e. AA⁻¹ = A⁻¹A = I.
- If |A| ≠ 0, then A⁻¹ exists.
- If the inverse of a square matrix exists, then it is unique. A matrix can not have more than one distinct inverse.
Two matrices are equivalent if one can be obtained from the other by a finite number of elementary operations
-
Denoted by: A ∼ B
If A = [aij], then the negative of A, denoted by −A, is the matrix obtained by replacing each element aij by −aij
−A = [−aij]
- Order of −A = order of A
Formulae [4]
By Adjoint Method: \[A^{-1}=\frac{\mathrm{adj}A}{|A|}\]
By Using Algebraic Equation: A matrix A and an algebraic equation in matrix A is in the form of A² + bA + C = O.
\[A^{-1}=\frac{1}{C}\left[-aA-bI\right]\]
Minor
Delete ith row and jth column: Mij
Cofactor of aij
Aij = (−1)i+j × (minor of aij)
Sign pattern:
\[\begin{bmatrix}
+ & - & + \\
- & + & - \\
+ & - & +
\end{bmatrix}\]
Adjoint of A = transpose of the cofactor matrix \[\mathrm{adj}A=\left[A_{ij}\right]^T\]
-
\[\mathrm{adj}(kA)=k^{n-1}\mathrm{adj}(A)\]
-
A(adj A) = (adj A)A = ∣A∣I
-
∣adjA∣ = ∣A∣n−1(for an n×n non-singular matrix)
\[A=
\begin{bmatrix}
a & b \\
c & d
\end{bmatrix}\]
\[A^{-1}=\frac{1}{ad-bc}
\begin{bmatrix}
d & -b \\
-c & a
\end{bmatrix}\] if ad − bc ≠ 0
\[A^{-1}=\frac{1}{|A|}(\operatorname{adj}A)\], if ∣A∣ ≠ 0
Properties:
-
\[(AB)^{-1}=B^{-1}A^{-1}\]
-
\[(A^{-1})^{-1}=A\]
-
\[(A^{\prime})^{-1}=(A^{-1})^{\prime}\]
- If inverse exists, it is unique.
Key Points
- adj (AB) = (adj B) (adj A)
- (adj A)A = A (adj A) = |A| Iₙ
- (a) |adj A| = |A|ⁿ⁻¹, if |A| ≠ 0
(b) |adj A| = 0, if |A| = 0 - If |A| = 0, then (adj A) A = A (adj A) = O
- adj (Aᵐ) = (adj A)ᵐ, m ∈ N
- adj (kA) = kⁿ⁻¹ (adj A), k ∈ R
- adj (adj A) = |A|ⁿ⁻² A, A is non-singular matrix
- adj (adj A) = |A|ⁿ⁻² A, A is non-singular matrix
Method of Inversion
- Given: AX = B
- Multiply both sides by A⁻¹
Result:
- X = A⁻¹B
Key Steps:
- Pre-multiply by A⁻¹
- Use property: A⁻¹A = I
- Final solution: X = A⁻¹B
Method of Reduction
- No need to find A⁻¹
- Apply elementary row operations to the matrix. Process:
- Convert the matrix into upper triangular form
- System reduces to:
- b₁₁x + b₁₂y + b₁₃z = b₁′
- b₂₂y + b₂₃z = b₂′
- b₃₃z = b₃′
Final Step:
- Solve using back substitution:
- First find z
- Then y
- Then x
Comparable Matrices
-
Two matrices are said to be comparable if they have the same order
(same number of rows and columns).
Equal Matrices
Two matrices A= [aij] and B=[bij] are equal if:
-
They are comparable (same order), and
-
Their corresponding elements are equal.
| Type | Transformation | Symbol |
|---|---|---|
| Interchange | Swap two rows/columns | Ri ↔ Rj |
| Multiplication | Multiply row/column by non-zero scalar k | Ri → kRi |
| Row addition | Add k times one row to another | Ri → Ri + kRj |
-
Write AX = B
-
Apply row operations on A
(Same operations on B) -
Reduce A to triangular/identity form
-
Solve equations
-
An is defined only when A is a square matrix.
-
AmAn = Am+n
-
In =
Matrix Form: AX = B
Condition:
-
A must be square
-
∣A∣ ≠ 0 (Non-singular)
Formula:
\[X=A^{-1}B\]
Important Questions [5]
- Check whether the following matrix is invertible or not: [cosθsinθ-sinθcosθ]
- If A = [x000y000z] is a non-singular matrix, then find A−1 by using elementary row transformations. Hence, find the inverse of [20001000-1]
- Find the inverse of A = cossinsincos[cosθ-sinθ0sinθcosθ0001] by elementary row transformations.
- Solve the following system of equations by the method of inversion. x – y + z = 4, 2x + y – 3z = 0, x + y + z = 2
- Solve the following system of equations by the method of reduction: x + y + z = 6, y + 3z = 11, x + z = 2y.
