Suppose that the vector is
Psi={{a},{b}};
and a and b are imaginary numbers in general. I want to calculate in Mathematica the tensor product and define a1,b2 as the complex conjugates. I have tried the following
(Psi = {{a}, {b}}) // MatrixForm
(Psi1 = MatrixForm[Assuming[{a, b} \[Element] \Complex,Simplify@ConjugateTranspose[Psi]]])
(R=(Psi).(Psi1))//MatrixForm
but it doesn't work like i want it to.
P.S.: I want to get the following result
$$ R=\begin{pmatrix} \vert{a}\vert^2 & ab^{*}\\ a^{*}b & \vert{b}\vert^2 \end{pmatrix} $$