matrices
What is matrix?
matrix are list / array of number / functions that are represented with enclosed brackets
Operations on Matrices
Addition / subtraction
Multiplication (scalar)
Multiplication
Order of matrices
1232n..n..3n..n..
order of matrix is given by m×n. where m is number of rows and n is number of columns. for above matrix it is 3×3=9 as m,n=3.
Two matrices are considered equal if both have same order and there components are same
[1324]=[1324]
Types of matrices
Column
123456
Row
[123456]
square
1234562n..n..n..n..n..3n..n..n..n..n..4n..n..n..n..n..5n..n..n..n..n..6n..n..n..n..n..
Diagonal
100000020000003000000400000050000006
In this type of Matrix everything accept diagonal values are zero
Scalar Matrix
500000050000005000000500000050000005
Diagonal Matrix with every diagonal value being same
Identify Matrix
[1001],[100010001]
Scalar Matrix with every diagonal value being 1
Identify Matrix has use in Transformations it’s basics building block in many mathematical systems
Zero
000000000
Additional resources