Problem
Prove true or false following statement:
$\vec{u}\cdot \vec{v} = \vec{u} \cdot \vec{w} \implies \vec{v} = \vec{w}$ when $\{\vec{u},\vec{v},\vec{w}\} \in \mathbb{R}^n, n \in \mathbb{N}$
Attempt to solve
If I take dot product with $\vec{u}$ from both sides i get:
$$ \vec{u}\cdot(\vec{u}\cdot\vec{v})=\vec{u}(\vec{u}\cdot\vec{w}) \implies ||\vec{u}||^2 \cdot \vec{v} = ||\vec{u}||^2 \cdot \vec{w} \implies \vec{v} = \vec{w} $$
However not quite sure if this part is correct
$$ \vec{u}\cdot(\vec{u}\cdot\vec{v})=\vec{u}(\vec{u}\cdot\vec{w}) \implies ||\vec{u}||^2 \cdot \vec{v} = ||\vec{u}||^2 \cdot \vec{w} $$
How do you define dot product of $\vec{u}\cdot \vec{u} \cdot \vec{v}$
$$ \begin{bmatrix} a \\b\end{bmatrix} \cdot \begin{bmatrix} a \\b\end{bmatrix} \cdot \begin{bmatrix} c \\ d \end{bmatrix}= a^2\cdot c+ b^2 \cdot d $$
$$ \begin{bmatrix} a \\b\end{bmatrix} \cdot (\begin{bmatrix} a \\b\end{bmatrix} \cdot \begin{bmatrix} c \\ d \end{bmatrix} )= (ac+bd) \begin{bmatrix} a \\ b \end{bmatrix} = \begin{bmatrix} a(ac+bd) \\ b(ac+bd) \end{bmatrix} $$
Which is quite confusing. I know how dot product is defined with two vectors
$$ \begin{bmatrix} a \\ b \end{bmatrix} \cdot \begin{bmatrix} c \\ b \end{bmatrix} = ac+bd $$
But i don't quite get how it would work for 3 vectors. Another way to solve this would be try to divide with vector $\vec{u}$ which is same as multiplying $\vec{u}$ with its inverse vector ? But I have no clue how do you define inverse vector ?
False. Take $u=(1,0,0), v=(0,1,0), w=(0,0,1)$.