Plugin installed incorrectly. Rename plugin directory '_include' to 'include'.
Plugin installed incorrectly. Rename plugin directory '__include' to 'include'.
lecture_17
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| lecture_17 [2015/04/01 11:09] – rupert | lecture_17 [2017/03/30 09:21] (current) – rupert | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | {{page> | + | ====== Chapter 3: Vectors and geometry ====== |
| - | {{page>lecture 17b}} | + | |
| + | Recall that a $2\times 1$ column vector such as $\def\m#1{\begin{bmatrix}# | ||
| + | |||
| + | We think of a (column) vector like $\vec v=\m{4\\3}$ as an instruction to move $4$ units to the right and $3$ units up. This movement is called " | ||
| + | |||
| + | === Examples === | ||
| + | |||
| + | The vector $\vec v=\m{4\\3}$ moves: | ||
| + | |||
| + | * $(0,0)$ to $(4,3)$ | ||
| + | * $(-2,6)$ to $(2,9)$ | ||
| + | * $(x,y)$ to $(x+4, | ||
| + | |||
| + | It is convenient to not be too fussy about the difference between a point like $(4,3)$ and the vector $\m{4\\3}$. If we agree to write points as column vectors, then we can perform algebra (addition, subtraction, | ||
| + | |||
| + | For example, we could rewrite the examples above by saying that $\vec v=\m{4\\3}$ moves: | ||
| + | |||
| + | * $\m{0\\0}$ to $\m{0\\0}+\m{4\\3}=\m{4\\3}$ | ||
| + | * $\m{-2\\6}$ to $\m{-2\\6}+\m{4\\3}=\m{2\\9}$ | ||
| + | * $\m{x\\y}$ to $\m{x\\y}+\m{4\\3}=\m{x+4\\y+3}$. | ||
| + | |||
| + | More generally: a column vector $\vec v$ moves a point $\vec x$ to $\vec x+\vec v$. | ||
| + | |||
| + | === Example === | ||
| + | |||
| + | Which vector moves the point $A=(-1,3)$ to $B=(5, | ||
| + | |||
| + | Answer: we need a vector $\vec v$ with $A+\vec v=B$, so $\vec v=B-A = \def\m# | ||
| + | |||
| + | ==== Definition of $\vec{AB}$ ==== | ||
| + | |||
| + | If $A$ and $B$ are any points in $\mathbb{R}^n$, | ||
| + | \[ \vec{AB}=B-A\] | ||
| + | (where on the right hand side, we interpret the points as column vectors so we can subtract them to get a column vector). | ||
| + | |||
| + | Thus $\vec{AB}$ is the vector which moves the point $A$ to the point $B$. | ||
| + | |||
| + | === Example === | ||
| + | |||
| + | In $\mathbb{R}^3$, | ||
| + | |||
| + | ==== The uses of vectors ==== | ||
| + | |||
| + | Vectors are used in geometry and science to represent quantities with both a **magnitude** (size/ | ||
| + | |||
| + | * displacements (in geometry) | ||
| + | * velocities | ||
| + | * forces | ||
| + | |||
| + | Recall that a column vector moves points. Its magnitude, or length, is how far it moves points. | ||
| + | |||
| + | ==== Definition: the length of a vector ==== | ||
| + | |||
| + | If $\vec v=\m{v_1\\v_2\\\vdots\\v_n}$ is a column vector in $\mathbb{R}^n$, | ||
| + | \[ \|\vec v\|=\sqrt{v_1^2+v_2^2+\dots+v_n^2}.\] | ||
| + | |||
| + | ==== Examples ==== | ||
| + | |||
| + | * $\left\|\m{4\\3}\right\|=\sqrt{4^2+3^2}=\sqrt{16+9}=\sqrt{25}=5$ | ||
| + | * $\left\|\m{1\\0\\-2\\3}\right\|=\sqrt{1^2+0^2+(-2)^2+3^2}=\sqrt{1+0+4+9}=\sqrt{14}$ | ||
| + | |||
| + | ==== Exercise ==== | ||
| + | |||
| + | Prove that if $c\in \mathbb{R}$ is a scalar and $\vec v$ is a vector in $\mathbb{R}^n$, | ||
| + | \[ \|c\vec v\|=|c|\, | ||
| + | That is, multiplying a vector by a scalar $c$ scales its length by $|c|$, the absolute value of $c$. | ||
| + | |||
| + | ==== Remark ==== | ||
| + | |||
| + | $\|\vec{AB}\|$ is the distance from point $A$ to point $B$, since this is the length of vector which takes point $A$ to point $B$. | ||
| + | |||
| + | === Examples === | ||
| + | |||
| + | * The distance from $A=(1,2)$ to $B=(-3,4)$ is $\|\def\m# | ||
| + | * The length of the main diagonal of the unit cube in $\mathbb{R}^3$ is the distance between $0=(0,0,0)$ and $A=(1, | ||
| + | |||
| + | ==== Scalar multiplication and direction ==== | ||
| + | |||
| + | Multiplying a vector by a scalar changes its length, but doesn' | ||
| + | |||
| + | ==== Definition: unit vectors ==== | ||
| + | |||
| + | {{page>unit vector}} | ||
| + | |||
| + | ==== Proposition: | ||
| + | |||
| + | If $\vec v$ is a non-zero vector, then $\vec w=\frac1{\|\vec v\|}\vec v$ is a unit vector (in the same direction as $\vec v$). | ||
| + | |||
| + | === Proof === | ||
| + | |||
| + | Using the formula $\|c\vec v\|=|c|\, | ||
| + | \[ \|\vec w\|=\left\|\frac1{\|\vec v\|}\vec v\right\|=\left|\frac1{\|\vec v\|}\right|\, | ||
| + | So $\vec w$ is a unit vector, and since it's scalar multiple of $\vec v$, it's in the same direction as $\vec v$. ■ | ||
| + | |||
| + | ==== Example ==== | ||
| + | |||
| + | What is unit vector in the same direction as $\vec v=\m{1\\2}$? | ||
| + | |||
| + | We have $\|\vec v\|=\sqrt{1^2+2^2}=\sqrt5$, | ||
| + | |||
| + | ===== Addition of vectors ===== | ||
| + | |||
| + | If $\vec v=\vec{AB}$, | ||
| + | |||
| + | If $\vec w=\vec {BC}$, then $\vec w$ moves $B$ to $C$, so $B+\vec w=C$. | ||
| + | |||
| + | What about $\vec v+\vec w$? We have $A+\vec v+\vec w=B+\vec w=C$. So $\vec v+\vec w=\vec{AC}$. | ||
| + | |||
| + | This gives us the **triangle law for vector addition**: $\vec v$, $\vec w$ and $\vec v+\vec w$ may be arranged to form a triangle: | ||
| + | |||
| + | {{ : | ||
| + | |||
| + | We get another triangle by starting at $A$ and translating first by $\vec w$ and then by $\vec v$; the other side of this triangle is $\vec w+\vec v$. | ||
| + | But we know that $\vec v+\vec w=\vec w+\vec v$! So we can put these two triangles together to get the **parallelogram law for vector addition**: | ||
| + | |||
| + | {{ : | ||
lecture_17.1427886573.txt.gz · Last modified: by rupert
