Returns the result of division of one complex number by another.
Sample Usage
IMDIV("2+4i","1+2i")
IMDIV(C5, C6)
Syntax
IMDIV(complex_number1, complex_number2)
- complex_number1 - The numerator or dividend.
- complex_number2 - The denominator or divisor.
Examples
IMDIV("2+4i","1+2i") returns a value of 2.
IMDIV(C5,C6) returns the result of the division of the complex numbers contained in the two cells: C5 and C6.
Notes
- The division between two complex numbers is:
- (a+bi) / (c+di) = (ac+bd)+(bc-ad)i / (c2+d2)
- You can divide two complex numbers only if they have the same suffix (i or j).