Concept Algebra โœ“ Live

Vector Space

A vector space is a set of objects (called vectors) that can be added together and multiplied by numbers (called scalars), obeying a fixed list of rules. Vector spaces are defined over a field, and they are the setting for linear algebra โ€” one of the most widely applied branches of mathematics, from computer graphics to quantum mechanics.

Arrows you can add and stretch

Think of an arrow pointing from the origin to a point on a map โ€” that's a vector. You can add two arrows together (place one at the tip of the other, and draw a new arrow from start to finish). You can also stretch or shrink an arrow by multiplying it by a number โ€” double it, halve it, flip it around by multiplying by โˆ’1.

๐Ÿ”ฎ The key idea: A vector space is any collection of objects where "adding" and "scaling" make sense and follow sensible rules โ€” like arrows, but also lists of numbers, polynomials, or even functions.

Where vectors show up

  • Video games and computer graphics: every 3D position, movement, and rotation is vector math
  • Physics: velocity, force, and acceleration are all vectors โ€” they have both size and direction
  • Machine learning: data is represented as vectors of numbers, and AI models manipulate them using vector space math
  • GPS navigation: your position and direction of travel are vectors

Not just arrows

The surprising part: vector spaces don't have to be arrows in space. A list of 5 numbers (like a spreadsheet row) is a vector. A polynomial like 3xยฒ + 2x + 1 is a vector, in a space of polynomials. Even the set of all possible sound waves can be treated as a vector space. Anything that can be added and scaled sensibly qualifies.

Formal definition and structure

Definition

A vector space V over a field F is a set equipped with two operations โ€” vector addition (V ร— V โ†’ V) and scalar multiplication (F ร— V โ†’ V) โ€” satisfying 8 axioms: associativity and commutativity of addition, existence of a zero vector, existence of additive inverses, and four axioms governing how scalar multiplication interacts with addition (distributive laws, compatibility with field multiplication, and identity: 1ยทv = v).

Key examples

Vector spaceFieldElements
โ„โฟโ„n-tuples of real numbers
โ„‚โฟโ„‚n-tuples of complex numbers
Mโ‚˜โ‚“โ‚™(โ„)โ„mร—n real matrices
P(x)โ„Polynomials with real coefficients
C[a,b]โ„Continuous functions on [a,b]

Basis and dimension

A basis is a set of vectors that are linearly independent (none is a combination of the others) and span the whole space (every vector can be written as a combination of them). Every vector space has a basis, and all bases of a given space have the same size โ€” called the dimension. โ„ยณ has dimension 3; its standard basis is {(1,0,0), (0,1,0), (0,0,1)}.

Linear transformations

A linear transformation T : V โ†’ W between vector spaces satisfies T(u+v) = T(u)+T(v) and T(cv) = cT(v). Every linear transformation between finite-dimensional spaces can be represented by a matrix once bases are chosen โ€” this is why matrices are so central to linear algebra.

Subspaces

A subset W โІ V is a subspace if it is itself a vector space under the same operations โ€” equivalently, if it's closed under addition and scalar multiplication and contains the zero vector. The set of solutions to a homogeneous linear equation Ax = 0 is always a subspace, called the kernel or null space of A.

Infinite dimensions, inner products, and applications

Infinite-dimensional vector spaces

Vector spaces need not be finite-dimensional. The space of all polynomials has infinite dimension (no finite basis can span it, since polynomials of arbitrarily high degree exist). Function spaces like C[a,b] (continuous functions) or Lยฒ[a,b] (square-integrable functions) are infinite-dimensional and are studied in functional analysis. These spaces require additional structure (norms, inner products, completeness) to do useful analysis โ€” leading to Banach spaces and Hilbert spaces.

Inner product spaces

An inner product โŸจu,vโŸฉ on a vector space adds a notion of angle and length: โ€–vโ€– = โˆšโŸจv,vโŸฉ. Two vectors are orthogonal if โŸจu,vโŸฉ = 0. The Pythagorean theorem generalises: if u โŠฅ v, then โ€–u+vโ€–ยฒ = โ€–uโ€–ยฒ + โ€–vโ€–ยฒ. A Hilbert space is a complete inner product space โ€” the setting for quantum mechanics, where physical states are vectors and observables are linear operators.

The rank-nullity theorem

For a linear map T : V โ†’ W with V finite-dimensional: dim(V) = dim(ker T) + dim(im T). This fundamental theorem relates the dimension of the domain to the dimensions of the kernel (what's sent to zero) and the image (what's actually reached) โ€” a cornerstone result used throughout linear algebra.

Vector spaces in quantum mechanics

The state of a quantum system is represented as a vector in a complex Hilbert space. Physical observables correspond to linear operators (Hermitian operators) on this space, and possible measurement outcomes correspond to eigenvalues of these operators. Dirac's bra-ket notation (โŸจฯˆ|, |ฯˆโŸฉ) is vector space notation specifically adapted for quantum theory. This application illustrates how an apparently abstract algebraic structure became indispensable to fundamental physics.

Historical development

The abstract axiomatic definition of a vector space was given by Giuseppe Peano (1888), extending earlier geometric work by Hermann Grassmann (1844) on "extension theory," which was largely ignored in its time due to its unusual notation and abstract presentation. The theory was popularised and connected to matrix theory over the following decades, becoming standard in the 20th century.

๐Ÿ“š Sources

Tier 1 Axler, S. (2015). Linear Algebra Done Right. 3rd ed. Springer. โ€” Modern standard textbook, basis-free approach.
Tier 1 Halmos, P.R. (1974). Finite-Dimensional Vector Spaces. 2nd ed. Springer. โ€” Classic rigorous treatment.
Tier 2 Strang, G. (2016). Introduction to Linear Algebra. 5th ed. Wellesley-Cambridge Press. โ€” Widely used applied treatment.

๐Ÿ”— Related entries

Defined overField
GeneralisesGroupโ€” (V,+) is an abelian group
UsesFunctionโ€” linear transformations are functions
ContainsPolynomialโ€” polynomials form a vector space
Entry v1.0 ยท Added 2026-05-27 ยท Algebra ยท Concept JSON Markdown Status