I'm trying to multiply 2 Quaternion equations but I'm not sure if I'm multiplying them correctly. Here are the 2 equations:
$_1 = 2 − + + 3$
$_2 = −1 + + 4 − 2k$
and here is how I've multiplied these 2 equations:
$$q_1q_2 = ((2)(-1) - (-1)(1) - (1)(4) - (3)(-2))\\ + ((2)(1) - (-1)(-1) - (1)(-2) - (3)(4))i \\+ ((2)(4) - (-1)(-2) - (1)(-1) - (3)(1))j\\ + ((2)(-2) - (-1)(4) - (1)(1) - (3)(-1))k$$
When simplifying this, I get:
$$q_1q_2 = -8i + 4j + 2k $$
But calculating this using online counters I seem to be getting different results, have I calculated this correctly?