Visual Tools
Calculators
Tables
Mathematical Keyboard
Converters
Other Tools

Linear Algebra Terms and Definitions

Determinants(4)
Eigen(7)
Linear Systems(6)
Matrices(10)
Orthogonality(6)
Transformations(5)
Vector Spaces(10)
Vectors(7)
55 of 55 terms

55 terms

Vectors

(7 items)

Vector

An ordered list of nn real numbers: v=(v1,v2,,vn)Rn\mathbf{v} = (v_1, v_2, \ldots, v_n) \in \mathbb{R}^n
See details
↑ Back to top
intuitionnotationrelated concepts
A quantity with both magnitude and direction. In R2\mathbb{R}^2 and R3\mathbb{R}^3, vectors can be visualized as arrows from the origin to a point.
↑ Back to top

Scalar

An element of the underlying field — in standard linear algebra, a real number cRc \in \mathbb{R}
See details
↑ Back to top
intuitionrelated concepts
A single number used to scale vectors. Multiplying a vector by a scalar changes its length without altering its direction (unless the scalar is negative, which reverses direction).
↑ Back to top

Magnitude (Norm)

The length of a vector, measured as its distance from the origin:
v=v12+v22++vn2\|\mathbf{v}\| = \sqrt{v_1^2 + v_2^2 + \cdots + v_n^2}
See details
↑ Back to top
intuitionpropertiesrelated concepts
In R2\mathbb{R}^2, this reduces to the hypotenuse given by the Pythagorean theorem. The concept generalizes to any Rn\mathbb{R}^n.
↑ Back to top

Unit Vector

A vector u^\hat{\mathbf{u}} with u^=1\|\hat{\mathbf{u}}\| = 1
See details
↑ Back to top
intuitionnotationrelated concepts
A vector that encodes direction only, with all length information removed. Any nonzero vector v\mathbf{v} can be normalized to a unit vector by dividing by its magnitude: v^=vv\hat{\mathbf{v}} = \frac{\mathbf{v}}{\|\mathbf{v}\|}.
↑ Back to top

Dot Product

An operation that takes two vectors and returns a scalar, computed by summing the products of corresponding components:
uv=u1v1+u2v2++unvn=uvcosθ\mathbf{u} \cdot \mathbf{v} = u_1 v_1 + u_2 v_2 + \cdots + u_n v_n = \|\mathbf{u}\|\,\|\mathbf{v}\|\cos\theta
See details
↑ Back to top
intuitionpropertiesrelated concepts
A scalar measure of how much two vectors point in the same direction. Positive when the angle between them is acute, zero when perpendicular, negative when obtuse.
↑ Back to top

Cross Product

A binary operation on two vectors in R3\mathbb{R}^3 that produces a vector perpendicular to both inputs:
u×v=(u2v3u3v2u3v1u1v3u1v2u2v1)\mathbf{u} \times \mathbf{v} = \begin{pmatrix} u_2 v_3 - u_3 v_2 \\ u_3 v_1 - u_1 v_3 \\ u_1 v_2 - u_2 v_1 \end{pmatrix}
See details
↑ Back to top
intuitionpropertiesrelated concepts
Its magnitude equals the area of the parallelogram spanned by the two vectors. The direction follows the right-hand rule.
↑ Back to top

Linear Combination

A sum of vectors, each multiplied by a scalar coefficient:
c1v1+c2v2++ckvkc_1\mathbf{v}_1 + c_2\mathbf{v}_2 + \cdots + c_k\mathbf{v}_k
See details
↑ Back to top
intuitionrelated concepts
A new vector built by scaling given vectors and adding the results. The set of all possible linear combinations of a collection of vectors defines their span.
↑ Back to top

Vector Spaces

(10 items)

Vector Space

A set VV equipped with vector addition and scalar multiplication satisfying the vector space axioms
See details
↑ Back to top
intuitionexamplesrelated concepts
A collection of objects (vectors) that can be added together and scaled by numbers, where these operations behave predictably. Rn\mathbb{R}^n is the most familiar example, but the concept extends to function spaces, polynomial spaces, and more.
↑ Back to top

Subspace

A nonempty subset WVW \subseteq V that is itself a vector space under the same operations
See details
↑ Back to top
intuitionpropertiesrelated concepts
A subset of a vector space that is closed under addition and scalar multiplication. Every subspace must contain the zero vector.
↑ Back to top

Span

The set of all linear combinations of a given collection of vectors:
Span{v1,,vk}={c1v1++ckvkciR}\text{Span}\{\mathbf{v}_1, \ldots, \mathbf{v}_k\} = \{c_1\mathbf{v}_1 + \cdots + c_k\mathbf{v}_k \mid c_i \in \mathbb{R}\}
See details
↑ Back to top
intuitionpropertiesrelated concepts
Geometrically, spanning two non-parallel vectors in R3\mathbb{R}^3 gives a plane; spanning three linearly independent vectors fills the entire space.
↑ Back to top

Linear Independence

Vectors v1,,vk\mathbf{v}_1, \ldots, \mathbf{v}_k are linearly independent if the only solution to
c1v1++ckvk=0c_1\mathbf{v}_1 + \cdots + c_k\mathbf{v}_k = \mathbf{0}

is c1=c2==ck=0c_1 = c_2 = \cdots = c_k = 0
See details
↑ Back to top
intuitioncommon errorsrelated concepts
No vector in the set can be written as a linear combination of the others. Each vector contributes a genuinely new direction. Removing any one reduces the span.
↑ Back to top

Basis

A set {v1,,vn}\{\mathbf{v}_1, \ldots, \mathbf{v}_n\} that is linearly independent and spans the entire vector space
See details
↑ Back to top
intuitionexamplesrelated concepts
A minimal set of vectors that can produce every vector in the space through linear combinations. Every vector has a unique representation as a linear combination of basis vectors.
↑ Back to top

Dimension

The number of vectors in any basis of a vector space VV, denoted dim(V)\dim(V)
See details
↑ Back to top
intuitionpropertiesrelated concepts
The number of independent directions in a space. R3\mathbb{R}^3 is three-dimensional because any basis has exactly three vectors.
↑ Back to top

Column Space

The set of all vectors expressible as AxA\mathbf{x} — equivalently, the span of the columns of AA:
Col(A)={AxxRn}\text{Col}(A) = \{A\mathbf{x} \mid \mathbf{x} \in \mathbb{R}^n\}
See details
↑ Back to top
intuitionpropertiesrelated concepts
The set of all vectors b\mathbf{b} for which Ax=bA\mathbf{x} = \mathbf{b} has a solution. It captures everything the matrix can "reach" as output.
↑ Back to top

Null Space (Kernel)

The set of all solutions to the homogeneous system Ax=0A\mathbf{x} = \mathbf{0}:
Nul(A)={xRnAx=0}\text{Nul}(A) = \{\mathbf{x} \in \mathbb{R}^n \mid A\mathbf{x} = \mathbf{0}\}
See details
↑ Back to top
intuitionpropertiesrelated concepts
The set of all inputs that the matrix sends to the zero vector. If the null space contains only 0\mathbf{0}, the matrix is injective (one-to-one). A larger null space means the matrix "collapses" some directions.
↑ Back to top

Row Space

The span of the rows of a matrix, equivalently the column space of its transpose:
Row(A)=Col(AT)\text{Row}(A) = \text{Col}(A^T)
See details
↑ Back to top
intuitionpropertiesrelated concepts
A subspace of Rn\mathbb{R}^n spanned by the rows of AA. Row operations change individual rows but preserve the row space, making echelon form useful for finding a basis.
↑ Back to top

Left Null Space

The null space of the transpose ATA^T — the set of all vectors y\mathbf{y} satisfying ATy=0A^T\mathbf{y} = \mathbf{0}:
Nul(AT)={yRmATy=0}\text{Nul}(A^T) = \{\mathbf{y} \in \mathbb{R}^m \mid A^T\mathbf{y} = \mathbf{0}\}
See details
↑ Back to top
intuitionpropertiesrelated concepts
It completes the four fundamental subspaces: column space, null space, row space, and left null space.
↑ Back to top

Matrices

(10 items)

Matrix

A rectangular array of numbers with mm rows and nn columns: ARm×nA \in \mathbb{R}^{m \times n}
See details
↑ Back to top
intuitionnotationrelated concepts
A compact way to encode a linear transformation or a system of linear equations. The entry in row ii, column jj is denoted aija_{ij}.
↑ Back to top

Square Matrix

A matrix with equal numbers of rows and columns: ARn×nA \in \mathbb{R}^{n \times n}
See details
↑ Back to top
intuitionrelated concepts
Only square matrices can have determinants, eigenvalues, inverses, and a trace. They represent transformations from a space to itself.
↑ Back to top

Identity Matrix

The square matrix with 11s on the main diagonal and 00s elsewhere, denoted InI_n:
In=(100010001)I_n = \begin{pmatrix} 1 & 0 & \cdots & 0 \\ 0 & 1 & \cdots & 0 \\ \vdots & \vdots & \ddots & \vdots \\ 0 & 0 & \cdots & 1 \end{pmatrix}
See details
↑ Back to top
intuitionpropertiesrelated concepts
The matrix that leaves every vector unchanged: Iv=vI\mathbf{v} = \mathbf{v}. It is the multiplicative identity for matrices, analogous to the number 11.
↑ Back to top

Symmetric Matrix

A square matrix satisfying A=ATA = A^T
See details
↑ Back to top
intuitionpropertiesrelated concepts
A matrix that equals its own transpose — entries are mirrored across the main diagonal. Symmetric matrices arise naturally in distance, covariance, and quadratic form problems.
↑ Back to top

Inverse Matrix

A square matrix A1A^{-1} such that AA1=A1A=IAA^{-1} = A^{-1}A = I
See details
↑ Back to top
intuitionpropertiesrelated concepts
The matrix that "undoes" the transformation applied by AA. If AA maps x\mathbf{x} to b\mathbf{b}, then A1A^{-1} maps b\mathbf{b} back to x\mathbf{x}.
↑ Back to top

Singular Matrix

A square matrix AA with det(A)=0\det(A) = 0
See details
↑ Back to top
intuitionpropertiesrelated concepts
A matrix that collapses at least one dimension — it maps some nonzero vector to 0\mathbf{0}. A singular matrix has no inverse and the system Ax=bA\mathbf{x} = \mathbf{b} either has no solution or infinitely many.
↑ Back to top

Rank

The number of linearly independent columns (equivalently, rows) in a matrix:
rank(A)=dim(Col(A))=dim(Row(A))\text{rank}(A) = \dim(\text{Col}(A)) = \dim(\text{Row}(A))
See details
↑ Back to top
intuitionpropertiesrelated concepts
It measures the "effective dimensionality" of the transformation — how many independent output directions the matrix produces.
↑ Back to top

Trace

The sum of the main diagonal entries of a square matrix:
tr(A)=a11+a22++ann=i=1naii\text{tr}(A) = a_{11} + a_{22} + \cdots + a_{nn} = \sum_{i=1}^{n} a_{ii}
See details
↑ Back to top
intuitionpropertiesrelated concepts
It equals the sum of all eigenvalues (counted with multiplicity), providing a quick invariant of the matrix.
↑ Back to top

Diagonal Matrix

A square matrix where aij=0a_{ij} = 0 for all iji \neq j
See details
↑ Back to top
intuitionpropertiesrelated concepts
A matrix whose only nonzero entries lie on the main diagonal. Diagonal matrices scale each coordinate axis independently, making them the simplest matrices to work with.
↑ Back to top

Positive Definite Matrix

A symmetric matrix AA satisfying xTAx>0\mathbf{x}^T A \mathbf{x} > 0 for all nonzero x\mathbf{x}
See details
↑ Back to top
intuitionpropertiesrelated concepts
A matrix where the associated quadratic form is always positive — it curves upward in every direction, like a bowl. Positive definite matrices generalize the idea of a positive number to matrix algebra.
↑ Back to top

Determinants

(4 items)

Determinant

A scalar det(A)R\det(A) \in \mathbb{R} assigned to every square matrix, defined recursively via cofactor expansion
See details
↑ Back to top
intuitionpropertiesrelated concepts
The signed volume scaling factor of the linear transformation represented by the matrix. A determinant of zero means the transformation collapses space into a lower dimension.
↑ Back to top

Minor

The determinant of the submatrix obtained by deleting row ii and column jj from a matrix:
Mij=det(A^ij)M_{ij} = \det(\hat{A}_{ij})
See details
↑ Back to top
intuitionrelated concepts
Minors are the building blocks for cofactors and, through them, for the full determinant computation.
↑ Back to top

Cofactor

A signed minor, with sign determined by the position (i,j)(i,j):
Cij=(1)i+jMijC_{ij} = (-1)^{i+j} M_{ij}
See details
↑ Back to top
intuitionrelated concepts
The sign alternates in a checkerboard pattern (+,,+,+, -, +, \ldots). Cofactors are used in the expansion formula for determinants and in computing the adjugate.
↑ Back to top

Cofactor Matrix (Adjugate)

The transpose of the matrix of cofactors of AA:
adj(A)=CT\text{adj}(A) = C^T
See details
↑ Back to top
intuitionrelated concepts
It provides a formula for the inverse: A1=1det(A)adj(A)A^{-1} = \frac{1}{\det(A)}\,\text{adj}(A).
↑ Back to top

Linear Systems

(6 items)

System of Linear Equations

A collection of equations Ax=bA\mathbf{x} = \mathbf{b} where AA is an m×nm \times n matrix and bRm\mathbf{b} \in \mathbb{R}^m
See details
↑ Back to top
intuitionrelated concepts
A set of linear equations sharing the same unknowns. The system has either no solution, exactly one solution, or infinitely many solutions — there is no other possibility.
↑ Back to top

Augmented Matrix

The matrix formed by appending the right-hand side vector b\mathbf{b} as an additional column to the coefficient matrix AA, written [Ab][A \mid \mathbf{b}]
See details
↑ Back to top
intuitionrelated concepts
A compact notation that combines the coefficient matrix and the right-hand side into a single matrix, so row operations can be applied to the entire system at once.
↑ Back to top

Row Echelon Form

A matrix where:
• all zero rows are at the bottom
• each leading entry (pivot) is to the right of the pivot in the row above
• all entries below each pivot are zero
See details
↑ Back to top
intuitionrelated concepts
A staircase pattern achieved by row operations, making back-substitution possible. The number of pivots equals the rank.
↑ Back to top

Reduced Row Echelon Form

Row echelon form with the additional requirements:
• every pivot is 11
• each pivot is the only nonzero entry in its column
See details
↑ Back to top
intuitionnotationrelated concepts
The fully simplified form of a matrix under row operations. Unlike row echelon form, the reduced form is unique — every matrix has exactly one RREF.
↑ Back to top

Pivot

The first nonzero entry in each row of a matrix in row echelon form
See details
↑ Back to top
intuitionrelated concepts
Pivots mark the "independent" columns. The number of pivots determines the rank; columns without pivots correspond to free variables in the solution.
↑ Back to top

Homogeneous System

A system of linear equations in which every equation equals zero: Ax=0A\mathbf{x} = \mathbf{0}
See details
↑ Back to top
intuitionpropertiesrelated concepts
It always has at least the trivial solution x=0\mathbf{x} = \mathbf{0}. Nontrivial solutions exist if and only if rank(A)<n\text{rank}(A) < n.
↑ Back to top

Transformations

(5 items)

Linear Transformation

A function T:VWT: V \to W between vector spaces that preserves addition and scalar multiplication:
T(u+v)=T(u)+T(v)T(\mathbf{u} + \mathbf{v}) = T(\mathbf{u}) + T(\mathbf{v})

T(cu)=cT(u)T(c\mathbf{u}) = cT(\mathbf{u})
See details
↑ Back to top
intuitionexamplesrelated concepts
Lines map to lines (or to the origin), and the origin stays fixed. Every linear transformation between finite-dimensional spaces can be represented by a matrix.
↑ Back to top

Image (Range)

The set of all output vectors of a linear transformation:
Im(T)={T(v)vV}\text{Im}(T) = \{T(\mathbf{v}) \mid \mathbf{v} \in V\}
See details
↑ Back to top
intuitionrelated concepts
For a matrix transformation T(x)=AxT(\mathbf{x}) = A\mathbf{x}, the image equals the column space of AA.
↑ Back to top

Matrix Representation

A matrix AA such that T(v)=A[v]BT(\mathbf{v}) = A[\mathbf{v}]_{\mathcal{B}} for a chosen basis B\mathcal{B}
See details
↑ Back to top
intuitionrelated concepts
Every linear transformation between finite-dimensional spaces can be encoded as a matrix once bases are chosen. Different bases produce different matrices representing the same transformation.
↑ Back to top

Change of Basis Matrix

A matrix PP that converts coordinates from one basis to another: [v]B=P1[v]B[\mathbf{v}]_{\mathcal{B}'} = P^{-1}[\mathbf{v}]_{\mathcal{B}}
See details
↑ Back to top
intuitionrelated concepts
The same vector can be described using different coordinate systems (bases). The change of basis matrix translates between these coordinate systems.
↑ Back to top

Similar Matrices

Matrices AA and BB are similar if B=P1APB = P^{-1}AP for some invertible matrix PP
See details
↑ Back to top
intuitionpropertiesrelated concepts
Two matrices are similar when they represent the same linear transformation under different bases. They share all basis-independent properties.
↑ Back to top

Eigen

(7 items)

Eigenvalue

A scalar λ\lambda such that Av=λvA\mathbf{v} = \lambda\mathbf{v} for some nonzero vector v\mathbf{v}
See details
↑ Back to top
intuitionpropertiesrelated concepts
The factor by which the linear transformation stretches or compresses an eigenvector. A negative eigenvalue means the eigenvector's direction is reversed.
↑ Back to top

Eigenvector

A nonzero vector v\mathbf{v} such that Av=λvA\mathbf{v} = \lambda\mathbf{v} for some scalar λ\lambda
See details
↑ Back to top
intuitioncommon errorsrelated concepts
A direction that the matrix preserves — the transformation only stretches or compresses along this direction without rotating it. Eigenvectors from distinct eigenvalues are always linearly independent.
↑ Back to top

Eigenspace

The set of all eigenvectors for a given eigenvalue λ\lambda, together with the zero vector — equivalently, the null space of (AλI)(A - \lambda I):
Eλ=Nul(AλI)E_\lambda = \text{Nul}(A - \lambda I)
See details
↑ Back to top
intuitionpropertiesrelated concepts
It is always a subspace, and its dimension reveals how many independent eigenvector directions exist for that eigenvalue.
↑ Back to top

Characteristic Polynomial

The polynomial whose roots are the eigenvalues of AA, obtained by computing:
p(λ)=det(AλI)p(\lambda) = \det(A - \lambda I)
See details
↑ Back to top
intuitionpropertiesrelated concepts
For an n×nn \times n matrix, the characteristic polynomial has degree nn, so there are at most nn eigenvalues (counted with multiplicity).
↑ Back to top

Algebraic Multiplicity

The multiplicity of λ\lambda as a root of the characteristic polynomial
See details
↑ Back to top
intuitionrelated concepts
How many times the eigenvalue appears as a root. If p(λ)=(λ2)3(λ+1)p(\lambda) = (\lambda - 2)^3(\lambda + 1), then λ=2\lambda = 2 has algebraic multiplicity 33 and λ=1\lambda = -1 has algebraic multiplicity 11.
↑ Back to top

Geometric Multiplicity

The dimension of the eigenspace associated with an eigenvalue λ\lambda:
geo. mult.(λ)=dim(Eλ)=dim(Nul(AλI))\text{geo. mult.}(\lambda) = \dim(E_\lambda) = \dim(\text{Nul}(A - \lambda I))
See details
↑ Back to top
intuitionrelated concepts
The number of independent eigenvector directions for a given eigenvalue. A matrix is diagonalizable if and only if every eigenvalue has geometric multiplicity equal to its algebraic multiplicity.
↑ Back to top

Singular Value

A nonnegative scalar measuring how much a matrix stretches space along each principal direction, derived from the eigenvalues of ATAA^TA:
σi=λi(ATA)\sigma_i = \sqrt{\lambda_i(A^TA)}
See details
↑ Back to top
intuitionpropertiesrelated concepts
Unlike eigenvalues, singular values are always nonnegative and exist for any matrix, not just square ones.
↑ Back to top

Orthogonality

(6 items)

Inner Product

A function ,:V×VR\langle \cdot, \cdot \rangle: V \times V \to \mathbb{R} satisfying symmetry, linearity, and positive-definiteness
See details
↑ Back to top
intuitionpropertiesrelated concepts
A generalization of the dot product to abstract vector spaces. It defines notions of length, angle, and orthogonality in spaces where the standard dot product may not apply.
↑ Back to top

Orthogonal Vectors

Vectors u\mathbf{u} and v\mathbf{v} are orthogonal if u,v=0\langle \mathbf{u}, \mathbf{v} \rangle = 0
See details
↑ Back to top
intuitionnotationrelated concepts
Perpendicular vectors. Their dot product (or inner product) is zero, meaning they share no component in each other's direction.
↑ Back to top

Orthogonal Set

A set of vectors {v1,,vk}\{\mathbf{v}_1, \ldots, \mathbf{v}_k\} where vi,vj=0\langle \mathbf{v}_i, \mathbf{v}_j \rangle = 0 for all iji \neq j
See details
↑ Back to top
intuitionrelated concepts
A collection of mutually perpendicular vectors. Every orthogonal set of nonzero vectors is automatically linearly independent.
↑ Back to top

Orthonormal Set

An orthogonal set where every vector is a unit vector: vi,vj=δij\langle \mathbf{v}_i, \mathbf{v}_j \rangle = \delta_{ij}
See details
↑ Back to top
intuitionnotationrelated concepts
Mutually perpendicular vectors, each of length 11. An orthonormal basis gives the simplest coordinate system — coordinates are just inner products with the basis vectors.
↑ Back to top

Orthogonal Complement

The set of all vectors in VV that are orthogonal to every vector in a subspace WW:
W={vVv,w=0 for all wW}W^\perp = \{\mathbf{v} \in V \mid \langle \mathbf{v}, \mathbf{w} \rangle = 0 \text{ for all } \mathbf{w} \in W\}
See details
↑ Back to top
intuitionpropertiesrelated concepts
Together, WW and WW^\perp span the entire space, with no overlap except the zero vector.
↑ Back to top

Orthogonal Matrix

A square matrix QQ satisfying QTQ=QQT=IQ^TQ = QQ^T = I
See details
↑ Back to top
intuitionpropertiesrelated concepts
A matrix whose columns (and rows) form an orthonormal set. Orthogonal matrices preserve lengths and angles — they represent rotations and reflections.
↑ Back to top