Definitions [9]
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}\]
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.
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
If A = [aij] is an m × n matrix, then the transpose of A, denoted by A′ or AT, is obtained by interchanging rows and columns.
\[A^T=[a_{ji}]\]
Symmetric Matrix:
A square matrix A = [aij] is called symmetric if:
A′ = A or aij = aij
A square matrix A=[aij] is called skew-symmetric if:
Two matrices are equivalent if one can be obtained from the other by a finite number of elementary operations
-
Denoted by: A ∼ B
A square matrix A is invertible if there exists a matrix B such that
AB = BA = I
-
B is called the inverse of A
-
Inverse is denoted by A−1
A rectangular arrangement of mn elements in the form of an ordered set of m rows, each row consisting of an ordered set of n elements, is called an m × n matrix (m × n is read as m by n).
- Each entry is called an element.
- Order of a matrix = number of rows × number of columns
General form:
where
-
i → row number
-
j → column number
-
aij → element in iᵗʰ row and jᵗʰ column
Formulae [4]
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)
Determinant of Order 2:
\[\det
\begin{bmatrix}
a & b \\
c & d
\end{bmatrix}=ad-bc\]
Determinant of Order 3:
-
Computed by expansion along a row or column
\[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.
Minor
Delete ith row and jth column: Mij
Cofactor of aij
Aij = (−1)i+j × (minor of aij)
Sign pattern:
\[\begin{bmatrix}
+ & - & + \\
- & + & - \\
+ & - & +
\end{bmatrix}\]
Key Points
| Type of Matrix | Key Property |
|---|---|
| Row Matrix | Has only one row (1 × n) |
| Column Matrix | Has only one column (m × 1) |
| Square Matrix | Number of rows = number of columns (n × n) |
| Rectangular Matrix | Number of rows ≠ , number of columns |
| Zero (Null) Matrix | All elements are 0 |
| Diagonal Matrix | Square matrix; all non-diagonal elements = 0 |
| Unit (Identity) Matrix | Diagonal matrix with all diagonal elements = 1 |
| Property | Rule / Formula |
|---|---|
| Same Order Rule | Matrices can be added or subtracted only if they are of the same order |
| Commutative Property | A + B = B + A |
| Associative Property | A + (B + C) = (A + B) + C |
| Additive Identity | A + 0 = 0 + A = A |
| Additive Inverse | (A + (-A) = (-A) + A = 0 |
| Subtraction Rule | A - B = A + (-B) |
| Property | Rule / Statement |
|---|---|
| Compatibility Rule | Matrices A and B can be multiplied only if the columns of A = the rows of B |
| Order of Product | If A is m × n and B is n × p, then AB is m × p |
| Non-Commutative | AB `\cancel(=)` BA (in general) |
| Associative Property | A(BC) = (AB)C |
| Distributive over Addition | A(B + C) = AB + AC |
| Zero Matrix Property | The product of two non-zero matrices can be a zero matrix |
| Cancellation Law | If AB = AC, it does not imply B = C |
| Identity Matrix | AI = IA = A (orders compatible) |
-
Write AX = B
-
Apply row operations on A
(Same operations on B) -
Reduce A to triangular/identity form
-
Solve equations
| Property | Result |
|---|---|
| Double transpose | (A')' = A |
| Scalar | (kA)' = kA' |
| Negative | (−A)' = −A' |
| Addition | (A + B)' = A' + B' |
| Subtraction | (A − B)' = A' − B' |
| Product | (AB)' = B'A' |
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 of Matrix | Definition / Condition | Order | Key Points / Notes |
|---|---|---|---|
| Rectangular Matrix | Number of rows ≠ , number of columns | m × n (m ≠ n) | Not a square matrix |
| Row Matrix | Matrix having only one row | 1 × n | Also called a row vector |
| Column Matrix | Matrix having only one column | m × 1 | Also called a column vector |
| Zero (Null) Matrix | All elements are zero | Any order | Denoted by O |
| Square Matrix | Rows = columns | n × n | Diagonal elements exist |
| Diagonal Matrix | Square matrix with all non-diagonal elements zero | n × n | Diagonal elements may be zero |
| Scalar Matrix | Diagonal matrix with all diagonal elements equal | n × n | Diagonal elements = k |
| Identity (Unit) Matrix | Scalar matrix with diagonal elements = 1 | n × n | Denoted by Iₙ |
| Upper Triangular Matrix | Elements below the principal diagonal are zero | n × n | (aij = 0) for i > j |
| Lower Triangular Matrix | Elements above principal diagonal are zero | n × n | (aij = 0) for i < j |
| Strictly Triangular Matrix | Triangular matrix with diagonal elements also zero | n × n | No diagonal elements |
| Sub-Matrix | Obtained by deleting rows/columns of a matrix | Smaller order | Must come from a matrix |
| Point | Details |
|---|---|
| Condition | Matrices must be of the same order |
| Definition | A + B = [aij + bij] |
| Order of Result | Same as the order of A and B |
| Commutative Law | A + B = B + A |
| Associative Law | ((A + B) + C = A + (B + C)) |
| Additive Identity | A + O = A |
| Additive Inverse | A + (−A) = O |
| Not Defined When | Orders of matrices are different |
| Point | Details |
|---|---|
| Condition | Always defined |
| Definition | kA = [kaij] |
| Order of Result | Same as the order of A |
| Distributive Law | k(A + B) = kA + kB |
| Scalar Addition | (k + l)A = kA + lA |
| Scalar Multiplication | k(lA) = (kl)A |
| Identity Scalar | (1A = A) |
| Negative Scalar | (-1)A = −A |
| Point | Details |
|---|---|
| Condition | Columns of first = rows of second |
| Definition | If (Am×n, Bn×p), then (ABm×p) |
| Method | Row × Column |
| Order of Result | (m × p) |
| Commutative | Not commutative |
| Associative | (AB)C = A(BC) |
| Distributive | A(B + C) = AB + AC |
| Identity Matrix | AI = IA = A |
| Zero Matrix | AO = O,; OA = O |
| Cancellation Law | Not valid |
| 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 |
-
An is defined only when A is a square matrix.
-
AmAn = Am+n
-
In =
Theorem 1:
For any square matrix A:
-
A + A′ is symmetric
-
A − A′ is skew-symmetric
Theorem 2:
Every square matrix can be uniquely expressed as the sum of a symmetric and a skew-symmetric matrix.
\[A=\frac{1}{2}(A+A^{\prime})+\frac{1}{2}(A-A^{\prime})\]
Matrix Form: AX = B
Condition:
-
A must be square
-
∣A∣ ≠ 0 (Non-singular)
Formula:
\[X=A^{-1}B\]
Important Questions [48]
- 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 is a square matrix, such that A2=A, then write the value of 7A−(I+A)3, where I is an identity matrix.
- 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 2[[3,4],[5,x]]+[[1,y],[0,1]]=[[7,0],[10,5]] , find (x−y).
- If [[x-y,z],[2x-y,w]]=[[-1,4],[0,5]] find the value of x+y.
- If | A | = | kA |, where A is a square matrix of order 2, then sum of all possible values of k is ______.
- If ( a + 4 3 B 8 − 6 ) = ( 2 a + 2 B + 2 8 a − 8 B ) , ,Write the Value of a − 2b.
- Matrix a =[(0,2b,-2),(3,1,3),(3a,3,-1)] Is Given to Be Symmetric, Find Values of a and B
- Number of symmetric matrices of order 3 × 3 with each entry 1 or – 1 is ______.
- Show that All the Diagonal Elements of a Skew Symmetric Matrix Are Zero.
- 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.
- If a is a Skew Symmetric Matric of Order 3, Then Prove that Det A = 0
- If |A| = 3 and a − 1 = [ 3 − 1 − 5 3 2 3 ] , Then Write the Adj a .
- If A is a 3 × 3 invertible matrix, then what will be the value of k if det(A–1) = (det A)k
- Two Schools P and Q Want to Award Their Selected Students on the Values of Tolerance, Kindness and Leadership.
- 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 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.
- 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.
- 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.
- If A=[[2,3],[5,-2]] then write A-1
- Solve the following matrix equation for x: [x 1] [[1,0],[−2,0]]=0
- If A=(2,0,1,2,1,3,1,-1,0) Find A2-5a+4i And Hence Find a Matrix X Such That A2-5a+4i+X=O
- If A = ([cos alpha, sin alpha],[-sinalpha, cos alpha]) , find α satisfying 0 < α < π/r when A+A^T=√2I_2 where AT is transpose of A.
- If A=[[1,2,2],[2,1,2],[2,2,1]] ,then show that A^2-4A-5I=0 and hence find A^-1.
- Use Elementary Column Operations C 2 → C 2 − 2 C 1 in the Matrix Equation ( 4 2 3 3 ) = ( 1 2 0 3 ) ( 2 0 1 1 ) .
- Using elementary transformations, find the inverse of the matrix A = ((8,4,3),(2,1,1),(1,2,2)) and use it to solve the following system of linear equations
- For what values of k, the system of linear equations x + y + z = 2 2x + y – z = 3 3x + 2y + kz = 4 has a unique solution?
- Using properties of determinants, prove that : |[1+a,1,1],[1,1+b,1],[1,1,1+c]|=abc + bc + ca + ab
- If A=|[2,0,-1],[5,1,0],[0,1,3]| , then find A-1 using elementary row operations
- Using the properties of determinants, solve the following for x: |[x+2,x+6,x-1],[x+6,x-1,x+2],[x-1,x+2,x+6]|=0
- Using Elementary Row Operations, Find the Inverse of the Matrix a = ⎛ ⎜ ⎝ 3 − 3 4 2 − 3 4 0 − 1 1 ⎞ ⎟ ⎠ and Hence Solve the Following System of Equations
- Using Elementary Row Transformations, Find the Inverse of the Matrix a = `[(1,2,3),(2,5,7),(-2,-4,-5)]`
- Use Elementary Column Operation C2 → C2 + 2c1 in the Following Matrix Equation : (2,1,2,0)=(3,1,2,0)(1,0,-1,1
- Prove that |(yz-x^2,zx-y^2,xy-z^2),(zx-y^2,xy-z^2,yz-x^2),(xy-z^2,yz-x^2,zx-y^2)| is divisible by (x + y + z) and hence find the quotient.
Concepts [15]
- Concept of Matrices
- Types of Matrices
- Equality of Matrices
- Operation on Matrices
- Multiplication of a Matrix by a Scalar
- Properties of Matrix Addition
- Properties of Matrix Multiplication
- Transpose of a Matrix
- Symmetric and Skew Symmetric Matrices
- Invertible Matrices
- Overview of Matrices
- Negative of Matrix
- Operation on Matrices
- Proof of the Uniqueness of Inverse
- Elementary Transformations
