Linear Algebra

Vectors

A vector defines both a direction and magnitude. The coordinates of a vector are a pair of numbers that basically give instructions for how to get from the tail of that vector at the origin, to its tip.

  • Two vectors are the same if they have the same magnitude and direction.

  • The zero vector, denoted by a boldface 00, is the vector of zero length. Since it has no length, it is not pointing in any particular direction. There is only one vector of zero length, so we can speak of the zero vector.

To distinguish vectors from points, the convention is to write this pair of numbers vertically with square brackets around them.

Vector Addition

Given two vectors aa and bb, we form their sum a+ba+b, as follows. We translate the vector bb until its tail coincides with the head of aa. (Recall such translation does not change a vector.) Then, the directed line segment from the tail of aa to the head of bb is the vector a+ba+b.

  • Commutative: order does not matter -> a+b = b+a

  • Associative: (a+b)+c = a+(b+c)

Scalar multiplication

Scalar multiplications satisfies many of the same properties as the usual multiplication.

  1. s(a+b)=sa+sbs(a+b)=sa+sb (distributive law, form 1)

  2. (s+t)a=sa+ta(s+t)a=sa+ta (distributive law, form 2)

  3. 1a=a1a=a1

  4. (−1)a=−a(−1)a=−a(−1)

  5. 0a=00a=0

In the last formula, the zero on the left is the number 0, while the zero on the right is the vector 000, which is the unique vector whose length is zero.

If a=λba=λb�=�� for some scalar λλ�, then we say that the vectors aa� and bb� are parallel. If λλ� is negative, some people say that aa� and bb� are anti-parallel, but we will not use that language.

Last updated

Was this helpful?