How to get value of an exponential with imaginary part?

33 Views Asked by At

A quaternion is written as: q=a+bi+cj+dk where a,b,c,d are all real numbers. However, a identifies the real part of the quaterion, while the imaginary part of the quaterion is the combination of i,j and k. These three parts (i,j,k) are orthogonal to each other and satisfy the following relationship:

i^{2}=j^{2}=k^{2}=ijk=-1

ij=k

jk=i

ik=j

Another representation of quaternions is amplitude phase representation, which can be expressed as:

q=|q|e^{phii}e^{thetaj}e^{psi*k}

where |q| is the amplitude of q, and phi, theta, psi are the phase angle of q

Now, if I would like to get the imaginary parts from this last equation, could I take e^{phi}e^{theta}e^{psi} ? Is it right?