MATHEMATICS · STRUCTURE AND TRANSFORMATION
Linear Algebra
Linear algebra studies vectors, matrices and linear transformations. It is the language used to solve coupled linear equations, describe geometry in many dimensions and analyze how linear systems stretch, rotate or preserve directions.
Vectors and matrices
A vector in \(\mathbb{R}^n\) is an ordered list of \(n\) numbers. Vector addition and scalar multiplication are performed componentwise.
An \(m\times n\) matrix represents a linear map from \(\mathbb{R}^n\) to \(\mathbb{R}^m\). Matrix-vector multiplication forms each output component as a linear combination of the input components.
Linear maps
A map \(T\) is linear when it preserves vector addition and scalar multiplication:
Once a basis is chosen, every linear map between finite-dimensional vector spaces can be represented by a matrix.
Systems of linear equations
A system of linear equations can be written compactly as \(A\mathbf{x}=\mathbf{b}\). Row operations preserve the solution set and lead to row-echelon form, which reveals whether the system has no solution, one solution or infinitely many solutions.
Determinant and invertibility
For a square matrix, the determinant is a scalar that measures oriented volume scaling. For a \(2\times2\) matrix,
A square matrix is invertible if and only if its determinant is nonzero. In that case, \(A\mathbf{x}=\mathbf{b}\) has the unique solution \(\mathbf{x}=A^{-1}\mathbf{b}\).
Eigenvalues and eigenvectors
A nonzero vector \(\mathbf{v}\) is an eigenvector of \(A\) when applying \(A\) changes only its scale, not its direction:
The scalar \(\lambda\) is the corresponding eigenvalue. Eigenvalues are found from the characteristic equation
Eigenvectors reveal invariant directions and are central to stability analysis, differential equations, data analysis and repeated matrix transformations.
A practical workflow
Write the problem using vectors and a matrix whenever the relationships are linear.
For \(A\mathbf{x}\), the number of columns of \(A\) must equal the number of components of \(\mathbf{x}\).
For square matrices, rank, determinant and eigenvalues answer different questions about solvability and transformation behavior.
Do not stop at a matrix calculation: translate the solution, null space or eigenvector back into the original problem.
Connections
Linear algebra connects directly to systems of equations, multivariable calculus and differential equations.