🧭

Abstract Linear Algebra Overview

Nov 16, 2025

Overview

This lecture introduces abstract linear algebra, emphasizing fields, vector spaces, and key examples. It reviews complex numbers, formal vector space axioms, examples, and proves foundational propositions.

Course Context and Motivation

  • Course re-recorded to complete playlist; includes link to free Axler textbook and problem sets.
  • Focus: deep conceptual and geometric understanding to enable broad applications.
  • Linear algebra underpins data analysis, rankings, PageRank, and is used across mathematics research.

Fields: Definitions and Examples

  • Idea: A field is a set with addition and multiplication; every nonzero element has a multiplicative inverse.
  • Key fields: real numbers R, complex numbers C, rational numbers Q, integers mod p (prime p), including Z2.
  • Non-examples: integers Z, Z6 (lack multiplicative inverses for all nonzero elements).
  • Notation: Use F for a base (scalar) field; elements of F are scalars.

Complex Numbers: Structure and Operations

  • Set: C = {a + bi | a, b ∈ R}.
  • Addition: (a + bi) + (c + di) = (a + c) + (b + d)i.
  • Multiplication: (a + bi)(c + di) = (ac − bd) + (ad + bc)i, using i^2 = −1.
  • Multiplicative inverse: For a + bi ≠ 0, (a + bi)^{-1} = (a − bi)/(a^2 + b^2).

Coordinate Spaces and Operations

  • n-dimensional coordinate space over F: F^n = {(x1, …, xn) | xi ∈ F}.
  • Addition: coordinate-wise: (x1,…,xn) + (y1,…,yn) = (x1 + y1,…, xn + yn).
  • Scalar multiplication: λ(x1,…,xn) = (λx1,…,λxn).
  • Distinction: Scalar multiplication (scalar·vector) differs from field multiplication (scalar·scalar).

Abstract Vector Spaces: Axioms and Intuition

  • A vector space over F is a set V with:
    • Vector addition: V × V → V, (u, v) ↦ u + v.
    • Scalar multiplication: F × V → V, (λ, v) ↦ λv.
  • Seven axioms:
    • Addition: commutative, associative; existence of zero vector; additive inverses.
    • Scalar multiplication: associativity with field product; 1·v = v.
    • Distributivity: over vector addition and over field addition.
  • Elements of V are called vectors (or points).
  • Note: “Magnitude and direction” definition does not apply in general fields; keep object types clear (scalars vs vectors).

Key Examples of Vector Spaces

  • Coordinate spaces: F^n (finite-dimensional; over R or C called Euclidean spaces).
  • Infinite sequences: F^∞ = {(x1, x2, x3, …) | xi ∈ F}; addition and scalar multiplication component-wise; infinite-dimensional.
  • Polynomials: P(R) = all polynomials in one variable x with real coefficients; standard polynomial addition and scalar multiplication.
  • Function spaces: F^S = {functions f: S → F}; addition (f + g)(x) = f(x) + g(x); scalar (λf)(x) = λ·f(x).

Structured Summary of Core Concepts

ConceptSet/DefinitionOperationsNotes
Field (F)Set with +, ·Add, multiply; inverses for nonzeroExamples: R, C, Q, Zp
Complex numbers (C){a + bi}+, · as defined; i^2 = −1Inverse: (a − bi)/(a^2 + b^2)
Coordinate space (F^n)n-tuples over FCoord-wise +; scalar·vectorFinite-dimensional
Infinite sequences (F^∞)Infinite tuplesCoord-wise +; scalar·vectorInfinite-dimensional
Polynomials (P(R))Real-coefficient polynomials in xStandard polynomial +, scalarVectors are polynomials
Functions (F^S)Functions S → F(f+g)(x), (λf)(x)Pointwise operations

First Propositions and Proof Ideas

  • Uniqueness of additive identity:
    • If 0 and 0′ both identities, then 0 + 0′ = 0′ and = 0 ⇒ 0 = 0′.
  • Uniqueness of additive inverse:
    • If w and w′ satisfy v + w = 0 and v + w′ = 0, associativity gives w = w′.
  • Zero scalar and zero vector interactions:
    • For all v ∈ V: 0·v = 0 (distribute 0 = 0 + 0 and cancel).
    • For all a ∈ F: a·0 = 0 (distribute over 0 = 0 + 0 and cancel).

Key Terms & Definitions

  • Field (F): Set with addition and multiplication; every nonzero has multiplicative inverse.
  • Scalar: Element of the field F.
  • Vector space (over F): Set V with vector addition and scalar multiplication satisfying seven axioms.
  • Zero vector (0): Additive identity in V.
  • Additive inverse (−v): Unique vector with v + (−v) = 0.
  • Euclidean space: F^n with F = R or C.

Action Items / Next Steps

  • Practice distinguishing scalars vs vectors in expressions; track object types.
  • Verify vector space axioms for each example (F^n, F^∞, P(R), F^S).
  • Exercise: Prove for all v ∈ V, (−1)·v = −v using distributivity and axioms.
  • Continue with Axler 1.A for complex numbers and proceed to vector space definitions.