Definitions [13]
A matrix is a rectangular arrangement of numbers arranged in rows and columns, enclosed in brackets [ ] or parentheses ( ).
Elements (Entries) of a Matrix
- Each number in a matrix is called an element (or entry).
Rows and Columns
- Horizontal lines → rows
- Vertical lines → columns
Order of a Matrix
- Order = number of rows × number of columns
- Written as m × n and read as “m by n”
Two matrices are equal if and only if:
- They have the same order (same number of rows and columns), and
- Their corresponding elements are equal.
Example:
\[A=
\begin{bmatrix}
2 & & 3 \\
1 & & 5
\end{bmatrix}\mathrm{and} B=
\begin{bmatrix}
2 & & 3 \\
1 & & 5
\end{bmatrix}\]
Let \[A = [a_{ij}]\] and \[B = [b_{ij}]\] be two matrices of the same order \[m \times n\].
Their sum \[C = A + B\] is defined as the matrix \[[c_{ij}]\] of order \[m \times n\], where
Let \[A = [a_{ij}]\] and \[B = [b_{ij}]\] be matrices of the same order \[m \times n\].
Their difference \[D = A - B\] is defined as the matrix \[[d_{ij}]\] where
Equivalently,
The negative of a matrix A, denoted by -A, is defined as the scalar multiple \[-1 \cdot A\].
-
So, if \[A = [a_{ij}]\], then \[-A = [-a_{ij}]\]
-
Adding a matrix to its negative gives the zero matrix: A + (-A) = O
where O is the zero matrix of the same order as A.
Let \[A = [a_{ij}]_{m \times n}\] be a matrix and k be a real number (scalar).
Then the scalar multiple of A by k is the matrix kA defined as:
That is, each entry of A is multiplied by the scalar k.
Let \[A = [a_{ij}]\] be an \[m \times n\] matrix and \[B = [b_{jk}]\] be an \[n \times p\] matrix.
Then the product C = AB is an \[m \times p\] matrix \[C = [c_{ik}]\], where each entry \[c_{ik}\] is given by:
The transpose of a matrix is obtained by interchanging its rows and columns.
-
If a matrix is A, its transpose is denoted by AT
-
If A is of order m × n, then
AT is of order n × m - First row of A becomes first column of AT, and so on.
A square matrix \[A = [a_{ij}]_{n \times n}\] is called symmetric if
i.e., \[a_{ij} = a_{ji}\] for all i and j.
A square matrix \[A = [a_{ij}]_{n \times n}\] is called skew-symmetric if \[A^T = -A\]
i.e.,\[a_{ij} = -a_{ji}\] for all i and j.
A square matrix A of order m × m is said to be invertible (or non-singular) if there exists another square matrix B of the same order such that
where I is the identity matrix of order m. Then B is called the inverse matrix of A, and it is denoted by \[A^{-1}\].
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 [3]
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.
Theorems and Laws [5]
If A and B are symmetric matrices, prove that AB – BA is a skew symmetric matrix.
If A and B are symmetric matrices.
∴ A’ = A and B’ = B
(AB – BA) = (AB)’ – (BA)’ ...[∵ (X – Y) = X’ – Y’]
= B’A’ – A’B’ ...[∵ (XY) = Y’X’]
= BA – AB ...[∵ B’ = B, A’ = A]
= –(AB – BA)
∴ AB – BA is a skew symmetric matrix.
Theorem 2: Any square matrix can be expressed as the sum of a symmetric and a skew-symmetric matrix.
Proof: Let A be a square matrix, then we can write
\[\mathrm{A=\frac{1}{2}(A+A^{\prime})+\frac{1}{2}(A-A^{\prime})}\]
From Theorem 1, we know that (A + A′) is a symmetric matrix and (A − A′) is a skew-symmetric matrix.
Multiplying by \[\frac{1}{2}\] does not change these properties.
Since for any matrix A, (kA)′ = kA′, it follows that \[\frac{1}{2}(\mathrm{A}+\mathrm{A}^{\prime})\] is symmetric matrix and \[\frac{1}{2}(\mathrm{A}-\mathrm{A}^{\prime})\] is skew symmetric matrix.
Thus, any square matrix can be expressed as the sum of a symmetric and a skew-symmetric matrix.
Theorem 1: For any square matrix A with real number entries, A + A′ is a symmetric matrix and A − A′ is a skew-symmetric matrix.
Proof:
Part 1: Symmetric Matrix
Let B = A + A′, then
Take transpose on both sides:
B′ = (A + A′)′
= A′ + (A′)′ (as (A + B)′ = A′ + B′)
= A′ + A (as (A′)′ = A)
= A + A′ (as A + B = B + A)
= B
Therefore, B = A + A′ is a symmetric matrix
Part 2: Skew-Symmetric Matrix
Now let
C = A − A′
C′ = (A − A′)′ = A′ − (A′)′ (Why?)
= A′ − A (Why?)
= −(A − A′) = −C
Therefore
C = A − A′ is a skew-symmetric matrix.
The inverse of a square matrix, if it exists, is unique.
Proof: Let A = [aᵢⱼ] be a square matrix of order m. If possible, let B and C be two inverses of A. We shall show that B = C.
Since B is the inverse of A
AB = BA = I ...(1)
Since C is also the inverse of A
AC = CA = I ...(2)
Thus
B = BI = B(AC) = (BA)C = IC = C
So B = C, which means the inverse of A is unique.
If A and B are invertible matrices of the same order, then
(AB)⁻¹ = B⁻¹A⁻¹.
Proof: From the definition of the inverse of a matrix, we have
(AB)(AB)⁻¹ = I
or A⁻¹(AB)(AB)⁻¹ = A⁻¹ (Pre multiplying both sides by A⁻¹)
or (A⁻¹A)B(AB)⁻¹ = A⁻¹ (Since A⁻¹A = I)
or IB(AB)⁻¹ = A⁻¹
or B(AB)⁻¹ = A⁻¹
or B⁻¹B(AB)⁻¹ = B⁻¹A⁻¹
or I(AB)⁻¹ = B⁻¹A⁻¹
Hence (AB)⁻¹ = B⁻¹A⁻¹
Key Points
-
Matrix: A rectangular array of elements.
-
Element: An entry inside a matrix.
-
Order: Size of a matrix written as rows × columns.
-
Row: Horizontal set of elements.
-
Column: Vertical set of elements.
-
aij: Element in the i-th row and j-th column.
-
Equality of matrices is possible only when the order is the same.
-
Corresponding elements must be compared position by position.
-
If even one corresponding entry differs, the matrices are not equal.
| Matrix Type | Order | Key Property |
|---|---|---|
| Row Matrix | 1 × n | Only one row |
| Column Matrix | m × 1 | Only one column |
| Square Matrix | n × n | Rows = Column |
| Rectangular Matrix | m × n (m ≠ n) | Rows ≠ Columns |
| Diagonal Matrix | n × n | Square; non-diagonal elements = 0 |
| Scalar Matrix | n × n | Diagonal; all diagonal elements equal |
| Identity Matrix | n × n | Scalar matrix with diagonal = 1 |
| Zero Matrix | Any order | All elements = 0 |
| Upper Triangular Matrix | n × n | (aij = 0) for i > j |
| Lower Triangular Matrix | n × n | (aij = 0) for i < j |
| Strictly Triangular Matrix | n × n | No diagonal elements |
| Sub-Matrix | Smaller order | Must come from a matrix |
-
Matrices must be of same order for addition and subtraction.
-
\[A + B = [a_{ij} + b_{ij}]\].
-
A - B = A + (-B).
-
Addition is commutative: A + B = B + A.
-
Addition is associative: (A + B) + C = A + (B + C).
-
Zero matrix is additive identity: A + O = A.
-
Negative of a matrix is additive inverse: \[A + (-A) = O\].
-
If order differs \[\rightarrow\] operation not defined.
-
Scalar multiplication: \[kA = [ka_{ij}]\].
-
Negative of a matrix: -A = (-1)A.
-
Order of matrix does not change after scalar multiplication.
-
k(A + B) = kA + kB.
-
(k + l)A = kA + lA.
-
k(lA) = (kl)A.
-
\[0 \cdot A = O\], \[1 \cdot A = A\].
-
Matrix multiplication is row-by-column, not term-wise.
-
Product AB exists only if columns of A = rows of B.
-
If A is \[m \times n\] and B is \[n \times p\], then AB is \[m \times p\].
-
In general, \[AB \neq BA\], and sometimes one product may not even be defined.
-
Matrix multiplication is associative and distributive over addition.
-
Identity matrix acts as a multiplicative identity: AI = IA = A.
-
Zero matrix absorbs multiplication: AO = OA = O.
-
Transpose = interchange rows and columns.
-
If A is \[m \times n\], then A' is \[n \times m\].
-
Standard notation: A' or \[A^T\].
-
Key properties: (A')' = A, (kA)' = kA', (A + B)' = A' + B', (AB)' = B'A'.
-
A square matrix is symmetric if \[A^T = A\].
-
A square matrix is skew-symmetric if \[A^T = -A\].
-
In a skew-symmetric matrix, all diagonal elements are zero.
-
For any square matrix A:
-
\[A + A^T\] is symmetric.
-
\[A - A^T\] is skew-symmetric.
-
-
Any square matrix A can be written as
-
The decomposition into symmetric and skew-symmetric parts is unique.
-
Invertible matrices must be square.
-
The inverse satisfies \[AA^{-1} = A^{-1}A = I\].
-
The inverse, if it exists, is unique.
-
For invertible matrices A and B of the same order: \[(AB)^{-1} = B^{-1}A^{-1}\].
-
Rectangular matrices do not have inverses.
-
If B is the inverse of A, then A is also the inverse of B.
Matrix Form: AX = B
Condition:
-
A must be square
-
∣A∣ ≠ 0 (Non-singular)
Formula:
\[X=A^{-1}B\]
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.
-
An is defined only when A is a square matrix.
-
AmAn = Am+n
-
In =
| 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
Important Questions [34]
- if 2[[3,4],[5,x]]+[[1,y],[0,1]]=[[7,0],[10,5]] , find (x−y).
- If A is a square matrix, such that A2=A, then write the value of 7A−(I+A)3, where I is an identity matrix.
- If [[x-y,z],[2x-y,w]]=[[-1,4],[0,5]] find the value of x+y.
- If for Any 2 X 2 Square Matrix A, A(Adj A) (8,0), (0,8) Then Write the Value of a
- Determine the Product Matrix`[(-4,4,4),(-7,1,3),(5,-3,-1)][(1,-1,1),(1,-2,-2),(2,1,3)]` and Use It to Solve the System of Equations X - Y + Z = 4, X- 2y- 2z = 9, 2x + Y + 3z = 1
- Let a = Matrix ((2,-1),(3,4))`, B = Matrix ((5,2),(7,4))`, C= Matrix ((2,5),(3,8))` Find a Matrix D Such that Cd − Ab = O
- Use Product `Matrix[(1,-1,2),(0,2,-3),(3,-2,4)][(-2,0,1),(9,2,-3),(6,1,-2)]` To Solve the System of Equations X + 3z = 9, −X + 2y − 2z = 4, 2x − 3y + 4z = −3
- If the Matrix a =`[(0,A,-3),(2,0,-1),(B,1,0)]` is Skew Symmetric, Find the Value of 'A' and 'B'
- Given `A = [(2,-3),(-4,7)]` Compute `A^(-1)` and Show that `2a^(-) = 9i - A`
- If a and B Are Square Matrices of Order 3 Such that |A| = –1, |B| = 3, Then Find the Value of |2ab|.
- A Coaching Institute of English (Subject) Conducts Classes in Two Batches I and Ii and Fees for Rich and Poor Children Are Different.
- If a is a Square Matrix of Order 3 with |A| = 4 , Then the Write the Value of |-2a| .
- If a = 0 2 3 − 4 and Ka = 0 3 a 2 B 24 Then Find the Value of K,A and B
- If a and B Are Square Matrices of the Same Order 3, Such that ∣A∣ = 2 and Ab = 2i, Write the Value of ∣B∣.
- If → a = 2 ˆ I + 3 ˆ J + ˆ K , → B = ˆ I − 2 ˆ J + ˆ K and → C = − 3 ˆ I + ˆ J + 2 ˆ K , Find → a → B → C
- If [1212313a1] is non-singular matrix and a ∈ A, then the set A is ______.
- If A = [5xy0] and A = AT, where AT is the transpose of the matrix A, then ______.
- If A is a square matrix such that A2 = I, then find the simplified value of (A – I)3 + (A + I)3 – 7A.
- If ( a + 4 3 B 8 − 6 ) = ( 2 a + 2 B + 2 8 a − 8 B ) , ,Write the Value of a − 2b.
- If | A | = | kA |, where A is a square matrix of order 2, then sum of all possible values of k is ______.
- If a is a Skew Symmetric Matric of Order 3, Then Prove that Det A = 0
- If [2054] = P + Q, where P is symmetric, and Q is a skew-symmetric matrix, then Q is equal to ______.
- If A= ((3,5),(7,9)) is written as A = P + Q, where P is a symmetric matrix and Q is skew symmetric matrix, then write the matrix P.
- Show that All the Diagonal Elements of a Skew Symmetric Matrix Are Zero.
- Number of symmetric matrices of order 3 × 3 with each entry 1 or – 1 is ______.
- Matrix a =[(0,2b,-2),(3,1,3),(3a,3,-1)] Is Given to Be Symmetric, Find Values of a and B
- If A is a 3 × 3 invertible matrix, then what will be the value of k if det(A–1) = (det A)k
- A trust invested some money in two type of bonds. The first bond pays 10% interest and second bond pays 12% interest. The trust received Rs 2,800 as interest.
- A school wants to award its students for the values of Honesty, Regularity and Hard work with a total cash award of Rs 6,000. Three times the award money for Hard work added to that given for honesty amounts to Rs 11,000.
- If A=[[2,3],[5,-2]] then write A-1
- If `A = ((2,3,1),(1,2,2),(-3,1,-1))`, Find `A^(-1)` And Hence Solve the System of Equations 2x + Y – 3z = 13, 3x + 2y + Z = 4, X + 2y – Z = 8
- Two Schools P and Q Want to Award Their Selected Students on the Values of Tolerance, Kindness and Leadership.
- Two schools P and Q want to award their selected students on the values of discipline, politeness and punctuality. The school P wants to award Rs x each, Rs y each and Rs z each for the three respective values to its 3, 2 and 1 students with a total award money of Rs 1,000.
- If |A| = 3 and a − 1 = [ 3 − 1 − 5 3 2 3 ] , Then Write the Adj a .
Concepts [10]
- Concept of Matrices
- Types of Matrices
- Equality of Matrices
- Operations on Matrices> Addition and Subtraction of Matrices
- Operations on Matrices>Scalar Multiplication
- Operations on Matrices> Matrix Multiplication
- Transpose of a Matrix
- Symmetric and Skew Symmetric Matrices
- Invertible Matrices
- Overview of Matrices
