The operations introduced above share a unifying structure but vary widely in what they take in, what they return, and what they reveal about the underlying geometry. The table below collects every operation in this section, noting its inputs and output types, the formula, and its geometric meaning. Reading across each row situates a single operation in full; reading down each column compares operations on the same attribute — and each operation's name links to the dedicated page where it is developed in detail.
| Operation |
Inputs |
Output |
Formula |
Geometric meaning |
| Vector addition |
two vectors in ℝⁿ |
vector in ℝⁿ |
v + w = (v₁ + w₁, …, vₙ + wₙ) |
tip-to-tail construction; diagonal of the parallelogram |
| Vector subtraction |
two vectors in ℝⁿ |
vector in ℝⁿ |
v − w = v + (−w) |
runs from the tip of w to the tip of v |
| Scalar multiplication |
scalar c and a vector |
vector in ℝⁿ |
cv = (cv₁, …, cvₙ) |
stretches or compresses; reverses direction when c < 0 |
| Magnitude (norm) |
one vector in ℝⁿ |
non-negative scalar |
‖v‖ = √(v₁² + … + vₙ²) |
length of the arrow; distance from origin |
| Dot product |
two vectors in ℝⁿ |
scalar |
v · w = Σ vᵢwᵢ = ‖v‖‖w‖ cos θ |
measures directional alignment; equals 0 iff vectors are orthogonal |
| Cross product |
two vectors in ℝ³ (only) |
vector in ℝ³ |
v × w = (v₂w₃ − v₃w₂, v₃w₁ − v₁w₃, v₁w₂ − v₂w₁) |
perpendicular to both inputs; magnitude equals parallelogram area |
| Linear combination |
k vectors and k scalars |
vector |
c₁v₁ + c₂v₂ + ⋯ + cₖvₖ |
unifying framework; the set of all such combinations is the span |