Determinanten
Determinant is a scalar associated with a square matrix A, denoted det(A) or |A|. For a 1x1 matrix [a], det(A) = a. For larger matrices, the determinant provides a criterion for invertibility: det(A) = 0 iff A is singular. Geometrically, it represents the factor by which the linear transformation associated with A expands or contracts volumes, and its sign reflects orientation.
Computation: For a 2x2 matrix [[a,b],[c,d]], det = ad - bc. In general, determinants can be computed by
Key properties: det(AB) = det(A) det(B); det(A^T) = det(A); det(kA) = k^n det(A) for an n-by-n matrix; det(I) = 1;
Applications: Cramer's rule expresses solutions of linear systems in terms of determinants if det(A) ≠ 0. In