Skip to main content

Section 1.4 Vectors

Up to this point in the chapter, we have been concerned with solving systems of linear equations, and we have used the tool of matrices to great effect. In this section we will connect linear systems to some basic geometric concepts, and this will result in alternate ways of writing linear systems which, at times, will be more helpful.

Subsection 1.4.1 The Basics of Vectors

Although we will shortly connect β€œvectors” to geometric notions, at the beginning a vector will be strictly an algebraic object.

Definition 1.4.1.

An \(n\)-dimensional vector over \(\rr\) is an ordered list of \(n\) real numbers. We will adopt the convention that, unless stated otherwise, vectors are column vectors written in this form:
\begin{equation*} \bfv = \begin{bmatrix} v_1 \\ v_2 \\ \vdots \\ v_n \end{bmatrix}\text{,} \end{equation*}
where \(v_i \in \rr\) for all \(i\text{.}\) (Column vectors are therefore matrices with a single column.) The set of all \(n\)-dimensional vectors over \(\rr\) is denoted \(\rr^n\text{.}\)

Note 1.4.2.

We say that two vectors \(\bfu\) and \(\bfv\) in \(\rr^n\) are equal if \(u_i=v_i\) for each \(i=1,\ldots,n\text{.}\) This means that an equation involving vectors in \(\rr^n\) captures the same information as \(n\) equations involving real numbers.
As we have said, vectors should be thought of first as algebraic objects, and there are several ways to combine these objects.

Definition 1.4.3.

We can combine and modify vectors through addition and a form of multiplication. We will describe the multiplication first.
Let \(\bfv \in \rr^n\) have the form
\begin{equation*} \bfv = \left[ \begin{array}{c} v_1 \\ v_2 \\ \vdots \\ v_n \end{array} \right]\text{,} \end{equation*}
and let \(c \in \rr\text{.}\) Then the scalar multiple of \(\bfv\) by \(c\) is the vector \(c\bfv\) in \(\rr^n\) obtained by multiplying each entry of \(\bfv\) by \(c\text{;}\) that is,
\begin{equation*} c\bfv = \left[ \begin{array}{c} cv_1 \\ cv_2 \\ \vdots \\ cv_n \end{array} \right]\text{.} \end{equation*}
In this context, we will often refer to real numbers as scalars.
If \(\bfu\) and \(\bfv\) are vectors in \(\rr^n\) with the form
\begin{equation*} \bfu = \left[ \begin{array}{@{}c@{}} u_1 \\ u_2 \\ \vdots \\ u_n \end{array} \right] \hspace{.3in} \text{and} \hspace{.3in} \bfv = \left[ \begin{array}{c} v_1 \\ v_2 \\ \vdots \\ v_n \end{array} \right]\text{,} \end{equation*}
then the sum of \(\bfu\) and \(\bfv\) is the vector \(\bfu + \bfv\) in \(\rr^n\) obtained by adding the corresponding entries in \(\bfu\) and \(\bfv\text{.}\) That is,
\begin{equation*} \bfu+\bfv = \left[ \begin{array}{c} u_1+v_1 \\ u_2+v_2 \\ \vdots \\ u_n+v_n \end{array} \right]\text{.} \end{equation*}

Note 1.4.4.

We will use the notation \(\mathbf{0}\) to denote the zero vectorβ€”that is, the vector in \(\rr^n\) whose entries are all \(0\text{.}\) We will also use the notation \(-\bfu\) to indicate the scalar multiple \((-1)\bfu\text{.}\)
We present some quick calculations in the following example.

Example 1.4.5.

Let \(\bfu \in \rr^2\) and let \(\bfv, \bfw \in \rr^3\) such that
\begin{equation*} \bfu = \left[\begin{array}{@{}c@{}} -3 \\ 5 \end{array}\right], \hspace{.3in} \bfv = \left[\begin{array}{@{}c@{}} 2 \\ 1 \\ -4 \end{array}\right], \hspace{.3in} \bfw = \left[\begin{array}{@{}c@{}} -6 \\ -3 \\ 3 \end{array}\right]\text{.} \end{equation*}
Then we can calculate \(2\bfu\) and \(\bfv + \bfw\) using DefinitionΒ 1.4.3:
\begin{equation*} 2\bfu = \left[\begin{array}{@{}c@{}} -6 \\ 10 \end{array}\right], \hspace{.3in} \bfv+\bfw = \left[\begin{array}{@{}c@{}} -4 \\ -2 \\ -1 \end{array}\right]\text{.} \end{equation*}
When combining vectors, we are limited to adding vectors of the same dimensionβ€”that is, vectors with the same number of entries. However, we are not limited to either addition or scalar multiplication; we can certainly do both at once. Nor are we limited to adding only two vectors at a time. The following definition provides the correct generalization.

Definition 1.4.6.

Let \(c_1, c_2, \ldots, c_m\) be real numbers and let \({\bfv_1, \bfv_2, \ldots, \bfv_m \in \rr^n}\text{.}\) Then the linear combination of the vectors \(\bfv_1, \bfv_2, \ldots, \bfv_m \) with weights \(c_1, c_2, \ldots, c_m\) is
\begin{equation*} c_1\bfv_1 + c_2\bfv_2 + \cdots + c_m\bfv_m\text{.} \end{equation*}
The span of the vectors \(\bfv_1, \bfv_2, \ldots, \bfv_m\) is the set of all possible linear combinations of \(\bfv_1, \bfv_2, \ldots, \bfv_m\) and is written \(\spn\{\bfv_1, \ldots, \bfv_m\}\text{.}\) In other words, the span is defined to be
\begin{equation*} \spn\{\bfv_1,\ldots,\bfv_m\} = \left\{ \sum_{i=1}^m c_i\bfv_i \mid c_1,\ldots,c_m \in \rr \right\}\text{.} \end{equation*}

Example 1.4.7.

Taking \(\bfv\) and \(\bfw\) from ExampleΒ 1.4.5, we can calculate the linear combination of these vectors with weights \(2\) and \(-1\text{:}\)
\begin{equation*} 2\bfv - \bfw = \left[\begin{array}{@{}c@{}} 4 \\ 2 \\ -8 \end{array}\right] + \left[\begin{array}{@{}c@{}} 6 \\ 3 \\ -3 \end{array}\right] = \left[\begin{array}{@{}c@{}} 10 \\ 5 \\ -11 \end{array}\right]\text{.} \end{equation*}

Note 1.4.8.

We have defined addition and scalar multiplication for vectors here, but these concepts also make sense for matrices. We will set the stage briefly here for a return in SectionΒ 2.3.
If we think of an \(m\times n\) matrix \(A\) in terms of its columns, then the \(n\) columns of \(A\) are all vectors in \(\rr^m\text{.}\) For two \(m\times n\) matrices \(A\) and \(B\text{,}\) we define the sum \(A + B\) in this way: column \(j\) of \(A + B\) is the sum of the two vectors in \(\rr^m\) which are the \(j\)th columns of \(A\) and \(B\text{.}\) Similarly, if \(c \in \rr\text{,}\) then we can define the scalar multiple \(cA\) in terms of its columns: column \(j\) of \(cA\) is the scalar multiple of the \(j\)th column of \(A\) by \(c\text{.}\) In this way these algebraic notions for matrices are built upon the corresponding notions for vectors.
We include two initial calculations as examples. If \(A\) and \(B\) are defined as
\begin{equation*} A = \begin{bmatrix} 2 \amp -1 \amp 0 \\ 3 \amp 4 \amp -5 \end{bmatrix}, \hspace{.3in} B = \begin{bmatrix} -3 \amp 2 \amp 7 \\ 0 \amp -4 \amp 4 \end{bmatrix}\text{,} \end{equation*}
then we have
\begin{equation*} A + B = \begin{bmatrix} -1 \amp 1 \amp 7 \\ 3 \amp 0 \amp -1 \end{bmatrix} \hspace{6pt} \text{and} \hspace{6pt} -2A = \begin{bmatrix} -4 \amp 2 \amp 0 \\ -6 \amp -8 \amp 10 \end{bmatrix}\text{.} \end{equation*}
We finally note that, as with vectors, the sum (and thus the linear combination) of two or more matrices only makes sense if all involved matrices are of the same size.
Before we explore the concept of span, we need to discuss the connection between systems of linear equations and vector equations. We saw a glimpse of this connection in NoteΒ 1.4.2, and we will develop it further here.
Let us consider the following simple linear system:
\begin{equation} \begin{aligned} 3x_1 - 8x_2 \amp =9 \\ -2x_1+5x_2 \amp =-1. \end{aligned}\tag{1.5} \end{equation}
Solving this linear system involves (as always) investigating whether there are values of \(x_1\) and \(x_2\) which satisfy both of these equations simultaneously. We will now arrive at this same question from a different angle.
Let’s consider the following three vectors in \(\rr^2\text{:}\)
\begin{equation*} \bfu = \left[\begin{array}{@{}c@{}} 3 \\ -2 \end{array}\right], \hspace{.3in} \bfv = \left[\begin{array}{@{}c@{}} -8 \\ 5 \end{array}\right], \hspace{.3in} \text{and} \hspace{.3in} \bfw = \left[\begin{array}{@{}c@{}} 9 \\ -1 \end{array}\right]\text{.} \end{equation*}
Since all of these vectors are in \(\rr^2\text{,}\) we can ask this question: Can \(\bfw\) be written as a linear combination of \(\bfu\) and \(\bfv\text{?}\) (This question is equivalent to asking if \(\bfw\) belongs to \(\spn\{\bfu,\bfv\}\text{.}\)) In other words, do there exist scalars \(x_1\) and \(x_2\) such that \(x_1\bfu + x_2\bfv = \bfw\text{?}\)
The equation in this final question is equivalent to other vector equations:
\begin{align*} x_1\bfu + x_2\bfv \amp =\bfw\\ x_1 \left[\begin{array}{@{}c@{}} 3 \\ -2 \end{array}\right] + x_2 \left[\begin{array}{@{}c@{}} -8 \\ 5 \end{array}\right] \amp = \left[\begin{array}{@{}c@{}} 9 \\ -1 \end{array}\right] \\ \left[\begin{array}{@{}c@{}} 3x_1 \\ -2 x_1 \end{array}\right] + \left[\begin{array}{@{}c@{}} -8x_2 \\ 5x_2 \end{array}\right] \amp = \left[\begin{array}{@{}c@{}} 9 \\ -1 \end{array}\right] \\ \left[\begin{array}{@{}c@{}} 3x_1 - 8x_2 \\ -2x_1 + 5x_2 \end{array}\right] \amp = \left[\begin{array}{@{}c@{}} 9 \\ -1 \end{array}\right] \text{.} \end{align*}
Because of NoteΒ 1.4.2, this last vector equation is equivalent to the linear system in (1.5).

Example 1.4.9.

Consider the following vectors in \(\rr^3\text{:}\)
\begin{equation*} \bfv_1 = \left[\begin{array}{@{}c@{}} 0 \\ 2 \\ -1 \end{array}\right], \hspace{.3in} \bfv_2 = \left[\begin{array}{@{}c@{}} 3 \\ -2 \\ 4 \end{array}\right], \hspace{.3in} \text{and} \hspace{.3in} \bfv_3 = \left[\begin{array}{@{}c@{}} 5 \\ -3 \\ 1 \end{array}\right]\text{.} \end{equation*}
Is \(\bfv_3\) in \(\spn\{\bfv_1,\bfv_2\}\text{?}\)
We have written this question in terms of a vector equation, but by the previous discussion we should be able to translate this question to a more familiar one about solutions to linear systems and answer the question using AlgorithmΒ 1.3.8.
The question about vectors is the same as asking if this linear system is consistent:
\begin{align*} 3x_2 \amp =5\\ 2x_1-2x_2 \amp =-3\\ -x_1+4x_2 \amp =1\text{.} \end{align*}
The augmented matrix for this system is
\begin{equation*} \left[\begin{array}{@{}cc|c@{}} 0 \amp 3 \amp 5 \\ 2 \amp -2 \amp -3 \\ -1 \amp 4 \amp 1 \end{array}\right]\text{,} \end{equation*}
and the RREF of this matrix is
\begin{equation*} \left[\begin{array}{@{}cc|c@{}} 1 \amp 0 \amp 0 \\ 0 \amp 1 \amp 0 \\ 0 \amp 0 \amp 1 \end{array}\right]\text{.} \end{equation*}
Since there is a pivot in the final column of this matrix, we conclude (by invoking TheoremΒ 1.3.5) that the linear system is inconsistent. This means that the answer to the original question is no, \(\bfv_3\) is not in \(\spn\{\bfv_1,\bfv_2\}\text{.}\)
ExampleΒ 1.4.9 illustrates a general workflow for questions like this. There is no need to explicitly write out the intermediate step involving linear systems; instead, we can form a matrix using the given vectors as the appropriate columns, row reduce the matrix, and answer the question.
Combining vectors in \(\rr^n\) is already (or soon will be) fairly natural for readers of this chapter. Under the operations of scalar multiplication and addition, vectors in \(\rr^n\) have some useful properties, which we record in the following fact. We will not spend time with these properties now, but we will look at them intently in SectionΒ 2.3. These properties can all be verified using the corresponding properties of addition and multiplication of real numbers. (And the fact that real numbers have these properties is essential!)
Thinking about linear systems through the lens of vectors also brings some structure to the solutions to consistent linear systems. When a linear system is consistent and the solution is unique, we have recorded this in terms of the variables involved. For example, we recorded the solution to the linear system in ExampleΒ 1.3.9 as \(x = -1/9\text{,}\) \(y = 4/3\text{,}\) and \(z = 2/9\text{.}\) However, if we think of these variables as forming a vector in \(\rr^3\text{,}\) then we can record the solution this way:
\begin{equation*} \bfx = \begin{bmatrix} x \\ y \\ z \end{bmatrix} = \begin{bmatrix} -1/9 \\ 4/3 \\ 2/9 \end{bmatrix}\text{.} \end{equation*}
Similarly, when a consistent system does not have a unique solution, we can again use vector notation. (This would replace the parametric description of the solution set we presented in ExampleΒ 1.3.4.) In ExampleΒ 1.3.4 we considered such a linear system. The solution set can now be written this way:
\begin{equation*} \bfx = \begin{bmatrix} x_1 \\ x_2 \\ x_3 \end{bmatrix} = \begin{bmatrix} 5 + 3x_3 \\ 7 - 2x_3 \\ x_3 \end{bmatrix} = \begin{bmatrix} 5 \\ 7 \\ 0 \end{bmatrix} + x_3 \begin{bmatrix} 3 \\ -2 \\ 1 \end{bmatrix}\text{.} \end{equation*}
If we label the vectors \(\bfv\) and \(\bfw\) as
\begin{equation*} \bfv = \begin{bmatrix} 5 \\ 7 \\ 0 \end{bmatrix} \hspace{6pt} \text{and} \hspace{6pt} \bfw = \begin{bmatrix} 3 \\ -2 \\ 1 \end{bmatrix}\text{,} \end{equation*}
then all solutions to this system can be written as \(\bfv + t\bfw\text{,}\) where \(t\) can be any real number. As we learn more about the geometric interpretations of the solutions to linear systems, this phrasing in terms of vectors will be useful.

Subsection 1.4.2 Vectors and Geometry

Before we leave this chapter, we need to introduce the connection between vectors and geometry. Readers who have taken multivariable calculus are likely aware of some of these concepts. For the sake of simplicity, we will restrict most of our discussion (and all of our illustrations) to \(\rr^2\) in this section.
We will visualize a vector \(\bfv = \left[\begin{array}{@{}c@{}} a \\ b \end{array}\right]\) by identifying it with the point \((a,b)\) in the plane. We will draw an arrow from the origin to \((a,b)\) to aid this visualization. So, for example, the vectors \(\bfu = \left[\begin{array}{@{}c@{}} 1 \\ -2 \end{array}\right]\) and \(\bfv = \left[\begin{array}{@{}c@{}} -3 \\ 1 \end{array}\right]\) would be visualized in the following picture.
Graph of two vectors on coordinate axes. Both vectors begin at the origin ending at (1,-2) and (-3,1). See long description.
The graph of two vectors plotted on coordinate axes. The horizontal axis ranges from \(-3\) to \(3\) and the vertical axis ranges from \(-2\) to \(2\text{.}\) The vector \(\bfv\) is drawn in red and begins at the origin extending to \((-3,1)\text{.}\) The vector \(\bfu\) is drawn in blue and begins at the origin extending to the point \((1,-2)\text{.}\)
Figure 1.4.11. Illustration of two vectors in the plane
Scalar multiplication of a vector can be seen as stretching or contracting the vector, if the scalar is positive. If the scalar is negative, the vector will be pointing in the opposite direction, then stretched or contracted. Here is an example using the vector \(\bfv\) previously defined.
Graph of three vectors on axes, starting at the origin ending at (-3,1), (-1.5,0.5), and (3,-1). See long description.
The graph of three vectors plotted on coordinate axes. The horizontal axis ranges from \(-3\) to \(3\) and the vertical axis ranges from \(-2\) to \(2\text{.}\) The vector \(\bfv\) is drawn in red and begins at the origin extending to \((-3,1)\text{.}\) The vector \(\frac{1}{2}\bfv\) is drawn in blue and begins at the origin extending to the point \((-1.5,0.5)\text{.}\) The vector \(-\bfv\) is drawn in green and begins at the origin extending to the point \((3,-1)\text{.}\)
Figure 1.4.12. Illustration of scalar multiplication
Addition of vectors is also easy to visualize. To add two vectors, move the second vector from the origin so that its beginning coincides with the end of the first vector. The vector sum can be represented by the arrow from the origin to the end of this relocated second vector. (The dashed arrow in the following diagram is the relocated vector \(\bfv\text{.}\))
The graph of four vectors; three vectors go from (0,0) to (-3,1), (1,-2), and (-2,-1). See long description.
The graph of four vectors plotted on coordinate axes. The horizontal axis ranges from \(-3\) to \(3\) and the vertical axis ranges from \(-2\) to \(2\text{.}\) The vector \(\bfv\) is drawn in red and begins at the origin extending to \((-3,1)\text{.}\) The vector \(\bfu\) is drawn in blue and begins at the origin extending to the point \((1,-2)\text{.}\) A vector drawn in dashed red extends from \((1,-2)\) to \((-2,-1)\text{;}\) this vector is labeled \(\bfv\text{.}\) The vector \(\bfu + \bfv\) is drawn in black begins at the origin and extends to \((-2,-1)\text{.}\)
Figure 1.4.13. Illustration of vector addition
We can put these previous two ideas together to explain the way to visualize linear combinations (and spans). Let’s consider the vectors \(\bfu\) and \(\bfv\) as previously defined, and we will also define \(\bfw\) as \(\bfw = \left[\begin{array}{@{}c@{}} 2 \\ 2 \end{array}\right]\text{.}\)
When we ask whether \(\bfw\) is in \(\spn\{\bfu,\bfv\}\text{,}\) this is the same as asking whether we can form \(\bfw\) as a linear combination of \(\bfu\) and \(\bfv\text{.}\) We answer this question by forming a matrix with the appropriate columns and row reducing. We find the matrix
\begin{equation*} \left[\begin{array}{@{}cc|c@{}} \bfu \amp \bfv \amp \bfw \end{array}\right] = \left[\begin{array}{@{}cc|c@{}} 1 \amp -3 \amp 2 \\ -2 \amp 1 \amp 2 \end{array}\right]\text{,} \end{equation*}
and the RREF of this matrix is
\begin{equation*} \left[\begin{array}{@{}cc|c@{}} 1 \amp 0 \amp -1.6 \\ 0 \amp 1 \amp -1.2 \end{array}\right]\text{.} \end{equation*}
This tells us that \(\bfw\) is in the span of \(\bfu\) and \(\bfv\text{,}\) and that
\begin{equation*} \bfw = -1.6\bfu - 1.2\bfv\text{.} \end{equation*}
Here is the picture illustrating this.
The graph of four vectors; three vectors go from (0,0) to (-1.6,3.2), (2,2), and (3.6,-1.2). See long description.
The graph of four vectors plotted on coordinate axes. The horizontal axis ranges from \(-3\) to \(3\) and the vertical axis ranges from \(-1\) to \(3\text{.}\) The vector \(-1.2\bfv\) is drawn in red and begins at the origin extending to \((3.6,-1.2)\text{.}\) The vector \(-1.6\bfu\) is drawn in blue and begins at the origin extending to the point \((-1.6,3.2)\text{.}\) A vector drawn in dashed red extends from \((-1.6,3.2)\) to \((2,2)\text{;}\) this vector is labeled \(-1.2\bfv\text{.}\) The vector \(\bfw\) is drawn in black begins at the origin and extends to \((2,2)\text{.}\)
Figure 1.4.14. Illustration of a linear combination
The reader may be able to see that no matter what vector \(\bfw\) in \(\rr^2\) was chosen in this last instance, that vector would be in \(\spn\{\bfu,\bfv\}\text{.}\) (This means that \(\spn\{\bfu,\bfv\}=\rr^2\text{.}\)) This has everything to do with the relationship between \(\bfu\) and \(\bfv\text{.}\)
We will discuss this more carefully in ChapterΒ 5, but this brief comment will suffice for now. As long as \(\bfu \neq \mathbf{0}\) in \(\rr^2\text{,}\) then \(\spn\{\bfu\}\) is a line through the origin. (Remember that the span in this case consists of all multiples of \(\bfu\text{.}\)) Similarly, as long as neither \(\bfu\) nor \(\bfv\) is a multiple of the other vector, then \(\spn\{\bfu,\bfv\}\) is all of \(\rr^2\text{.}\) (If we were talking about vectors in \(\rr^3\) instead of \(\rr^2\) this span would be a plane through the origin.)

Reading Questions 1.4.3 Reading Questions

1.

Let \(\bfu\) and \(\bfv\) be the following vectors:
\begin{equation*} \bfu = \left[\begin{array}{@{}c@{}} 2 \\ -7 \\ 4 \end{array}\right], \hspace{.3in} \bfv = \left[\begin{array}{@{}c@{}} 3 \\ 1 \\ -1 \end{array}\right]\text{.} \end{equation*}
Calculate each of the following vectors.
  1. \(\displaystyle -2\bfu\)
  2. \(\displaystyle \bfu - \bfv\)
  3. \(\displaystyle 3\bfu - 4\bfv\)

2.

Let \(\bfu\text{,}\) \(\bfv\text{,}\) and \(\bfw\) be the following vectors:
\begin{equation*} \bfu = \left[\begin{array}{@{}c@{}} 2 \\ 0 \\ -1 \end{array}\right], \hspace{.3in} \bfv = \left[\begin{array}{@{}c@{}} -1 \\ 2 \\ 3 \end{array}\right], \hspace{.3in} \bfw = \left[\begin{array}{@{}c@{}} 1 \\ 1 \\ 5 \end{array}\right]\text{.} \end{equation*}
Is the vector
\begin{equation*} \left[\begin{array}{@{}c@{}} 7 \\ -1 \\ 8 \end{array}\right] \end{equation*}
in \(\mathrm{Span}\{\bfu,\bfv,\bfw\}\text{?}\) Explain your answer using techniques from this section. (See especially ExampleΒ 1.4.9.)

Exercises 1.4.4 Exercises

1.

Write a linear system that is equivalent to the following vector equation:
\begin{equation*} x\begin{bmatrix} 2 \\ 1 \\ -2 \end{bmatrix} + y\begin{bmatrix} 0 \\ -3 \\ 1 \end{bmatrix} = \begin{bmatrix} 7 \\ -1 \\ -1 \end{bmatrix}. \end{equation*}
Answer.
Here is the linear system:
\begin{align*} 2x \amp =7\\ x-3y \amp =-1\\ -2x+y \amp =-1\text{.} \end{align*}

2.

Write a vector equation that is equivalent to the following linear system:
\begin{align*} 2x - 5z \amp = 9\\ x + 3y + z \amp = -1\\ -y - 7z \amp = 0\text{.} \end{align*}
Answer.
Here is the vector equation:
\begin{equation*} x \begin{bmatrix} 2 \\ 1 \\ 0 \end{bmatrix} + y \begin{bmatrix} 0 \\ 3 \\ -1 \end{bmatrix} + z \begin{bmatrix} -5 \\ 1 \\ -7 \end{bmatrix} = \begin{bmatrix} 9 \\ -1 \\ 0 \end{bmatrix}\text{.} \end{equation*}

3.

Let \(\bfu\) and \(\bfv\) be the following vectors:
\begin{equation*} \bfu = \begin{bmatrix} -1 \\ 2 \\ 4 \end{bmatrix}, \hspace{.2in} \bfv = \begin{bmatrix} 3 \\ 1 \\ -2 \end{bmatrix}\text{.} \end{equation*}
List five vectors in \(\mathrm{Span}\{\bfu, \bfv\}\text{.}\) For each vector, write down the specific linear combination of \(\bfu\) and \(\bfv\) used to generate the vector.
Answer.
There are an infinite number of correct answers! Three vectors that are in the span are \(\bfu = 1\bfu + 0\bfv\text{,}\) \(\bfv = 0\bfu + 1\bfv\text{,}\) and \(\bfo = 0\bfu + 0\bfv\text{.}\) Here are two additional vectors in the span:
\begin{equation*} \begin{bmatrix} 2 \\ 3 \\ 2 \end{bmatrix} = \bfu + \bfv, \hspace{6pt} \text{and} \hspace{6pt} \begin{bmatrix} -4 \\ 1 \\ 6 \end{bmatrix} = \bfu - \bfv\text{.} \end{equation*}

4.

Describe all possible ways of writing \(\begin{bmatrix} -1 \\ 1 \end{bmatrix}\) as a linear combination of \(\begin{bmatrix} 2 \\ 3 \end{bmatrix}\text{,}\) \(\begin{bmatrix} -1 \\ 0 \end{bmatrix}\text{,}\) and \(\begin{bmatrix} 4 \\ 1 \end{bmatrix}\text{.}\)
Answer.
If \(\bfx = \begin{bmatrix} -1 \\ 1 \end{bmatrix}\text{,}\) \(\bfu = \begin{bmatrix} 2 \\ 3 \end{bmatrix}\text{,}\) \(\bfv = \begin{bmatrix} -1 \\ 0 \end{bmatrix}\text{,}\) and \(\bfw = \begin{bmatrix} 4 \\ 1 \end{bmatrix}\text{,}\) then \(\bfx\) can be written as
\begin{equation*} \bfx = a \bfu + b \bfv + c \bfw\text{,} \end{equation*}
where \(a = \frac{1}{3} - \frac{1}{3}c\text{,}\) \(b = \frac{5}{3} + \frac{10}{3}c\text{,}\) and \(c\) can be any real number.

5.

For each of the following, determine whether \(\mathbf{b}\) is a linear combination of \(\bfu\text{,}\) \(\bfv\text{,}\) and \(\bfw\text{.}\) Explain your answer.
  1. \begin{equation*} \bfu = \begin{bmatrix} -2 \\ -4 \\ 1 \end{bmatrix}, \hspace{.15in} \bfv = \begin{bmatrix} -3 \\ -3 \\ 2 \end{bmatrix}, \hspace{.15in} \bfw = \begin{bmatrix} -4 \\ 0 \\ -4 \end{bmatrix}, \hspace{.15in} \mathbf{b} = \begin{bmatrix} 1 \\ 0 \\ 1.5 \end{bmatrix}\text{.} \end{equation*}
  2. \begin{equation*} \bfu = \begin{bmatrix} 2 \\ 3 \\ -1 \end{bmatrix}, \hspace{.15in} \bfv = \begin{bmatrix} 5 \\ -1 \\ -2 \end{bmatrix}, \hspace{.15in} \bfw = \begin{bmatrix} 7 \\ 2 \\ -3 \end{bmatrix}, \hspace{.15in} \mathbf{b} = \begin{bmatrix} 10 \\ -1 \\ 4 \end{bmatrix} \end{equation*}

6.

Let \(\bfu\text{,}\) \(\bfv\text{,}\) and \(\mathbf{b}\) be the following vectors:
\begin{equation*} \bfu = \begin{bmatrix} 1 \\ 3 \\ -2 \end{bmatrix}, \hspace{.2in} \bfv = \begin{bmatrix} 2 \\ -2 \\ -6 \end{bmatrix}, \hspace{.2in} \mathbf{b} = \begin{bmatrix} 5 \\ -1 \\ h \end{bmatrix}\text{.} \end{equation*}
For what value(s) of \(h\) is \(\mathbf{b}\) in the plane spanned by \(\bfu\) and \(\bfv\text{?}\) Explain your answer.

7.

Let \(\bfu\text{,}\) \(\bfv\text{,}\) and \(\mathbf{b}\) be the following vectors:
\begin{equation*} \bfu = \begin{bmatrix} 2 \\ -1 \\ 1 \end{bmatrix}, \hspace{.2in} \bfv = \begin{bmatrix} 1 \\ 3 \\ 2 \end{bmatrix}, \hspace{.2in} \mathbf{b} = \begin{bmatrix} b_1 \\ b_2 \\ b_3 \end{bmatrix}\text{.} \end{equation*}
Under what conditions is \(\mathbf{b}\) in \(\mathrm{Span}\{\bfu, \bfv\}\text{?}\) This will be an equation (or equations) satisfied by the \(b_i\text{.}\) Explain your answer.
Answer.
The vector \(\mathbf{b}\) is in \(\mathrm{Span}\{\bfu, \bfv\}\) as long as the following equation is satisfied:
\begin{equation*} b_1 + \tfrac{3}{5}b_2 - \tfrac{7}{5}b_3 = 0\text{.} \end{equation*}

Writing Exercises

8.
Let \(\bfu = \begin{bmatrix} 2 \\ 3 \end{bmatrix}\) and \(\bfv = \begin{bmatrix} -1 \\ 4 \end{bmatrix}\text{.}\) Show that \(\begin{bmatrix} h \\ k \end{bmatrix}\) is in \(\mathrm{Span}\{\bfu, \bfv\}\) for all \(h\) and \(k\text{.}\) Explain your answer.
9.
Two vectors \(\bfu\) and \(\bfv\) in \(\rr^n\) are called collinear if \(\bfu = k\bfv\) or \(\bfv= k \bfu\) for some \(k \in \rr\text{.}\) Show that the span of any two nonzero vectors in \(\rr^2\) which are not collinear is all of \(\rr^2\text{.}\)
Hint.
One might try to prove that \(\bfu = \begin{bmatrix} a \\ c \end{bmatrix}\) and \(\bfv = \begin{bmatrix} b \\ d \end{bmatrix}\) are collinear if and only if \(ad-bc = 0\text{.}\) Then an exercise from section 1.3 can be invoked.
10.
Give an example of three vectors \(\bfu\text{,}\) \(\bfv\text{,}\) \(\bfw\) in \(\rr^3\) such that no two of them are collinear but \(\mathrm{Span}\{\bfu, \bfv, \bfw\} \neq \rr^3\text{.}\) Explain why your example works.
11.
State criteria on vectors \(\bfv_1, \bfv_2, \ldots, \bfv_n\) in \(\rr^3\) such that \({\mathrm{Span}\{\bfv_1,\ldots,\bfv_n\} = \rr^3}\text{.}\) Explain your answer.
12.
Prove property 5 from FactΒ 1.4.10. Note which properties of the real numbers you use in this proof.
Solution.
We must prove that for all real numbers \(c\) and all \(\bfu\) and \(\bfv\) in \(\rr^n\) we have
\begin{equation*} c(\bfu + \bfv) = c\bfu + c\bfv\text{.} \end{equation*}
Let \(\bfu\) and \(\bfv\) be denoted in the following way:
\begin{equation*} \bfu = \begin{bmatrix} u_1 \\ \vdots \\ u_n \end{bmatrix} \hspace{6pt} \text{and} \hspace{6pt} \bfv = \begin{bmatrix} v_1 \\ \vdots \\ v_n \end{bmatrix}\text{.} \end{equation*}
Then we have
\begin{equation*} c(\bfu + \bfv) = c \begin{bmatrix} u_1 + v_1 \\ \vdots \\ u_n + v_n \end{bmatrix} = \begin{bmatrix} c(u_1 + v_1) \\ \vdots \\ c(u_n + v_n) \end{bmatrix}\text{.} \end{equation*}
Now, since the distributive law holds for real numbers, we have \(c(u_i + v_i) = cu_i + cv_i\) for all \(i = 1, \ldots, n\text{.}\) This means that
\begin{align*} c(\bfu + \bfv) \amp = \begin{bmatrix} cu_1 + cv_1 \\ \vdots \\ cu_n + cv_n \end{bmatrix} = \begin{bmatrix} cu_1 \\ \vdots \\ cu_n \end{bmatrix} + \begin{bmatrix} cv_1 \\ \vdots \\ cv_n \end{bmatrix}\\ \amp = c\begin{bmatrix} u_1 \\ \vdots \\ u_n \end{bmatrix} + c \begin{bmatrix} v_1 \\ \vdots \\ v_n \end{bmatrix} = c\bfu + c\bfv \text{.} \end{align*}
This completes the proof.