Linear Algebra: Vector Addition and Scaling

Vector Addition Definition

Vector addition is simply adding two vectors together to generate a third vector. For example, a + b = c if we say a = (a1,a2,,an),b = (b1,b2,,bn) then a + b = (a1 + b1,a2 + b2,,an + bn).

Vector Addition Visually

Vector addition can be visualed in 2-d space using the head-to-tail technique. Head-to-tail is simply putting the tail of the second vector on the head of the first vector. Let’s say we have a = (1,3),b = (3,4). We know that the resulting vector is (1 + 3,3 + 4) = (4,7).


PIC (a) (1 + 3, 3 + 4) = (4, 7)

PIC (b) (1 + 3, 3 + 4) = (4, 7) Head to Tail


Vector Scaling

Vector scaling is multiplying a vector v by a constant c to get a vector scaled with c. Scaling can be done for a vector of any number of dimensions. If we have v and constant c, then v c = (v1 c,v2 c,,vn c).

Vector Scaling Visually

Visually, vector scaling will result in a larger or smaller vector pointing in the same direction if multiplied by a positive c, or a larger or smaller vector pointing in the opposite direction if multiplied by a negative c.


PIC (a) (1,3)

PIC (b) (1,3) * 3 = (3,9)

PIC (c) (1,3) * -3 = (-3,-9)