13

Possible Duplicate:
How to raise a complex number to the power of another complex number?

My calculator (as well as WolframAlpha) gives me the approximation:

$$0.2078795763507619085469...$$

But I don't understand how exponentiating two purely imaginary constructs yields a real (albeit irrational) number. When I do $i^{i+1}$ it gives me an imaginary number as well as $(i+1)^i$. So why does $i^i$ fall into that precise point where it is real and no longer imaginary? What is happening? I understand that exponentiation is not repeated multiplication, and it wouldn't make sense to multiply $i$ by itself $i$ times (because it would only yield $i$, $-i$, $1$, or $-1$). So what are we doing behind the scenes to get such a number?

David G
  • 4,277

1 Answers1

20

Using Euler's formula:

$$ i = e^{i\pi / 2} $$

So:

$$ i^i = (e^{i\pi / 2})^i = e^{i^2\pi/2} = e^{-\pi/2} = 0.207... $$

  • 8
    Don't forget that $e^{i\pi/2}$ is not the only possible representation of $i$: in fact, $i=e^(2k+1)i\pi/2$ for any integer $k$. So in fact, $i^i$ can take the value $e^(2n+1)\pi/2$ for any integer $n$; i.e., it can take infinitely many values, all of which are real. However, if we define the logarithm of $i$ to be the principal value $i\pi/2$, then we do indeed get $e^{-\pi/2}$. – John Gowers Oct 19 '12 at 13:04
  • 4
    It's worth noting that $i = e^{i\pi(2kn+\frac{1}{2})}$ for any $n$, so really, it depends on which branch of the natural logarithm you use. – Thomas Andrews Oct 19 '12 at 13:05
  • The beautiful Euler's identity $e^{i\pi}+1=0$ suffices to obtain $i=e^{i\pi/2}$. – modnar Jan 24 '20 at 15:37