Matrices and Determinant
Matrices and Determinant
Index
Matrices
o Defination
o Special Matrices
o Matrix algebra
Matrix equality
Matrix addition
Multiplication of Matrix by scalar
Matrix-vector multiplication
Matrix-Matrix multiplication
Matrix multiplication properties
o Transpose of Matrix
o Inverse of Matrix
Determinant of Matrix
o Defination
o Cofactors
Examples:
Special Matrices:-
11 0 0
= 0 22 0
0 0 33
Matrices algebra:-
o Matrices equality:-
Two matrices are equal if they have the same size
and if their corresponding elements are identical , i.e.
A=B
if and only if
aij = bij for i = 1, ...,m; j = 1, ..., n
o Matrices addition:-
Two matrices can only be added if they have the
same size. The result is another matrix of the same size.
A+B= 1 + 10 2+1 3 + 23 = 11 3 26
5+5 6 + 16 7+3 10 22 10
o Matrices multiplication by a scalar:-
A matrix is multipliedby a scalar (=anumber) by multi
plying eachelementof thematrix by thatscalar.
The result is a matrix of the same size.
Hence
A= B
is given (element-wise) by
aij = bij for i = 1, ..., m; j = 1, ..., n
o Matrices-Vector multiplication:-
Before dening the product of a matrix and a
vector, let us recall the notion of the dot product
(or,scalar product) of two vectors.
n
aij bjk = cikfor i = 1, ..., m; k = 1, ..., p.
j=1
o Matrices multiplication properties:-
I. Matrix multiplication is not commutative AB
BA.
II. AB = 0 does not imply A = 0, B = 0 or BA = 0
III. AC = AD does not necessarily imply C = D
IV. BUT other properties are similar to numbers
Transpose of Matrices:-
The transpose of a matrix is obtained by
interchanging its rows and columns.
DETERMINANT OF MATRICES
Defination:-
The determinant of matrix A is written detA or |A|.
11 12 13
detA or |A| = 21 22 23
31 32 33
= 11
22 23 12 21 23
+ 13
21 22
32 33 31 33 31 32
= 11 22 33 32 23"
12 21 33 31 23" + 13 21
32 22 31"
Cofactors:-
The cofactor cij is defined as the coefficient of aij in
the determinant A.If is given by the formula
i+j
cij = (1) mij
where the minor is the determinant of order (n1)(n1)
formed by deleting the column and row containing aij .
Points to note:
the determinant detA is equal to zero if
(i) rows or columns of A are multiples of each other,
(ii) rows or columns are linear combinations of each other,
(iii) entire rows or columns are zero;
if detA = 0 the matrix A is called a singular matrix;
for any square matrices A and B there holds
T
detA = det(A ), det(AB) = det(A) det(B).
for the unit matrix I one has det I = 1.
IMPORTANT FORMULAS AND CONCEPT
S.No C h a p te r Formula
1 Matrices 1 .1 Types of m a t r i c e s
A = a ij mxn is a:
Diagonal matrix if a ij= 0,when i j
Square matrix if m = n
Row matrix if m = 1
Column matrix if n = 1
Scalar matrix if a ij= 0 , when i j , a ij = k ,
(some constant), when i = j
Identity matrix if a ij= 1 , when i = j
& a ij = 0 , when i j
Zero matrix if a ij= 0
1 .2 O p e r a t i o n s on m a t r i c e s
Addition of Matrices:
A = aij
and B = bij then their
mxn mxn
Negative of a matrix :- A = ( - 1 ) A
Difference of matrices: A B = A + ( - 1) B
Product of Matrices: If A = [ a ij]m x n and B
= [b ik]n x p, then AB = C = [c ik]m x p,
n
where c ik = a ij bij
j =1
1 .3 P ro p e r t i e s of m a t r i c e s
-A = ( -1 ) A (Negative of a matrix)
A + B = B +A
(Commutative Law of
addition)
A + ( B + C ) = (A + B ) +C
(Associative law of addition)
k ( A+B ) = kA + kB (Multiplication by scalar)
( k + L)A= kA + LA (Multiplication by
scalar)
AB BA in general
A ( B C ) = ( AB) C (Associative law
of multiplication)
A ( B + C ) = AB + AC (Distributive law)
( A+B) C = AC + BC (Distributive law)
1 .4 Transpose of a M a t r i x
A = a ij mxn then A ' or A = a ji nxm
T
1 .5 P ro p e r t i e s of t r a n s p o s e of a matrix
(A 2)2= A
( k A) 2 = kA 2
( A+B ) 2 = A2+B 2
( AB ) 2 = B 2A2
1 .6 Inverse of a matrix
If AB = BA = I, where A & B are square
-1 -1 -1 -1
matrices, then B = A or A = B & (A ) = A
follows:
i. R i R j or C i C j
ii. R i kR i or C i kC i
iii. R i R i + kR j or C i C i + kC j
2 Determinants 2 .1 D e t e r m i n a n t of o rd er 2
a 11 a 12
If A = then,
a 21 a 22
a a
A = 11 12 = a 11 a 22 a 12 a 21
a21 a22
2 .2 D e t e r m i n a n t of o rd er 3
a11 a12 a13
If A = a 21 a 22 a 23 then
a 31 a 32 a 33
2 .3 M inor s & C of a c to r s
Minor of an element a ij of the determinant
of matrix A is the determinant obtained by
th th
deleting the i row & j column denoted by
Mij
i+j
Cofactor of a ij is Aij = ( - 1 ) Mij
2 .5 A d jo i nt & Inverse of a M a t r i x
a 11 a 12
If A = then adj.A=
a 21 a 22
-1 1
A =
(adj A)
A
A(adj A) = (adj A) A = |A| I
2 .7 S ol ut i on of L i n e a r E q u a t i o n s
If a 1 x + b1 y + c 1 z = d1
a 2 x + b2 y + c 2 z = d2
a 3 x + b3 y + c 3 z = d3
thenthese equations canbe writtenas AX = B,where
a 1 b 1 c 1 x d 1
A = a 2 b2 c 2 ,X = y andB = d2
a 3 b3 c 3 z d3
-1
For X = A B if :
A 0 , there exists a unique solution given
-1
by X= A B . System of equations is
consistent.
A =0 & (adj A)B 0 , there is no solution.
System of equations is inconsistent.
A =0 & (adj A)B= 0 , there exist infinitely
many solutions. System of equations is
consistent.