Matrices Flashcards
(13 cards)
What is a matrix?
A rectangular array of numbers arranged in rows and columns, representing linear transformations.
What is the determinant of a 2x2 matrix A = [[a, b], [c, d]]?
det(A) = ad − bc
What does the determinant signify?
It indicates if a matrix is invertible (det ≠ 0) and the scaling factor of the transformation.
What is the formula for the inverse of a 2x2 matrix A = [[a, b], [c, d]]?
A⁻¹ = (1/det(A)) * [[d, -b], [-c, a]], provided det(A) ≠ 0.
What does matrix multiplication represent?
Combining two linear transformations sequentially.
Is matrix multiplication commutative?
No, A ⋅ B ≠ B ⋅ A in general.
How do you calculate the transpose of a matrix A?
Flip rows and columns: Aᵀ
What is the rank of a matrix?
The rank is the number of linearly independent rows or columns.
How do you find the trace of a matrix A?
Sum of the diagonal elements.
what is the row echelon form of a matric and which properties does a matrix need to have to be in row echelon form?
- If a row does not consist entirely of zeros, then the first nonzero number in the row is a 1 (does not apply to all definitions)
- All zeros rows are at the bottom of the matrix
- In any two successive rows that do not consist rows that do not consist entirely of 0s, the leading 1 in the lower row occurs further to the right than the leading 1 in the higher row
- it is not unique
What is reduced row echelon form
Each column containing a leading 1 has zeros in all its other entries
- it is unique
Can every matrix be turned into row echelon form?
Yes, through gaussian elimination