More texts, solutions manuals and packages coming soon.
Read Section 1.3 for next class. Work through recommended homework questions. Here are scans of the questions from sections 1.1 and 1.2.
Tutorials start September 18, and include a quiz covering until Monday's lecture. More details on Monday.
Bonus office hours: today, 2:30-3:30, MC103B.
Also, if you can't make it to my office hours, feel free to attend Hugo Bacard's
office hours.
Help Centers Monday-Friday 2:30-6:30 in MC 106 starting Sept 19.
Questions after class:
Questions about homework problems should be
asked at the Help Centers, tutorials or office hours.
Questions about my lecture should be asked during class,
as others are likely to have the same question.
(And it makes me feel like you are paying attention. :-)
Questions after class should be limited to questions specific
to you. There are too many students for me to answer general
questions.
Lecture notes (this page) available from course web page by
clicking on our class times.
Answers to lots of administrative questions are available on the course web page as well.
Definition: A vector $\vv$ is a linear combination of vectors $\vv_1, \vv_2, \ldots, \vv_k$ if there exist scalars $c_1, c_2, \ldots, c_k$ (called coefficients) such that $$ \vv = c_1 \vv_1 + \cdots + c_k \vv_k . $$ We also call the coefficients coordinates when we are thinking of the vectors $\vv_1, \vv_2, \ldots, \vv_k$ as defining a new coordinate system.
Vectors modulo $m$:
$\Z_m = \{0, 1, \ldots, m-1\}$ with addition and multiplication taken modulo $m$. That means that the answer is the remainder after division by $m$.
For example, in $\Z_{10}$, $\quad 8 \cdot 8 = 64 = 4 \pmod{10}$.
$\Z_m^n$ is the set of vectors with $n$ components, each of which is in $\Z_m$.
To find solutions to an equation such as $$ 6 x = 6 \pmod{8} $$ you can simply try all possible values of $x$. In this case, $1$ and $5$ both work, and no other value works.
Note that you can not in general divide in $\Z_m$, only add, subtract and multiply.
The dot product will be used to define length, distance and angles in $\R^n$.
Examples on whiteboard, including in $\Z_m$.
Theorem 1.2: For vectors $\vu, \vv, \vw$ in $\R^n$ and $c$ in $\R$:
(a) $\ \vu \cdot \vv = \vv \cdot \vu$
(b) $\ \vu \cdot (\vv + \vw) = \vu \cdot \vv + \vu \cdot \vw$
(c) $\ (c \vu) \cdot \vv = c(\vu \cdot \vv) = \vu \cdot (c \vv)$
(d) $\ \vu \cdot \vu \geq 0$
(e) $\ \vu \cdot \vu = 0$ if and only if $\vu = \vec 0$
Again, very similar to how multiplication and addition of numbers works.
Explain (b) and (d) on whiteboard. (a) and (c) are explained in text.
Definition: The length or norm of $\vv$ is the scalar $\|\vv\|$ defined by $$ \|\vv\| := \sqrt{\vv \cdot \vv} = \sqrt{v_1^2 + \cdots + v_n^2} . $$
Whiteboard: Pythagorean theorem in $\R^2$. Example in $\R^4$. $\|c \vv\| = |c| \|\vv\|$.
Definition: A vector of length 1 is called a unit vector.
Whiteboard: Unit vectors in $\R^2$. Unit vector in same direction as $\vv$, formula and example.
$\vec e_1, \vec e_2, \vec e_3$ in $\R^3$. Standard unit vectors in $\R^n$.
Picture for triangle inequality.
Theorem 1.5: The Triangle Inequality: For all $\vu$ and $\vv$ in $\R^n$, $$ \| \vu + \vv \| \leq \| \vu \| + \| \vv \| . $$
Whiteboard: Example in $\R^2$: $[1,0]$ and $[3,4]$.
Example: The distance between $\vu = [10, 10, 10, 10]$ and $\vv = [11, 11, 11, 11]$ is $$\sqrt{(-1)^2 + (-1)^2 + (-1)^2 + (-1)^2} = \sqrt{4} = 2 .$$
In particular, $|\vu \cdot \vv| \leq \| \vu \| \, \| \vv \|$, since $|\cos \theta| \leq 1$.
This holds in $\R^n$ as well:
Theorem 1.4: The Cauchy-Schwarz Inequality: For all $\vu$ and $\vv$ in $\R^n$, $$ | \vu \cdot \vv | \leq \| \vu \| \, \| \vv \| . $$
We can therefore use the dot product to define the angle between two vectors $\vu$ and $\vv$ in $\R^n$ by the formula $$ \cos \theta = \frac{\vu \cdot \vv}{\| \vu \| \, \| \vv \|}, \quad \text{i.e.,} \quad \theta = \arccos \left( \frac{\vu \cdot \vv}{\| \vu \| \, \| \vv \|} \right), $$ where we choose $0 \leq \theta \leq 180^\circ$. This makes sense because the RHS is between -1 and 1.
Section 1.2 continued in lecture 4.