Module 1: Vectors

In our course a vector will be a list of LaTeX: nn elements from a scalar field (i.e., real numbers) where LaTeX: nn is a positive natural number. It turns out that the best way to write these lists is as a column:

LaTeX: \begin{pmatrix}
1 
\end{pmatrix}, \quad \begin{pmatrix}
-1 \\ .5
\end{pmatrix}, \quad
\begin{pmatrix}
0 \\ 1 \\ 3
\end{pmatrix}, \quad
\begin{pmatrix}
 \pi \\ e \\ \sqrt{2} \\ -1000
\end{pmatrix}(1),(1.5),(013),(πe21000)

are vectors in LaTeX: \mathbb{R} ^{1} , \mathbb{R} ^{2},\mathbb{R} ^{3},R1,R2,R3, and LaTeX: \mathbb{R} ^{4}R4 respectively. The entries inside of a vector are called its components:

For example, consider the vector

LaTeX: \mathbf{x} = \begin{pmatrix}
x \\ y \\ z
\end{pmatrix}.x=(xyz).

The "name'' of the vector is LaTeX: xx. It has first component LaTeX: xx, second component LaTeX: yy, and third component LaTeX: zz. 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 LaTeX: vv or drawing a little arrow on top (LaTeX: \vec{v}v).

In summary: A vector is a list of LaTeX: nn scalar values arranged in a column. The scalar values are called the components of the vector.