Scalar Multiplication of Vectors

College Depth 1 in the knowledge graph I know this Set as goal
Unlocks 5503 downstream topics
vectors operations scaling

Core Idea

Scaling a vector by a scalar c multiplies each component: c(v₁, v₂, ..., vₙ) = (cv₁, cv₂, ..., cvₙ). Positive scalars scale magnitude; negative scalars reverse direction. Scalar multiplication distributes over vector addition and is associative with scalar multiplication.

Explainer

You already know that a vector in ℝⁿ is an ordered list of numbers, like v = (3, -1, 2). Scalar multiplication asks: what happens when you "scale" that vector by a number? The answer is geometrically immediate: if c = 2, the vector v doubles in length but points in the same direction. The operation is applied component-wise — cv = (2·3, 2·(−1), 2·2) = (6, −2, 4) — and the result is still in ℝⁿ, still a vector.

The effect of the scalar c on direction and magnitude is worth internalizing. When c > 1, you stretch the vector. When 0 < c < 1, you shrink it (scaling by 1/2 gives you a vector half as long). When c = 0, you get the zero vector, regardless of what v is. When c < 0, the direction reverses: c = −1 flips v to point the opposite way, and c = −2 both flips and doubles the length. The scalar acts as a "volume knob" for magnitude, with a sign switch for negative values.

The algebraic properties you are told to know — distributivity and associativity — aren't arbitrary rules; they make geometric sense. Distributing scalar multiplication over vector addition, c(u + v) = cu + cv, means "scale the sum" equals "scale each and then add." This is natural: if you double every component of a sum, you might as well double each vector first. Similarly, (cd)v = c(dv) just says scaling by cd is the same as scaling by d first, then by c — multiplication of scalars commutes with the sequential application.

These properties are why scalar multiplication is the foundation of linear combinations and ultimately the entire structure of linear algebra. Once you can add vectors and scale them, you can build any linear combination α₁v₁ + α₂v₂ + ··· + αₖvₖ. The span of a set of vectors — all possible linear combinations of those vectors — is defined entirely through vector addition and scalar multiplication. This is why understanding scalar multiplication concretely, not just algebraically, is the prerequisite for thinking about independence and bases.

Practice Questions 5 questions

Prerequisite Chain

Vectors in R^nScalar Multiplication of Vectors

Longest path: 2 steps · 1 total prerequisite topics

Prerequisites (1)

Leads To (2)