Matrices Definitions and Properties Expanded
Matrices Definitions and Properties Expanded
1. Defining Matrices
A matrix is a collection of numbers or elements arranged in
rows and columns, usually represented by a capital letter (e.g.,
A). Each element within a matrix is accessed by its row and
column indices, typically written as a_ij where i is the row
number, and j is the column number. Matrices are used for
linear equations, transformations, data representation, and
various operations in fields like physics, computer graphics,
and machine learning.
For example, a 2x3 matrix A with 2 rows and 3 columns can be
represented as:
A = [a_11 a_12 a_13 ; a_21 a_22 a_23]
2. Types of Matrices
Here are some important types of matrices:
1. Row Matrix: A matrix with only one row.
Example: [4, 5, 6] is a 1x3 matrix.
Properties:
- (A^T)^T = A
- (A + B)^T = A^T + B^T
- (kA)^T = kA^T for a scalar k
- (AB)^T = B^T A^T for two matrices A and B.
4. Symmetric and Skew-Symmetric Matrices
1. Symmetric Matrix: A matrix A is symmetric if it equals its
transpose, i.e., A = A^T. In a symmetric matrix, a_ij = a_ji for all i
and j.
Example: A = [1 2 ; 2 3]
Properties:
- (A^{-1})^{-1} = A
- (AB)^{-1} = B^{-1} A^{-1}
- (A^T)^{-1} = (A^{-1})^T