I am trying to use the output of the sandwich product, P’=QVQ, Q being the conjugate of Q
Say I wanted to rotate a point at $(1,0,0)$ a full 180 degrees around the y axis, so that it would end up at $(1,0,0)$, from my understanding first I find the quaternion of rotation, which is cosine of the angle/2 for the real part, and each vector part is sine of the angle over 2
So $q_0=\cos(a/2)$
$q_1=x\sin(a/2)$
$q_2=y\sin(a/2)$
$q_3=z\sin(a/2)$
As cosine of 90=0, the real part is gone As this is a rotation around purely the y axis, y=1, x and z are = 0
Sine 90=1, 1•1=1, so my quaternions is just 1j, or j
My point as a quaternions should just be i
j times i is -k The conjugate of j is -j -k times -j= -(-i)=i But that’s just the same point we started with, so no rotation happened
Too long for a comment.
You use the right quaternion $\mathbf{j}$ except that you do not multiply quaternions correctly. They follow the rules $$ \mathbf{i\,j=k} $$ where a minus sign must be added when an uneven permutation is applied. In particular, $$ \mathbf{j\,i=-k}\,. $$ Using $\mathbf{j}^2=-1$ we also get $$ \quad\mathbf{k\,j=-i}\,. $$ Then, rotating $V=(1,0,0)$ around the $y$-axis by 180 degrees is: $$ V=\mathbf{i} $$ \begin{align} a&=\pi\,, &Q&=\mathbf{j}\,,&Q^\dagger&=-\mathbf{j}\,,&Q^\dagger VQ=-\mathbf{j}\,\mathbf{i}\,\mathbf{j}=\mathbf{k}\,\mathbf{j}=-\mathbf{i}=-V \end{align} as expected.
To address your comment: In this case it does not matter on which $Q$ we put the $\dagger\,:$ $$ QVQ^\dagger=\mathbf{j\,i\,(-j)}=-\mathbf{j\,i\,j}=-\mathbf{i}\,. $$