Module 1: Vectors
In our course a vector will be a list of n elements from a scalar field (i.e., real numbers) where
n is a positive natural number. It turns out that the best way to write these lists is as a column:
(1),(−1.5),(013),(πe√2−1000)
are vectors in R1,R2,R3, and
R4 respectively. The entries inside of a vector are called its components:
For example, consider the vector
x=(xyz).
The "name'' of the vector is x. It has first component
x, second component
y, and third component
z. Note that it is common to use similar variable names for vectors and its components. In some texts it can be hard to distinguish between them and it is up to the reader to understand the difference from context. In our class we will distinguish vectors by using bold print
v or drawing a little arrow on top (
→v).
In summary: A vector is a list of n scalar values arranged in a column. The scalar values are called the components of the vector.