Get difference between two complex numbers
=IMSUB(inumber1, inumber2)
| Parameter | Description |
|---|---|
inumber1 |
Complex number 1. |
inumber2 |
Complex number 2. |
The IMSUB function returns the difference between two complex numbers. For example:
=IMSUB("4+3i","1+2i") // returns "3+i"
The result of the IMSUB function can be visualized by adding the opposite of the second vector tip-to-tail with the first. For example, the result of
=IMSUB("4+3i","-2+5i") // returns "6-2i"