Matrices Flashcards
(26 cards)
Name:

3x4
What is the leading diagonal of a matrix?
The diagonal of numbers starting in the top left corner and finishing in the bottom right corner.
What is an upper triangular matrix?
A square matrix with 0’s below the leading diagonal.
It is often denoted U.
What is a lower triangular matrix?
A square matrix where all the elements above the leading diagonal are 0.
This is denoted L.
What is a diagonal matrix?
A square matrix where all non-zero elements are along the leading diagonal.
It is denoted D.
What is the trace of a matrix?
The sum of all the elements in the leading diagonal.
What is the unit matrix/Identity matrix?
A diagonal matrix where all the elements in the leading diagonal are 1.
It is often denoted In or I.
What is a zero matrix/null matrix?
A matrix where all the elements are 0.
It is denoted as 0 no matter the size.
How do you transpose a matrix?
The rows become the columns.
It is denoted AT .
What makes a matrix symmetric?
If the transpose of the matrix is equal to the original matrix.
A = AT
Under what circumstances and matrices be added/subtracted?
If they are the same size.
How is matrix addition commutative?
A+B = B+A
How is matrix addition associative?
A + (B + C) = (A + B) + C
How does the distribution law hold when adding/subtracting matrices?
k ( A + B ) = kA + kB
What are the three properties of a transposed matrix?
( A + B )T = AT + BT
( A - B )T = AT - BT
( AT )T = A
What is significant about the I2 identity matrix?
It acts in the same way in matrix multiplication as the number 1 acts in number multiplication.
What size matrix do you get if you multiply n x p by p x m
n x m
What is the case is a matrix is singular?
It does not have an inverse
9What facts can make finding determinants easier? (3)
- If two rows are the same or are multiples of each other the determinant is 0
- The transpose of a matrix has the same determinant as the original
- For an upper/low/diagonal matrix, the determinant is the sum of the leading diagonal
What are the properties of eigenvalues/eigenvectors?
- Sum of values = trace(A)
- Product of values = |A|
- eigenvectors that correspond to distinct eigenvalues are linearly independent
What is the modal matrix, P, of A?
The columns are the eigenvectors of the matrix A
What is the fact about modal matrices?
P-1AP = D
This is a similarity transformation.
How do you raise a matrix by a power?
Use the fact that P-1AP = D
Make A the subject
PP-1APP-1 = PDP-1
PP-1 = I
IAI = PDP-1
A = PDP-1
Ak = PDkP-1
For Dk each element of the diagonal is raised to the power of k
When can an nxn matrix be diagonalised?
If it has n linearly independent eigenvectors
