Matrix Definitions Flashcards
What makes two matrices equal? (Definition: Equality)
Two matrices A and B are equal if they have the same order and their entries are all equal.
What is a null matrix?
A matrix where all the entries are zero. Denoted by O
What is a square matrix?
A matrix with the same number of rows and columns.
What is a diagonal matrix?
An n x n matrix if, when i != j, A[i, j] = 0. NOTE: must also have at least one diagonal entry not equal 0.
What is an identity matrix?
A diagonal matrix where all the diagonal entries are equal to 1. Denoted I subscript n for an n x n identity matrix.
How do you transpose a matrix?
For every A[i, j] in a matrix, the entries of A ^ T will be [j, i] (so they flip). If A is a m x n matrix, then the transpose of A will be n x m.
What is a symmetric matrix?
A matrix A that is equal to the transpose of A. A^T = A
What is a skew symmetric matrix?
An n x n square matrix is skew if its transpose is equal to itself but negative. A^T = -A
What is a scalar matrix?
A diagonal matrix with all the diagonal entries being equal