The IMPOWER function in Excel is a powerful tool designed for handling complex numbers in financial models, engineering calculations, and scientific computations. This function efficiently computes the result of raising a complex number to an integer power, which can facilitate numerous mathematical analyses across various disciplines.
Syntax
IMPOWER(inumber, power)
- inumber: The complex number you wish to raise to a power, which may be supplied in the form of a text string or as a cell reference containing the complex number.
- power: An integer representing the exponent to which the complex number will be raised.
Example #1
=IMPOWER("2+3i", 2)
This function call raises the complex number 2 + 3i to the power of 2, resulting in a value of -5 + 12i.
Example #2
=IMPOWER("1-2i", 3)
In this case, the function raises the complex number 1 – 2i to the power of 3, yielding a result of -11 – 2i.
Example #3
=IMPOWER(C1, 4)
Here, if cell C1 contains the complex number 3 + 4i, the result of this function will be -117 + 112i, raising the number to the fourth power.
Error handling
- NUM!: This error occurs when the power argument is not an integer. Ensure that the power parameter passed is an integer.
- VALUE!: This error is returned if the inumber is not a valid complex number or if the parameter types are incorrect. Verify that the first argument is a complex number in the correct format.