IMDIV Function
The IMDIV function in Google Sheets divides one complex number by another.
Syntax
IMDIV(dividend, divisor)
dividend
: The complex number to be divided.divisor
: The complex number by which to divide.
Examples
- Basic Division
Divide the complex number 2+3i by 1+2i:
=IMDIV("2+3i", "1+2i")
This will output 1.6+0.2i.
Notes
- The complex numbers should be in text format (e.g., “2+3i” and “1+2i”).