Linear Algebra
Status: draft · Confidence: low (0.53) · Basis: verified_sources
Quality notes: generic_source_homepage, no_verified_sources, partial_source_verification
## TL;DR Linear algebra is the mathematics of vectors and matrices, fundamental to computer graphics, machine learning (neural networks), physics simulation, and data science. Core concepts: vectors, matrices, linear transformations, determinants, eigenvalues/eigenvectors, linear systems. ## Core Explanation Matrix multiplication: AB = C where C_ij = Σ A_ik * B_kj. Neural networks: forward pass is matrix multiplications with activation functions. Gradient descent: derivative of loss w.r.t. weights computed via backpropagation (chain rule on matrices). SVD (Singular Value Decomposition): A = UΣV^T — fundamental to PCA, recommendation systems, image compression. ## Further Reading - ## Related Articles - [State Space Models: Mamba, Linear-Time Sequence Modeling, and Alternatives to Transformers](../../ai/state-space-models.md) - [Boolean Algebra](../boolean-algebra.md)