Determinants, their properties, and computation methods from a college linear algebra course.
30 cards · basic cards · AI-written, checked twice. Edit anything.
- What is the determinant of a square matrix?
- A scalar value computed from a square matrix's entries that encodes information about the matrix's invertibility, scaling effect, and orientation.
- What is the notation for the determinant of matrix A?
- det(A) or |A|
- State the formula for the determinant of a 2 by 2 matrix [[a, b], [c, d]].
- ad - bc
- Describe the general formula for a 3 by 3 determinant using the rule of Sarrus or expansion.
- Sum of products along three diagonals minus sum of products along three anti-diagonals (Sarrus), or expansion along a row or column of minors and cofactors.
- What does the absolute value of a determinant represent geometrically?
- The volume (or area in 2D) of the parallelepiped (or parallelogram) formed by the matrix's row or column vectors.
- What is the determinant of the n by n identity matrix?
- 1
- A square matrix is invertible if and only if its determinant is ___.
- nonzero
- If two rows of a matrix are swapped, how does the determinant change?
- The determinant is multiplied by -1.
- If one row of a matrix is multiplied by a scalar c, how does the determinant change?
- The determinant is multiplied by c.
- If a multiple of one row is added to another row, how does the determinant change?
- The determinant does not change.
- What is a minor of a matrix?
- The determinant of the submatrix obtained by deleting one row and one column.
- What is a cofactor of a matrix?
- The minor of a position multiplied by (-1)^(i+j), where i and j are the row and column indices.
- State the cofactor expansion formula for the determinant along row i.
- det(A) = sum over j of a(i,j) * C(i,j), where C(i,j) is the cofactor of position (i,j).
- What is the relationship between det(A) and det(A^T)?
- det(A^T) = det(A); the determinant of a matrix equals the determinant of its transpose.
- State the product rule for determinants.
- det(AB) = det(A) * det(B)