On advantage of using the complex space is to simplify the calculations in the real space. I'll present to examples:
Example 1:
We want to compute the following sum
Sum(Cos(k.t)), k:0 -> n - 1)
= cos(0) + cos(t) + cos(2t) + .... + cos((n-1).t)
It turns out to be
Sum(Cos(k.theta)), k:0 -> n - 1) =
(cos(n.theta) - 1).(cos(theta) - 1)
+ sin(n.theta).sin(theta)
Example 2: (for experts only)
We want to calculate the following series:
Sum( 1 / (n * n), n : 1 -> infinity)
It's fairly easy using the complex space to show that
the summation converages to
Pi * Pi / 6
This is one of the fascinating occurances of PI. This is a poor method to calculate the value of Pi


