Standard basis

There is another way of thinking about Euclidean vectors. It might just seem like an alternative notation, but it’s a bit more than that. It works like this: there are only three vectors (or two in two-space) that you need to describe any other vector. These are called the standard basis vectors:

i^=[1,0,0], j^=[0,1,0], k^=[0,0,1].

Say we have the vector v=[4,2,7], which is in component form. How would we express it in standard basis? Like this:

v=4i^2j^+7k^.

This way of describing vectors is useful when manipulating and simplifying vector expressions because you can just treat them as ordinary variables. You can use your algebra skills—combining like terms and so on—just as you always have. Say that, in addition to v, we have u=5j^2k^. Let’s simplify the expression 3v+4u:

3v+4u=3(4i^2j^+7k^)+4(5j^2k^)=12i^+14j^+13k^.