Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
math:vectors [2021/03/08 03:43] – created epix | math:vectors [2021/03/18 02:56] (current) – added a note on graphing vectors epix | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Vectors ====== | ====== Vectors ====== | ||
- | Vectors are line segments that represent the magnitude and direction of a quantity, which is useful for real life quantities like force and velocity. It is usually described by two points/ | + | Vectors are line segments that represent the magnitude and direction of a quantity, which is useful for real life quantities like force and velocity. It is usually described by two points/ |
===== Component Form ===== | ===== Component Form ===== | ||
The component form of a vector is the individual changes in horizontal and vertical units that make up the combined vector' | The component form of a vector is the individual changes in horizontal and vertical units that make up the combined vector' | ||
Line 8: | Line 9: | ||
===== Direction ===== | ===== Direction ===== | ||
- | The direction of the vector is pretty self-explanatory. It can be found by doing some basic trig on the vector, with theta being the angle at the origin point and between the hypotenuse and adjacent side. Again, think of the vector as a right angle triangle. | + | The direction of the vector is pretty self-explanatory. It can be found by doing some basic trig on the vector, with theta being the angle at the origin point and between the hypotenuse and adjacent side. Again, think of the vector as a right angle triangle((hint: use $\tan$)). |
===== Math with Vectors ===== | ===== Math with Vectors ===== | ||
Math with vectors is super simple! To add two vectors together, just add their component values together((i.e. <1,1> + < | Math with vectors is super simple! To add two vectors together, just add their component values together((i.e. <1,1> + < | ||
+ | |||
+ | ==== Dot Product ==== | ||
+ | The dot product of two vectors is just multiplying the two together. The answer is a scalar value. Take the vectors <x, y> and <j, k>. The //dot product// of the two would be $xj + yk$. Dot product is useful to find the angle between two vectors. | ||
+ | |||
+ | ===== Angle Between Two Vectors ===== | ||
+ | Take the $\arccos$ of the dot product of the two vectors divided by the magnitudes of the vectors multiplied together. In other words, if vectors $v$ and $w$ exist, the angle $\theta$ between them would be $\theta = \arccos {\frac{v \cdot w}{||v||||w||}}$. The alternative equation for this would be $v \cdot w = ||v||||w||\cos \theta$. | ||
===== Special Vectors ===== | ===== Special Vectors ===== | ||
Line 17: | Line 24: | ||
The zero vector has its origin at (0,0) and end at (0,0). Its variable name is a bold zero((**0**)) and its component form would also be < | The zero vector has its origin at (0,0) and end at (0,0). Its variable name is a bold zero((**0**)) and its component form would also be < | ||
==== Unit Vector ==== | ==== Unit Vector ==== | ||
- | A unit vector is a vector with magnitude 1. To normalize a vector to a unit vector, scalar divide((reciprocal scalar multiply)) the vector by its magnitude. | + | A unit vector is a vector with magnitude 1. To normalize a vector to a unit vector, scalar divide((reciprocal scalar multiply)) the vector by its magnitude. |
==== Standard Unit Vectors ==== | ==== Standard Unit Vectors ==== | ||
There are two: | There are two: | ||
Line 23: | Line 31: | ||
* **j** = <0,1> | * **j** = <0,1> | ||
As these are the the base horizontal and vertical component forms, they can be added together to make any integer vector. For example, <3,2> can be written as 3i + 2j. Sometimes vectors are given to you in terms of **i** and **j**. To add these types of vectors together, just substitute them with **i** and **j** and simplify via algebra. | As these are the the base horizontal and vertical component forms, they can be added together to make any integer vector. For example, <3,2> can be written as 3i + 2j. Sometimes vectors are given to you in terms of **i** and **j**. To add these types of vectors together, just substitute them with **i** and **j** and simplify via algebra. | ||
+ | |||
+ | ===== Parallel or Orthogonal ===== | ||
+ | Parallel vectors are vector with the same direction but varying magnitude. Check if dividing the two vector' |