Tagged Questions
11
votes
11answers
1k views
As a programmer how would you explain imaginary numbers?
As a programmer I think it is my job to be good at math but I am having trouble getting my head round imaginary numbers. I have tried google and wikipedia with no luck so I am hoping a programmer can ...
4
votes
4answers
572 views
Calculating complex numbers with rational exponents
Yesterday I created this piece of code that could calculate z^n, where z is a complex number and n is any positive integer.
--snip--
float real = 0;
float imag = 0;
// d is the power the number is ...