How can I easily convert complex number from exponential or trigonometric form to algebraic?
Update
In fact I'm trying to simplify this expression:

The only way I see is to convert to trigonometric form then expand but I can't make Maple calculate cos and sin. So how can I do this?
My code:
restart; w1 := 100; L2 := 100*10^(-3); L3 := L2; L5 := 200*10^(-3); C6 := (200/3)*10^(-6); psi1 := 32.5 degrees;
Z6 := -I/(w1*C6);
Z5 := I*w1*L5;
Z2 := I*w1*L2;
Z1 := 75;
Z3 := I*w1*L3;
Z4 := 75;
Z7 := 75;
eq := {Imk-(U1-U2)/Z2-(U2-U3)/Z1 = 0, U1/Z4+U1/(Z5+Z6+Z7)+U3/Z3 = 0, (U1-U2)/Z2-U1/(Z5+Z6+Z7)-U1/Z4 = 0};
a := solve(eq, {U1, U2, U3});
U1 := eval(U1, a);
U1 := convert(U1, float);
Imk1 := [.575, .868*exp(I*psi1), -.366, .243, -.183];
Ink := Array(1 .. 5);
for n to 5 do
Ink[n] := simplify((32.14738845-6.185240008*I)*Imk1[n]/(Z5+Z6+Z7))
end do;
Ud := 0;
for n to 5 do:
Ud := Ud+(1/2)*Ink[n]^2
end do;
Ud := simplify(sqrt(Ud), sqrt);
print(Ink[2]);
expand(convert(Ink[2], trig));
$$z=|z|\exp(i\phi)=|z|\left(\cos \phi+i\sin \phi\right)=|z|\cos \phi +i|z|\sin \phi$$
Hence $x=|z|\cos \phi$ and $y = |z|\sin \phi$.
This is one way to do it in Maple: