Friday, December 7, 2018

Where does complex exponential come from?



The complex exponential function is defined as : eix=cosx+isinx It shares most of its properties with real exponential and it allows a lot of trigonometric calculations such as de Moivre's formula : (cosx+isinx)n=cosnx+isinnx



But where does this definition come from and why does it work ?



Answer



Another way to look at it is to view the exponential and trigonometric functions as defined by a power series:



exp(x)=1+x+x22!+x33!+



sin(x)=xx33!+x55!



cos(x)=1x22!+x44!



This has the advantage that the x can be anything, as long as we know how to multiply two of them, add two of them together, and divide them by a real number. In particular, it makes sense for both real and complex numbers.




Now you can put ix into the definitions in place of x, and compute:



exp(ix)=1+ix+(ix)22!+(ix)33!+=(1x22!+)+i(xx33!+)=cosx+isinx




so the formula you quoted is seen to be a theorem rather than a definition. If we now assume that the familiar law



exp(a+b)=exp(a)exp(b)



holds for arbitrary a and b (it does, and you can prove it from the power series definition) then we now have a way to compute the exponential of any complex number:



exp(x+iy)=exp(x)(cosy+isiny)



where x and y are real.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...