Linear Algebra Flashcards
What is a matrix and what is it made of? What is the basic notation?
A rectangular array of numbers considered to be one mathematical object made up of elements.
Anm
n=rows
m=columns.
What is Aij?
Aij is the element of row i and column j. Can be numbers and/or variables.
What rules apply to addition and scalar multiplication?
To add matrices, they must be the same dimension.
The scalar is applied to each element to complete scalar multiplication.
What is a vector?
A vector can be thought of as a nx1 matrix. Can be any number of rows but always 1 column.
What is the inner product?
The inner product of a pair of vectors is the scalar. Multiply the elements of each vector then add the products to find the scalar.
What rules apply to matrix multiplication?
The number of columns of matrix A must be equal to the number of rows of matrix B.
The remaining outer dimensions create the dimension of the new matrix.
Eg. A 2x3 matrix and a 3x2 matrix can be multiplied to end up with a 2x2 matrix.
List the five special matrices
1) Square matrix
2) Symmetric matrix
3) Independent matrix
4) Identity matrix
5) Diagonal matrix
What defines a square matrix?
Transpose A to become A’ meaning the rows of A become the columns of A’.
A=A’
What defines a symmetric matrix?
It must be square. Transpose the matrix to find A=A’.
What defines a diagonal matrix?
Non-zero entries occur only on the main diagonal aka whole numbers diagonally and zero everywhere else.
What defines a identity matrix?
The matrix has 1’s is the diagonal as opposed to 0’s. The formula is IA=A.
What defines an independant matrix?
It is multiplied by itself and nothing changes.
What is Ax=b? What are we trying to find when we use this equation?
The linear equation of the matrix where A=matrix, x=vector, and b=vector.
Trying to find if a unique solution exists.
What is A^-1b=x?
It is the inverse of Ax=b and is used to find is a unique solution exists. We use the inverse because we cannot divide matrices.
What is a determinant used for? What does is A=0 mean?
To determine if a matrix (A) has an inverse (A^-1). If A=0 then A^-1 does not exist.