Matrices Full Exploration
Matrices Full Exploration
A matrix is a rectangular array of numbers, symbols, or expressions arranged in rows and columns.
Matrices are widely used in linear algebra to represent systems of linear equations, transformations,
...
Here, a_ij represents the element located in the i-th row and j-th column. The dimensions of a matrix
are denoted as 'm × n', where m is the number of rows and n is the number of columns.
- **Order of a Matrix**: The order is described by the number of rows and columns. For example, a 2
- **Rows and Columns**: The structure of rows (horizontal) and columns (vertical) defines the
matrix's order.
- **Main Diagonal**: The diagonal from the top-left to the bottom-right, where row and column
2. Types of Matrices
Example:
[1 2
3 4]
Example:
[3 4 5]
[1
3]
Example:
[0 0
0 0]
Example:
[1 0
0 3]
Example:
[1 0
0 1]
Example:
[1 2
2 3]
Example:
[0 2
-2 0]
- **Upper Triangular**: All elements below the main diagonal are zero.
Example:
[1 2
0 3]
- **Lower Triangular**: All elements above the main diagonal are zero.
Example:
[1 0
2 3]
Example:
A = [1 2
3 4], B = [5 6
7 8]
A + B = [6 8
10 12]
Example:
k = 2, A = [1 2
3 4]
2A = [2 4
6 8]
Defined when the number of columns in the first matrix equals the number of
Example:
A = [1 2
3 4], B = [5 6
7 8]
A × B = [19 22
43 50]