I recently asked this question: Simplify expression cross/dot products
The answer was straightforward, yet I can't apply the same to the expression below.
Can the following expression be simplified? In particular, I would like to remove the denominator:
$\frac{( b \times (a \times b)) \cdot (a \times (b\times a))}{(a\times b) \cdot (a\times b)}$
where $a$ and $b$ are 3 dimensional vectors.
Using indexes, the result seems to be:
$- a \cdot b$
but I fail to see how to simplify this using the properties of scalar and cross products.
\begin{align} \frac{(b\times(a\times b)) \cdot (a\times(b\times a))}{(a\times b) \cdot (a\times b)} &= \frac{(b\times(a\times b)) \cdot (a\times(b\times a))}{\lVert a\times b\rVert^2}\\ &= \frac{1}{\lVert a\times b\rVert}(b\times(a\times b)) \cdot \frac{1}{\lVert a\times b\rVert}(a\times(b\times a))\\ &= \left(b\times\frac{1}{\lVert a\times b\rVert}(a\times b)\right) \cdot \left(a\times\frac{1}{\lVert a\times b\rVert}(b\times a))\right)\\ &= - (b\times c) \cdot (a\times c) \end{align} where $c = \frac{1}{\lVert a\times b\rVert}(a\times b)$ and the negative sign occurs when we replace $\frac{1}{\lVert a\times b\rVert}(b\times a)$ by $\frac{1}{\lVert a\times b\rVert}(a\times b).$
Note that $c$ is a unit vector perpendicular to both $a$ and $b,$ so $a\times c$ and $b\times c$ are just the vectors $a$ and $b$ rotated by $90$ degrees (in the same direction) in the plane spanned by $a$ and $b.$