Section VO Vector Operations
Subsection CV Column Vectors
Definition VSCV. Vector Space of Column Vectors.
The vector space Cm is the set of all column vectors (Definition CV) of size m with entries from the set of complex numbers, C.
Sage VSCV. Vector Spaces of Column Vectors.
It is possible to construct vector spaces several ways in Sage. For now, we will show you two basic ways. Remember that while our theory is all developed over the complex numbers, \(\complexes\text{,}\) it is better to initially illustrate these ideas in Sage using the rationals, QQ
.
To create a vector space, we use the VectorSpace()
constructor, which requires the name of the number system for the entries and the number of entries in each vector. We can display some information about the vector space, and with tab-completion you can see what functions are available. We will not do too much with these methods immediately, but instead learn about them as we progress through the theory.
Notice that the word βdimensionβ is used to refer to the number of entries in a vector contained in the vector space, whereas we have used the word βdegreeβ before. If the way you use Sage provides tab-completion, then press the TAB
key while in the next cell to see the range of methods you can use on a vector space.
We can easily create βrandomβ elements of any vector space, much as we did earlier for the kernel of a matrix. Try executing the next compute cell several times.
Vector spaces are fundamental objects in Sage and in mathematics, and Sage has a nice compact way to create them, mimicking the notation we use when working on paper. While the next example includes the Sage version of the complex numbers, remember to be sure to do all your calculations with the rationals, QQ
.
Sage can determine if two vector spaces are the same. Notice that we use two equals sign to test equality, since we use a single equals sign to make assignments.
Subsection VEASM Vector Equality, Addition, Scalar Multiplication
We start our study of this set by first defining what it means for two vectors to be the same.Definition CVE. Column Vector Equality.
Suppose that u,vβCm. Then u and v are equal, written u=v if
for all 1β€iβ€m.
Example VESE. Vector equality for a system of equations.
Consider the system of linear equations in Archetype B,
Note the use of three equals signs β each indicates an equality of numbers (the linear expressions are numbers when we evaluate them with fixed values of the variable quantities). Now write the vector equality,
By Definition CVE, this single equality (of two column vectors) translates into three simultaneous equalities of numbers that form the system of equations. So with this new notion of vector equality we can become less reliant on referring to systems of simultaneous equations. There is more to vector equality than just this, but this is a good example for starters and we will develop it further.
Definition CVA. Column Vector Addition.
Suppose that u,vβCm. The sum of u and v is the vector u+v defined by
for 1β€iβ€m.
Example VA. Addition of two vectors in C4.
For vectors \(\vect{u},\,\vect{v}\text{,}\) their sum is
Definition CVSM. Column Vector Scalar Multiplication.
Suppose uβCm and Ξ±βC, then the scalar multiple of u by Ξ± is the vector Ξ±u defined by
for 1β€iβ€m.
Example CVSM. Scalar multiplication in C5.
For \(\vect{u}\) and \(\alpha=6\) we have
Sage VO. Vector Operations.
Sage can easily perform the two basic operations with vectors, vector addition, +
, and scalar vector multiplication, *
. Notice that Sage is not confused by an ambiguity due to multiple meanings for the symbols +
and *
β for example, Sage knows that 3 + 12
is different than the vector additions below.
Subsection VSP Vector Space Properties
With definitions of vector addition and scalar multiplication we can state, and prove, several properties of each operation, and some properties that involve their interplay. We now collect ten of them here for later reference.Theorem VSPCV. Vector Space Properties of Column Vectors.
Suppose that Cm is the set of column vectors of size m (Definition VSCV) with addition and scalar multiplication as defined in Definition CVA and Definition CVSM. Then
- ACC Additive Closure, Column Vectors
If u,vβCm, then u+vβCm.
- SCC Scalar Closure, Column Vectors
If Ξ±βC and uβCm, then Ξ±uβCm.
- CC Commutativity, Column Vectors
If u,vβCm, then u+v=v+u.
- AAC Additive Associativity, Column Vectors
If u,v,wβCm, then u+(v+w)=(u+v)+w.
- ZC Zero Vector, Column Vectors
There is a vector, 0, called the zero vector, such that u+0=u for all uβCm.
- AIC Additive Inverses, Column Vectors
If uβCm, then there exists a vector βuβCm so that u+(βu)=0.
- SMAC Scalar Multiplication Associativity, Column Vectors
If Ξ±,Ξ²βC and uβCm, then Ξ±(Ξ²u)=(Ξ±Ξ²)u.
- DVAC Distributivity across Vector Addition, Column Vectors
If Ξ±βC and u,vβCm, then Ξ±(u+v)=Ξ±u+Ξ±v.
- DSAC Distributivity across Scalar Addition, Column Vectors
If Ξ±,Ξ²βC and uβCm, then (Ξ±+Ξ²)u=Ξ±u+Ξ²u.
- OC One, Column Vectors
If uβCm, then 1u=u.
Proof.
While some of these properties seem very obvious, they all require proof. However, the proofs are not very interesting, and border on tedious. We will prove one version of distributivity very carefully, and you can test your proof-building skills on some of the others. Exercise VO.T13 has a proof in the solution, while Exercises VO.T17 and VO.T18 are excellent practice.
We need to establish an equality, so we will do so by beginning with one side of the equality, apply various definitions and theorems (listed to the right of each step) to massage the expression from the left into the expression on the right. Here we go with a proof of Property DSAC.
For \(1\leq i\leq m\text{,}\)
Since the individual components of the vectors \((\alpha+\beta)\vect{u}\) and \(\alpha\vect{u}+\beta\vect{u}\) are equal for all \(i\text{,}\) \(1\leq i\leq m\text{,}\) Definition CVE tells us the vectors are equal.
Sage ANC. A Note on Coercion.
Study the following sequence of commands, while cognizant of the failure to specify a number system for x
.
None of this should be too much of a surprise, and the results should be what we would have expected. Though for x
we never specified if 1, 2, 3
are integers, rationals, reals, complexes, or β¦? Let us dig a little deeper and examine the parents of the five vectors involved.
So x
and u
belong to something called an βambient free module,β whatever that is. What is important here is that the parent of x
uses the integers as its number system. How about u
, v
, y
, w
, z
? All but the first has a parent that uses the rationals for its number system.
Three of the final four vectors are examples of a process that Sage calls βcoercion.β Mathematical elements get converted to a new parent, as necessary, when the conversion is totally unambiguous. In the examples above:
-
u
is the result of scalar multiplication by an integer, so the computation and result can all be accommodated within the integers as the number system. -
v
involves scalar multiplication by a scalar that is not an integer, and which could be construed as a rational number. So the result needs to have a parent whose number system is the rationals. -
y
is created explicitly as a vector whose entries are rational numbers. - Even though
w
is created only with products of integers, the fact thaty
has entries considered as rational numbers, so too does the result. - The creation of
z
is the result of adding a vector of integers to a vector of rationals. This is the best example of coercion β Sage promotesx
to a vector of rationals and therefore returns a result that is a vector of rationals. Notice that there is no ambiguity and no argument about how to promotex
, and the same would be true for any vector full of integers.
The coercion above is automatic, but we can also usually force it to happen without employing an operation.
So the syntax is to use the name of the parent like a function and coerce the element into the new parent. This can fail if there is no natural way to make the conversion.
Coercion is one of the more mysterious aspects of Sage, and the above discussion may not be very clear the first time though. But if you get an error (like the one above) talking about coercion, you know to come back here and have another read through. For now, be sure to create all your vectors and matrices over QQ
and you should not have any difficulties.
Reading Questions VO Reading Questions
1.
Where have you seen vectors used before in other courses? How were they different?
2.
In words only, when are two vectors equal?
3.
Perform the following computation with vector operations
Exercises VO Exercises
C10.
Compute
\(\colvector{5\\-13\\26\\1\\-6}\text{.}\)
C11.
Solve the given vector equation for x, or explain why no solution exists.
Performing the indicated operations (Definition CVA, Definition CVSM), we obtain the vector equations
Since the entries of the vectors must be equal by Definition CVE, we have \(-3 + 4x = 17\text{,}\) which leads to \(x = 5\text{.}\)
C12.
Solve the given vector equation for Ξ±, or explain why no solution exists.
Performing the indicated operations (Definition CVA, Definition CVSM), we obtain the vector equations
Thus, if a solution \(\alpha\) exists, by Definition CVE then \(\alpha\) must satisfy the three equations
which leads to \(\alpha = -13\text{,}\) \(\alpha = -8\) and \(\alpha = 4\text{.}\) Since \(\alpha\) cannot simultaneously have three different values, there is no solution to the original vector equation.
C13.
Solve the given vector equation for Ξ±, or explain why no solution exists.
Performing the indicated operations (Definition CVA, Definition CVSM), we obtain the vector equations
Thus, if a solution \(\alpha\) exists, by Definition CVE then \(\alpha\) must satisfy the three equations
which leads to \(3\alpha = -6\text{,}\) \(2\alpha = -4\) and \(-2\alpha = 4\text{.}\) And thus, the solution to the given vector equation is \(\alpha = -2\text{.}\)
C14.
Find Ξ± and Ξ² that solve the vector equation
Performing the indicated operations (Definition CVA, Definition CVSM), we obtain the vector equations
Since the entries of the vectors must be equal by Definition CVE, we have \(\alpha = 3\) and \(\beta = 2\text{.}\)
C15.
Find Ξ± and Ξ² that solve the vector equation.
Performing the indicated operations (Definition CVA, Definition CVSM), we obtain the vector equations
Since the entries of the vectors must be equal by Definition CVE, we obtain the system of equations
which we can solve by row-reducing the augmented matrix of the system
Thus, the only solution is \(\alpha = 3\text{,}\) \(\beta = -1\text{.}\)
T05.
Provide reasons (mostly vector space properties) as justification for each of the seven steps of the proof of the following theorem.
For any vectors u,v,wβCm, if u+v=u+w, then v=w.
Proof: Let u,v,wβCm, and suppose u+v=u+w.
T06.
Provide reasons (mostly vector space properties) as justification for each of the six steps of the proof of the following theorem.
For any vector uβCm, 0u=0.
Proof: Let uβCm.
T07.
Provide reasons (mostly vector space properties) as justification for each of the six steps of the proof of the following theorem.
For any scalar c, c0=0.
Proof: Let c be an arbitrary scalar.
T13.
Prove Property CC of Theorem VSPCV. Write your proof in the style of the proof of Property DSAC given in this section.
For all \(1\leq i\leq m\text{,}\)
With equality of each component of the vectors \(\vect{u}+\vect{v}\) and \(\vect{v}+\vect{u}\) being equal Definition CVE tells us the two vectors are equal.
T17.
Prove Property SMAC of Theorem VSPCV. Write your proof in the style of the proof of Property DSAC given in this section.
T18.
Prove Property DVAC of Theorem VSPCV. Write your proof in the style of the proof of Property DSAC given in this section.
Exercises T30, T31 and T32 are about making a careful definition of vector subtraction.
T30.
Suppose u and v are two vectors in Cm. Define a new operation, called βsubtraction,β as the new vector denoted uβv and defined by
for 1β€iβ€m. Prove that we can express the subtraction of two vectors in terms of our two basic operations. More precisely, prove that uβv=u+(β1)v. So in a sense, subtraction is not something new and different, but is just a convenience. Mimic the style of similar proofs in this section.
T31.
Prove, by giving counterexamples, that vector subtraction is not commutative and not associative.
T32.
Prove that vector subtraction obeys a distributive property. Specifically, prove that Ξ±(uβv)=Ξ±uβΞ±v.
Can you give two different proofs? Distinguish your two proofs by using the alternate descriptions of vector subtraction provided by Exercise VO.T30.