Polar Form of Complex Numbers
In polar form, 1+iSqrt[3] is 2Exp[i Pi/3]. I am sure you could figure this out for yourself. Anyway, Mathematica can help you.
In[27]:=
z=1+Sqrt[3]
Out[27]=
1 + Sqrt[3]
In[28]:=
Abs[z]
Out[28]=
1 + Sqrt[3]
In[29]:=
Arg[z]
Out[29]=
0
Feel free to try this with some of your own values of z.
Up to Complex Numbers