Column Vectors

A column vector of size n over a field K is a sequence of n scalars, written vertically:

x = [xi]n  =  [x1x2xn],wherexiK,i=1,2,,n;nN.

The set of all such vectors is denoted by Kn.  When dealing with practical problems,  K  is usually the field R  of real numbers or the field  C  of complex numbers.

The column vectors in Kn may be added: 1

[x1x2xn] + [y1y2yn] := [x1+y1x2+y2xn+yn],

and multiplied by scalars cK:

c  [x1x2xn] := [cx1cx2cxn].

In Sage it is equally simple:

Press Evaluate to see the outcome of the code. You can modify the code yourself too. See what happens if the vectors are of different size. In section Vectors and Matrices in Sage we explain how to indicate the underlying field.

The addition and scalar multiplication of column vectors in Kn consist in addition and multiplication of scalars in K.  On that basis, it’s easy to validate the following properties, which lead to the conclusion that Kn is an abelian group under addition of column vectors.

  1. The addition of column vectors is an internal operation in Kn.

  2. The addition is associative and commutative:

    (x+y)+z = x+(y+z),x+y = y+x,  x,y,zKn.
  3. The neutral element for addition is the zero column vector  θ = [000].

  4. For any  xKn,  there exists the opposite vector  (x)  such that  x+(x)=θ.

    Namely, for  x=[x1x2xn]  the opposite is  (x)=[x1x2xn].

Furthermore, since the scalar multiplication of column vectors is distributive, both over addition of scalars and over addition of vectors:

(a+b) x = ax + bx,a(x+y) = ax+ay,

and satisfies the compatibility conditions

a(bx) = (ab)x,1x = x,  a,bK,  x,y Kn,

the set  Kn  is a vector space over the field K under addition and scalar multiplication of column vectors.

Column vectors over the real field R of size two or three can be associated with geometric vectors in a plane or in the space, respectively. Namely, if  e1,e2  or  e1,e2,e3  form a basis of mutually perpendicular unit vectors, then:

x = [x1x2]v = x1e1+x2e2;

x = [x1x2x3]v = x1e1+x2e2+x3e3.

The relation    between the column and geometric vectors has the property that

if x  vandy  w,

then  x+y  v+w and c x  c v  for all  cR.

A bijective correspondence between two vector spaces over the same field (geometric vectors also form a real vector space), which preserves space operations in the above sense, is called isomorphism, and the pertinent vector spaces are said to be isomorphic.

The notion of isomorphism generalized to other algebraic structures (e.g. to algebras) will be discussed in subsequent parts of this textbook.

Experiment with Sage:

For given values  x1,x2  you will get the geometric image  v  of the vector  x=[x1x2].

1

The symbol   ":="   means   “equal by definition”.