Chapter 3 2 min read
Save

Vector Space

Mathematics II · BCA · Updated Apr 06, 2026

Table of Contents

Unit III: Vector Space

3.1 Introduction to Vector Spaces

A vector space is a mathematical structure consisting of a set of vectors with operations of addition and scalar multiplication, satisfying specific axioms. Vector spaces form the foundation of linear algebra and appear extensively in engineering, physics, computer science, and data analysis.

Think of familiar examples: the set of 2D vectors (x, y) in a plane, 3D vectors (x, y, z) in space, or the set of all polynomials of degree less than n. All of these are vector spaces.

3.2 Definition and Axioms

A vector space V over a field F (typically real numbers ℝ or complex numbers ℂ) is a set with two operations:

  • Vector Addition: u + v is in V for any u, v ∈ V
  • Scalar Multiplication: cv is in V for any c ∈ F and v ∈ V

Ten Vector Space Axioms:

Axiom Property
1Closure under addition
2Associativity of addition
3Commutativity of addition
4Additive identity (zero vector)
5Additive inverses
6Closure under scalar multiplication
7Associativity of scalar multiplication
8Distributivity 1: c(u + v) = cu + cv
9Distributivity 2: (c + d)v = cv + dv
10Scalar identity: 1v = v

3.3 Subspaces

A subspace W of a vector space V is a subset that is itself a vector space. To verify W is a subspace, check:

  1. The zero vector 0 is in W
  2. W is closed under addition
  3. W is closed under scalar multiplication

3.4 Linear Combinations

A vector v is a linear combination of vectors v1, v2, ..., vn if:

v = c1v1 + c2v2 + ... + cnvn

The span of vectors is the set of all possible linear combinations.

3.5 Linear Independence and Dependence

Vectors are linearly independent if the only solution to c1v1 + c2v2 + ... + cnvn = 0 is all ci = 0.

3.6 Basis and Dimension

A basis for V is a set of linearly independent vectors that span V. The dimension equals the number of basis vectors.

  • 2: dimension = 2
  • 3: dimension = 3
  • Polynomials of degree ≤ 2: dimension = 3

3.7 Coordinate Representation

With basis B = {b1, ..., bn}, every vector v has unique coordinates [c1, ..., cn] relative to B.

Related Notes

Discussion

0 comments

Join the discussion

Log in to share your thoughts and help fellow students.

Log in to comment

No comments yet. Be the first to share your thoughts!