Matrix
A rectangular array of numbers arranged in horizontal and vertical lines enclosed between round or square brackets is called a matrix.
Summary
A rectangular array of numbers arranged in horizontal and vertical lines enclosed between round or square brackets is called a matrix.
Things to Remember
The matrix obtained by interchanging rows and columns is called transpose of the matrix. The transpose of matrix A is denoted by A'.
If the determinant of the matrix is zero, then the matrix is called the singular matrix.
If the determinant of the matrix is not zero, then the matrix is called the non-singular matrix.
MCQs
No MCQs found.
Subjective Questions
Q1:
Define pressure. What factors does pressure depends on?
Type: Short Difficulty: Easy
Q2:
What are the differences between force and pressure?
Type: Short Difficulty: Easy
<table width="642">
<tbody>
<tr>
<td width="321">
<p><strong>Force</strong></p>
</td>
<td width="321">
<p><strong>Pressure</strong></p>
</td>
</tr>
<tr>
<td width="321">
<p>It is a pull or pushes acting on a body.</p>
</td>
<td width="321">
<p>It is the thrust acting per unit area.</p>
</td>
</tr>
<tr>
<td width="321">
<p>Its SI unit is Newton (N).</p>
</td>
<td width="321">
<p>Its SI unit is Pascal (P).</p>
</td>
</tr>
<tr>
<td width="321">
<p>It is the cause of pressure.</p>
</td>
<td width="321">
<p>It is the effect of force.</p>
</td>
</tr>
</tbody>
</table>
<p> </p>
Q3:
It is easier to cut with a sharp knife than a blunt one, why?
Type: Short Difficulty: Easy
Q4:
Wooden sleepers are kept below railway line, why?
Type: Short Difficulty: Easy
Q5:
Camels can walk easily on the sand in a desert as compared to horse and donkeys, why?
Type: Short Difficulty: Easy
Q6:
A square box of 500N occupies 5m2 surface area. Calculate the pressure exerted by the square box.
Type: Short Difficulty: Easy
Q7:
Calculate the pressure exerted by the brick of area 2m2 and force of 200N.
Type: Short Difficulty: Easy
Q8:
Calculate the force of the body if the pressure exerted by the body is 50pa. and area is 10m2.
Type: Short Difficulty: Easy
Q9:
Calculate the area of the brick if the pressure exerted by the brick is 180 pa. and the force is 60N.
Type: Short Difficulty: Easy
Q10:
Calculate the pressure exerted by the square box if its length is 3m and force is 81N.
Type: Short Difficulty: Easy
Q11: Define pressure.
Type: Very_short
Difficulty: Easy
Q12: What is the SI unit of pressure?
Type: Very_short
Difficulty: Easy
Q13: Define thrust.
Type: Very_short
Difficulty: Easy
Q14: What are the factors in which pressure depends?
Type: Very_short
Difficulty: Easy
Q15: Which physical quantity is pressure?
Type: Very_short
Difficulty: Easy
Q16: What is force?
Type: Very_short
Difficulty: Easy
Q17: What is the SI unit of force?
Type: Very_short
Difficulty: Easy
Q18: What is the formula used to calculate pressure?
Type: Very_short
Difficulty: Easy
Q19: What happens when a force acts over a large area of a surface ?
Type: Very_short
Difficulty: Easy
Q20: What happens when a force acts over a small area of a surface ?
Type: Very_short
Difficulty: Easy
Q21: What is the relation between pressure and force?
Type: Very_short
Difficulty: Easy
Q22: What is the relation between pressure and area?
Type: Very_short
Difficulty: Easy
Q23: Write any one application of pressure.
Type: Very_short
Difficulty: Easy
Videos
Pressure
Pressure
Pressure

Matrix
Introduction
A rectangular array of numbers arranged in horizontal and vertical lines enclosed between round or square brackets is called a matrix. Some example of the matrix is given below:
X=\(\begin{bmatrix}1 &2\\ 3 &4\\ \end{bmatrix}\)
Y=\(\begin{bmatrix}1&2\\5&1\\7&4\\ \end{bmatrix}\)
Z=\(\begin{bmatrix}3&2&5\\4&6&5\\ \end{bmatrix}\)
Each member in the array is called an element. An element appearing in the ith row and jth column of a matrix called its (i,j)th element.
In the above examples, the order of matrix X is 2×2, Y is 3×2 and Z is 2×3. So, if the matrix contains rows and b column, then it is of order a×b.
Multiplication of Matrices
Let A and B be two matrices and product of A and B is denoted by AB.The products of AB can be defined or not according to its order. Matrices A and B are said to be compatible for product AB if and only if numbers of the column in A is equal to a number of rows in B. If this condition is not satisfied then the product of A and B cannot be performed.
if A and B are conformable for the product AB, then the number of rows if A followed by the number of columns in B gives the order of product AB.

If two matrices A and B are conformable for the product AB, it is not necessary that they are also conformable for the product BA. If A and Bare square matrices of the same order, then they are compatible for the product AB as well as BA.
The element in row i and column j of the product AB are obtained by multiplying the elements in the ith row of A by the corresponding elements in the jth column of B and adding up the resulting products.
(i, j)th element of AB = Sum of the products of the elements of the ith row of A with the corresponding elements of the jth column of B.
Let A=\(\begin{bmatrix}a_{11}&a_{12}\\a_{21}&a_{22}\\ \end{bmatrix}\) and B =\(\begin{bmatrix}b_{11}&b_{12}\\b_{21}&b_{22}\\ \end{bmatrix}\)

Here, order of AB will be 2×2. If cij denotes the elements of AB,then
AB=\(\begin{bmatrix}c_{11}&c_{12}\\c_{21}&c_{22}\\ \end{bmatrix}\)
where, c11 = 1st row of A×1st column of B = a11b11 + a12a21
c12 = 1st row of A×2nd column of B = a11b12 + a12b22
c21 = 2nd row of A×1st column of B = a21b11 + a22b21
c22 = 2nd row of A×2nd column of B = a21b12 + a22b22
∴ AB = \(\begin{bmatrix}a_{11}b_{11} +a_{12}b_{21}&a_{11}b_{12} +a_{12}b_{22}\\a_{21}b_{11} +a_{22}b_{21}&a_{21}b_{12} +a_{22}b_{22}\\ \end{bmatrix}\)
Examples:
(1) Let A=\(\begin{bmatrix}3&5\\−1&3\\ \end{bmatrix}\) and B=\(\begin{bmatrix}3\\8\\ \end{bmatrix}\) be the two martices.
Since A is order 2×2 and B is order 2×1, therefore, AB is defined and it is a matrix of order 2×1.
AB =\(\begin{bmatrix}3&5\\−1&3\\ \end{bmatrix}\) \(\begin{bmatrix}3\\8\\ \end{bmatrix}\) = \(\begin{bmatrix}3.3 +5.8\\−1.3 +3.8\\ \end{bmatrix}\) = \(\begin{bmatrix}49\\21\\ \end{bmatrix}\)
Note that b is of order 2×1 and A is of order 2×2, therefore, BA is not defined.
(2) Let A =\(\begin{bmatrix}1&3\\5&0\\ \end{bmatrix}\) and B =\(\begin{bmatrix}3&2\\6&3\\ \end{bmatrix}\) be two matrices.
Since A is of order 2×2 and B is of order 2×2, therefore, AB is defined ad it is a matrix of order 2×2.
AB =\(\begin{bmatrix}1&3\\5&0\\ \end{bmatrix}\) \(\begin{bmatrix}3&2\\6&3\\ \end{bmatrix}\) = \(\begin{bmatrix}1.3+3.6&1.2+3.3\\5.3+0.6&5.2+0.3\\ \end{bmatrix}\) = \(\begin{bmatrix}21&11\\15&10\\ \end{bmatrix}\)
Also b is of order 2×2 and A is of 2×2, therefore, BA is defined and it is a matrix of order 2×2.
BA =\(\begin{bmatrix}3&2\\6&3\\ \end{bmatrix}\) \(\begin{bmatrix}1&3\\5&0\\ \end{bmatrix}\) = \(\begin{bmatrix}3.1+2.5&3.3+2.0\\6.1+3.5&6.3+3.0\\ \end{bmatrix}\) = \(\begin{bmatrix}13&9\\21&18\\ \end{bmatrix}\)
Observe that AB ≠ BA
Some properties of matrix multiplication
(a) Multiplication of matrices is, in general, not commutative, i.e. AB ≠ BA, in general.
(i) When the matrix AB is defined, it is not always necessary that BA can also be defined. For example, if the matrix A is m × n and the matrix B is in n × p, AB exists whereas BA does not exist because p ≠ m.
(ii) When both the matrices AB and BA are defined, it is not always necessary that they should be of the same type. For example, if the matrix A is m × n and the matrix B is n × m, both AB and BA exist but the matrix AB is m × m while the matrix BA is n × n.
(iii) When A and B are square matrices of the same order, both AB and BA exist, but they are not necessarily equal.
Let A =\(\begin{bmatrix}1&2\\3&4\\ \end{bmatrix}\) and B =\(\begin{bmatrix}1&2\\4&3\\ \end{bmatrix}\)
Then AB =\(\begin{bmatrix}1&2\\3&4\\ \end{bmatrix}\) \(\begin{bmatrix}1&2\\4&3\\ \end{bmatrix}\) =\(\begin{bmatrix}1+8&2+6\\3+16&6+12\\ \end{bmatrix}\) =\(\begin{bmatrix}9&8\\19&18\\ \end{bmatrix}\)
BA =\(\begin{bmatrix}1&2\\4&3\\ \end{bmatrix}\) \(\begin{bmatrix}1&2\\3&4\\ \end{bmatrix}\) =\(\begin{bmatrix}1+6&2+8\\4+9&8+12\\ \end{bmatrix}\) =\(\begin{bmatrix}7&10\\13&20\\ \end{bmatrix}\)
Thus AB ≠ BA.
(b) Multipication of matrices is associative i.e if A, B and C are matrices conformable for multiplication, then (AB)C = A(BC)
Let A =\(\begin{bmatrix}1&3\\−2&0\\ \end{bmatrix}\), B=\(\begin{bmatrix}2&4\\5&1\\ \end{bmatrix}\) and C=\(\begin{bmatrix}−3&4\\6&0\\ \end{bmatrix}\)
Then AB =\(\begin{bmatrix}1&3\\−2&0\\ \end{bmatrix}\) \(\begin{bmatrix}2&4\\5&1\\ \end{bmatrix}\) =\(\begin{bmatrix}2+15&4+3\\−4+0&−8+0\\ \end{bmatrix}\) =\(\begin{bmatrix}17&7\\−4&−8\\ \end{bmatrix}\)
(AB)C =\(\begin{bmatrix}17&7\\−4&−8\\ \end{bmatrix}\) \(\begin{bmatrix}−3&4\\6&0\\ \end{bmatrix}\) =\(\begin{bmatrix}17&7\\−4&−8\\ \end{bmatrix}\) \(\begin{bmatrix}−51+42&68+0\\12−48&−16+0\\ \end{bmatrix}\) \(\begin{bmatrix}−9&68\\−36&−16\\ \end{bmatrix}\)
BC =\(\begin{bmatrix}2&4\\5&1\\ \end{bmatrix}\) \(\begin{bmatrix}−3&4\\6&0\\ \end{bmatrix}\) =\(\begin{bmatrix}−6+24&8+0\\−15+6&20+0\\ \end{bmatrix}\) =\(\begin{bmatrix}18&8\\−9&20\\ \end{bmatrix}\)
A(BC) =\(\begin{bmatrix}1&3\\−2&0\\ \end{bmatrix}\) \(\begin{bmatrix}18&8\\−9&20\\ \end{bmatrix}\) =\(\begin{bmatrix}1&3\\−2&0\\ \end{bmatrix}\) \(\begin{bmatrix}18−27&8+60\\−36+0&−16+0\\ \end{bmatrix}\) = \(\begin{bmatrix}−9&68\\−36&−16\\ \end{bmatrix}\)
(c) Multiplication of matrices is distributive with respect to addition i.e. if A, B and C are matrices conformable for the requisite addition and multiplication, then A(B+C) = AB+AC and (A + B)C = AC+ BC.
Let A =\(\begin{bmatrix}1&1\\2&1\\1&2\\ \end{bmatrix}\), B =\(\begin{bmatrix}0&−1\\1&2\\ \end{bmatrix}\) and C =\(\begin{bmatrix}1&0\\2&1\\ \end{bmatrix}\)
Then B + C =\(\begin{bmatrix}0&−1\\1&2\\ \end{bmatrix}\) + \(\begin{bmatrix}1&0\\2&1\\ \end{bmatrix}\) =\(\begin{bmatrix}1&−1\\3&3\\ \end{bmatrix}\)
A(B+C) =\(\begin{bmatrix}1&1\\2&1\\1&2\\ \end{bmatrix}\) \(\begin{bmatrix}1&−1\\3&3\\ \end{bmatrix}\) =\(\begin{bmatrix}1+3&−1+3\\2+3&−2+3\\1+6&−1+6\\ \end{bmatrix}\) =\(\begin{bmatrix}4&2\\5&1\\7&5\\ \end{bmatrix}\) ........(i)
AC =\(\begin{bmatrix}1&1\\2&1\\1&2\\ \end{bmatrix}\) \(\begin{bmatrix}1&0\\2&1\\ \end{bmatrix}\) =\(\begin{bmatrix}1+2&0+1\\2+2&0+1\\1+4&0+2\\ \end{bmatrix}\) =\(\begin{bmatrix}3&1\\4&\\5&2\\ \end{bmatrix}\)
AB =\(\begin{bmatrix}1&1\\2&1\\1&2\\ \end{bmatrix}\) \(\begin{bmatrix}o&−1\\1&2\\ \end{bmatrix}\) =\(\begin{bmatrix}o+1&−1+2\\0+1&−2+2\\0+2&−1+4\\ \end{bmatrix}\) =\(\begin{bmatrix}1&1\\1&0\\2&3\\ \end{bmatrix}\)
AB + AC =\(\begin{bmatrix}1&1\\1&0\\2&3\\ \end{bmatrix}\) + \(\begin{bmatrix}3&1\\4&1\\5&2\\ \end{bmatrix}\) =\(\begin{bmatrix}4&2\\5&1\\7&5\\ \end{bmatrix}\) ...........(ii)
From (i) and (ii) A(B+C) = AB + AC.
Similarly we can verify (A+B)C = AC + BC.
(d) If A is a square matrix and I is a null matrix of the same order, then AI = IA = A
Let A =\(\begin{bmatrix}1&2\\3&4\\ \end{bmatrix}\) and I =\(\begin{bmatrix}1&0\\0&1\\ \end{bmatrix}\)
Then,AI =\(\begin{bmatrix}1&2\\3&4\\ \end{bmatrix}\) \(\begin{bmatrix}1&0\\0&1\\ \end{bmatrix}\) =\(\begin{bmatrix}1+0&0+2\\3+0&0+4\\ \end{bmatrix}\) =\(\begin{bmatrix}1&2\\3&4\\ \end{bmatrix}\)
IA| =\(\begin{bmatrix}1&0\\0&1\\ \end{bmatrix}\) \(\begin{bmatrix}1&2\\3&4\\ \end{bmatrix}\) =\(\begin{bmatrix}1+0&2+0\\0+3&0+4\\ \end{bmatrix}\) =\(\begin{bmatrix}1&2\\3&4\\ \end{bmatrix}\)
∴ AI = IA = A
Here, I is a multiplicative identity.
Note that results which are different from the result obtained in the case of numbers are given by multiplication of matrices.Examples of these result are given below:
(i) If AB is a null matrix, it does not imply that at least one of the matrices A and B must be a zero matrix.
Let A =\(\begin{bmatrix}1&1\\1&1\\ \end{bmatrix}\) and B =\(\begin{bmatrix}1&0\\−1&0\\ \end{bmatrix}\)
Then AB =\(\begin{bmatrix}1&1\\1&1\\ \end{bmatrix}\) \(\begin{bmatrix}1&0\\−1&0\\ \end{bmatrix}\) =\(\begin{bmatrix}1−1&0+0\\1−1&0+0\\ \end{bmatrix}\) = \(\begin{bmatrix}0&0\\0&0\\ \end{bmatrix}\)
Thus AB is a zero matrix though neither A or B is zero matrix.
(ii) Cancellation law for the multiplication of the matrices may not hold.
Let A =\(\begin{bmatrix}1&−1\\2&−2\\ \end{bmatrix}\) , B =\(\begin{bmatrix}4&5\\3&3\\ \end{bmatrix}\) and C =\(\begin{bmatrix}2&7\\1&5\\ \end{bmatrix}\).
Then AB =\(\begin{bmatrix}1&−1\\2&−2\\ \end{bmatrix}\) \(\begin{bmatrix}4&5\\3&3\\ \end{bmatrix}\) =\(\begin{bmatrix}4−3&5−3\\8−6&10−6\\ \end{bmatrix}\) =\(\begin{bmatrix}1&2\\2&4\\ \end{bmatrix}\).........(i)
AC =\(\begin{bmatrix}1&−1\\2&−2\\ \end{bmatrix}\) \(\begin{bmatrix}2&7\\1&5\\ \end{bmatrix}\) =\(\begin{bmatrix}2−1&7−5\\4−2&14−10\\ \end{bmatrix}\) =\(\begin{bmatrix}1&2\\2&4\\ \end{bmatrix}\) ..........(ii)
From (i) and (ii) AB = AC.
It follows that AB = AC does not necessarily imply that B = C. Thus cancellation law for the multiplication of matrices may not hold.
Determinants
We can call determinants of order 2 if we arrange 4 numbers in 2 rows and 2 columns between two vertical lines.
It is written as \(\begin{vmatrix}a&b\\c&d\\ \end{vmatrix}\).
and its value is defined as ad - bc. To get this value, we take the product of diagonal elements a and d and subtract from it te product of the diagonal elements can add.
We denote the determinant by Δ, read as delta.
∴ Δ =\(\begin{vmatrix}a&b\\c&d\\ \end{vmatrix}\) = ad - bc
If we arrange 9 numbers in 3 rows and 3 columns between two verticles lines, we get a determinant of order 3.
It is written as \(\begin{vmatrix}a&b&c\\d&e&f\\g&h&i\\ \end{vmatrix}\) and its value is defined as
Δ = a\(\begin{vmatrix}e&f\\h&i\\ \end{vmatrix}\) -b\(\begin{vmatrix}d&f\\g&i\\ \end{vmatrix}\) +c\(\begin{vmatrix}d&e\\g&h\\ \end{vmatrix}\)
= a(ei - hf) -b(di - gf) +c(dh - ge)
= aei - ahf - bdi + bgf + cdh - cge
This is called the expansion of the determinant along its first row. To get this value, we start with the element a in the top left-hand corner. We delete the other element of row and column in which a occurs and multiply a by the second order determinant that remains. We proceed in the same way to get the determinants to be multiplied by B and. Thea, band c are taken to be alternatively positive and negative.
The determinant can be similarly expanded by the elements of the first column as
Δ =a\(\begin{vmatrix}e&f\\h&i\\ \end{vmatrix}\) -d\(\begin{vmatrix}b&c\\h&i\\ \end{vmatrix}\) +c\(\begin{vmatrix}b&c\\&f\\ \end{vmatrix}\)
= a(ei - hf) -d(bi - hc) +g(bf - ec)
= aei - ahf - dbi + dhc + gbf - gec, which gives the same value.
By this, we can assume the same values of the determinant by expanding it along row or column.
Matrix and its determinant
Determinant of the matrix is defined as the determinant which has the same elements in the same position as the matrix.
For example :
Let A = \(\begin{bmatrix}a_{11}&a_{12}\\a_{21}&a_{22}\\ \end{bmatrix}\) be the 2x2 square matrix.
Then the determinant of A is defined as,
|A| =\(\begin{vmatrix}a_{11}&a_{12}\\a_{21}&a_{22}\\ \end{vmatrix}\)
= a11a22 - a21a12
Singular and non-singular matrices

A square matrix A is to be singular if its determinant |A| =0 and non-singular if |A|≠ 0.
If A =\(\begin{bmatrix}9&6\\8&6\\ \end{bmatrix}\) and B =\(\begin{bmatrix}6&2\\9&3\\ \end{bmatrix}\),
Then |A| =\(\begin{bmatrix}9&6\\8&6\\ \end{bmatrix}\) = 9.6 - 8.6= 54 - 48 = 6.
|B| =\(\begin{bmatrix}6&2\\9&3\\ \end{bmatrix}\) =6.3 - 9.2 =18 - 18 = 0
∴ Ais a non-singular matrix and B is a singular matrix.
The inverse of a Matrix
Let A be the square matrix. If there exists a matrix B such that AB =BA = I, then B is called the inverse of A. The inverse of A is denoted by A-1. Therefore, B = A-1
Thus, AA-1 = A-1A = I
Note that B is the inverse of A, then A is the inverse of B.
Requirements that are necessary for the existence of the inverse of a matrix:
(a) The matrix must be a square matrix.
In order that both the products AB and BA may be defined, either (i) A and B must be a square matrix of the same order or (ii) A and B must be of order m x n and n x m respectively.
In A and B are orders m x n and n x m respectively, then the order of AB will be m x m and the order of BA will be n x n. And hence AB ≠ BA.
So, for AB = BA, A and B must be a square matrix of the same order.
(b) The equation AB = BA = I must be satisfied.
(c) The matrix must be nonsingular.
The process of finding the inverse of a matrix.
For example :
|A| =\(\begin{vmatrix}2&1\\5&3\\ \end{vmatrix}\) = 2.3-5.1 =6-5 =1
Then, A-1 = \(\frac {1}{|A|}\)\(\begin{bmatrix}3&-1\\-5&2\\ \end{bmatrix}\)
=\(\frac{1}{1}\)\(\begin{bmatrix}3&-1\\-5&-2\\ \end{bmatrix}\)
=\(\begin{bmatrix}3&-1\\-5&2\\ \end{bmatrix}\)
Thus the inverse of a non-singular matrix A =\(\begin{bmatrix}a&c\\b&d\\ \end{bmatrix}\) can be found by the following steps:
(i) Find |A| = ad - bc. Note that if |A| = 0, we cannot find A-1
(ii) Exchange the elements in the leading diagonal and obtain \(\begin{bmatrix}d&.....\\.....&a\\ \end{bmatrix}\)
(iii) change the sign of the elements in the order diagonal and obtain \(\begin{bmatrix}d&-c\\-b&a\\ \end{bmatrix}\)
(iv) Find A-1 by using the following formula: A-1 =\(\frac{1}{|A|}\) \(\begin{bmatrix}d&-c\\-b&a\\ \end{bmatrix}\)
Some properties of inverses:
(a) The inverse of the product of two non -singular matrices is equal to the product of the inverse taken in the reverse order.
i.e. If A and B are non-singular square matrices of the same order, then AB is also non-singular and (AB)-1 = B-1A-1.
(b) The operations of transposing and inverting a non-singular matrix is commutative .i.e. (A')-1 = (A-1)'.
Let A =\(\begin{bmatrix}4&1\\7&2\\ \end{bmatrix}\)
Then A' = \(\begin{bmatrix}4&7\\1&2\\ \end{bmatrix}\)
Now, |A| =\(\begin{bmatrix}4&1\\7&2\\ \end{bmatrix}\) = 8 - 7 = 1 and
|A'| =\(\frac{1}{|A|}\) \(\begin{bmatrix}2&-1\\-7&4\\ \end{bmatrix}\) =\(\begin{bmatrix}2&-1\\-7&4\\ \end{bmatrix}\) and
(A-1)' = \(\begin{bmatrix}2&-7\\-1&4\\ \end{bmatrix}\) ........(i)
(A')-1 = \(\frac{1}{|A|}\) \(\begin{bmatrix}2&-7\\-1&4\\ \end{bmatrix}\) =\(\begin{bmatrix}2&-7\\-1&4\\ \end{bmatrix}\) .........(ii)
From (i) and (ii),(A')-1 = (A-1)'.
A solution of a system of linear equations by using inverse.
Suppose that we are required to solve the following 2 linear equtions in 2 unknown x and y.:
a11x + a12y =b1
a21 + a22 = b2
In matrix form the equations can be written as
\(\begin{bmatrix}a_{11}&a_{12}\\a_{21}&a_{22}\\ \end{bmatrix}\) \(\begin{bmatrix}x\\y\\ \end{bmatrix}\) =\(\begin{bmatrix}b_{1}\\b_{2}\\ \end{bmatrix}\)
Which can again be written as a single matrix equation
AX =B .............(i)
Where A =\(\begin{bmatrix}a_{11}&a_{12}\\a_{21}&a_{22}\\ \end{bmatrix}\), X =\(\begin{bmatrix}x\\y\\ \end{bmatrix}\) and B=\(\begin{bmatrix}b_{1}\\b_{2}\\ \end{bmatrix}\)
If A is non-singular, A-1exists.
∴ Pre-multiplying (i) by A-1, we have
A-1(AX) = A-1B
or (A-1A)X = A-1B
or IX = A-1B
or X = A-1B, which gives the solution of the equation.
Note: Since A-1 is a unique the above solution is also unique. If, however, the matrixAis singular,
i.e. |A| = 0, then A-1 does not exist and hence the above method fails to give any unique solution.
Lesson
Matrix
Subject
Optional Mathematics
Grade
Grade 10
Recent Notes
No recent notes.
Related Notes
No related notes.