Get the complex conjugate of a complex number
=IMCONJUGATE(inumber)
| Parameter | Description |
|---|---|
inumber |
The complex number in the form "x+yi". |
The Excel IMCONJUGATE function returns the conjugate of a complex number. For example, given the complex number "3+4i" as input, the function returns
=IMCONJUGATE("3+4i") // returns "3-4i"
In other words, the divisor is converted into a real number which we know how to divide by. This is equal to the following formula in Excel.
=IMPRODUCT(
"x+yi",
IMCONJUGATE("a+bi"),
COMPLEX(1/IMREAL(IMPRODUCT("a+bi", IMCONJUGATE("a+bi"))), 0)
)
In practice, Excel provides the IMDIV function to perform complex division.
=IMDIV(COMPLEX(-11,29),COMPLEX(2,3)) // returns 5+7i