Get quotient of two complex numbers.
=IMDIV(complex_num1, complex_num2)
| Parameter | Description |
|---|---|
complex_num1 |
The first complex number. |
complex_num2 |
The second complex number. |
The Excel IMDIV function returns the quotient of two complex numbers. For example, given "-7+11i" and "3+5i" as input, the function returns the quotie
=IMDIV(COMPLEX(-7,11),COMPLEX(3,5)) // returns 1+2i
Here's another example: the result of dividing "-14-2i" by "4+2i" is equal to "-3+i".
=IMDIV(COMPLEX(-14,-2),COMPLEX(4,2)) // returns -3+i
We can visualize the example that corresponds to this one by switching the divisor with the quotient. In other words, the result of dividing "-14-2i"
=IMDIV(COMPLEX(-14,-2),COMPLEX(-3,1)) // returns 4+2i