Finding the angle between two vectors with Python
In this part, I am going to try to find the angle between two vectors with Python.
Let \( u \) and \( v \) are two vectors in \(\mathbb{R}^n\) defined by \(u:= (u_{1}, u_{2}, ..., u_{n})\neq0 \: \: and \ \ v := (v_{1}, v_{2}, ..., v_{n})\neq 0\). Then the inner (dot) product of these two vectors is defined by \( u \cdot v := u_{1}v_{1} + u_{2}v_{2} + ... + u_{n}v_{n} \).
Note that 0 is a vector in here.
We know the formula
$$cos\theta:= \frac{u.v}{\left\| u \right\|.\left\| v \right\|} \: \: where \left\| u \right\|:=\sqrt{u.u} \: \: and \left\| v \right\|:= \sqrt{v.v} \: \: :\ (cos\theta:= \frac{u.v}{\left\| u \right\|.\left\| v \right\|}\Leftrightarrow \theta=arccos( \frac{u.v}{\left\| u \right\|.\left\| v \right\|})\:)$$
Assume that \( n:=3 \) that is our vectors will be in \( \mathbb{R}^3 \). Let \(v:=\begin{bmatrix}1
\\ 4
\\ 7
\end{bmatrix}\)
and \(u:=\begin{bmatrix}2
\\ 3
\\ 8
\end{bmatrix}\).First of all let us calculate the inner product of two vectors v and u. \(u.v=(1,4,7).(2,3,8)=1*2+4*3+7*8=70\).
Then length of the vector v is \(\left\| v \right\|=\sqrt{v.v}=\sqrt{(1,4,7).(1,4,7)}=\sqrt{66}\) and length of the vector u is \(\left\| u \right\|=\sqrt{u.u}=\sqrt{(2,3,8).(2,3,8)}=\sqrt{77}\)
Angle between the vectors is calculated by the formula which is appeared the above.
\(cos\theta=\frac{u.v}{\left\| u \right\|\left\| v \right\|}=\frac{70}{\sqrt{66}\sqrt{77}}=\frac{70}{66*77}=0.0137741046831956\). Then, angle is \(\theta=arccos(0.0137741046831956)=1.5570217865236389\).
By visualizing the vector, we obtain

In this writing, I tried to find the angle between two given vectors and to visualize them if they are in \( \mathbb{R}^2 \) or \( \mathbb{R}^3 \).
(You can also find the source code which is given with MATLAB by clicking
here)