vectors - 20c
authorAndrew Lorimer <andrew@lorimer.id.au>
Tue, 16 Oct 2018 23:38:26 +0000 (10:38 +1100)
committerAndrew Lorimer <andrew@lorimer.id.au>
Tue, 16 Oct 2018 23:38:26 +0000 (10:38 +1100)
spec/vectors.md
index 5c6df9c05ad241d3a5c4006f921c636875c588e7..86bd95bdd938e773306387d1220121bafd20b496 100644 (file)
@@ -73,3 +73,27 @@ A vector of length 1. $\vec{i}$ and $\vec{j}$ are unit vectors.
 
 A unit vector in direction of $\vec{a}$ is denoted by $\hat{\vec{a}}$
 
+Also, unit vector of $\vec{a}$ can be defined by $\vec{a} \cdot {|\vec{a}|}$
+
+## Scalar products / dot products
+
+If $\vec{a} = a_i \vec{i} + a_2 \vec{j}$ and $\vec{b} = b_i \vec{i} + b_2 \vec{j}$, the dot product is:
+$$\vec{a} \cdot \vec{b} = a_1 b_1 + a_2 b_2$$
+
+Produces a real number, not a vector.
+
+$$\vec{a} \cdot \vec{a} = |\vec{a}|^2$$
+
+## Geometric scalar products
+
+$$\vec{a} \cdot \vec{b} = |\vec{a}| |\vec{b}| \cos \theta$$
+
+where $0 \le \theta \le \pi$
+
+## Perpendicular vectors
+
+If $\vec{a} \cdot \vec{b} = 0$, then $\vec{a} \perp \vec{b}$ (since $\cos 90 = 0$)
+
+## Finding angle between vectors
+
+$$\cos \theta = {{\vec{a} \cdot \vec{b}} \over {|\vec{a}| |\vec{b}|}} = {{a_1 b_1 + a_2 b_2} \over {|\vec{a}| |\vec{b}|}}$$