IMPOWER function
The IMPOWER function in Excel raises a complex number to a specified power.
Syntax
IMPOWER(inumber, power)
Parameters
inumber: The complex number that you want to raise to a power. The complex number can be entered as a string in the forma + biora + bj, whereais the real part andbis the imaginary part.power: The exponent to which you want to raise the complex number. It can be a positive or negative integer or a real number.
How It Works
To raise a complex number z = a + bi to a power n, Excel uses the following formula:
This is calculated using polar coordinates and applying De Moivre’s theorem for complex numbers:
Where:
ris the modulus (absolute value) of the complex number,θis the argument (angle) of the complex number,
Examples
- Raising a Complex Number to a Power: To raise the complex number
2 + 3ito the power of2:=IMPOWER("2+3i", 2)The result will be
-5 + 12i. - Raising a Complex Number to a Negative Power: To raise the complex number
1 + 2ito the power of-2:=IMPOWER("1+2i", -2)The result will be
0.033613445378151 + -0.067226890756302i. - Raising a Complex Number to a Fractional Power: To raise the complex number
1 + 1ito the power of0.5(square root):=IMPOWER("1+1i", 0.5)The result will be approximately
1.09868411346781 + 0.45508986053271i. - Using a Cell Reference: If cell
A1contains the complex number"3+4i", you can raise it to the power of3using:=IMPOWER(A1, 3)The result will be approximately
-117 + 44i.
Important Notes
- The IMPOWER function works only with valid complex numbers. If the input is not a valid complex number, Excel will return a #VALUE! error.
- The power parameter can be any real number, but complex numbers raised to non-integer powers may result in results that involve complex roots, depending on the exponent.
- Complex numbers in Excel can be represented using either
iorjfor the imaginary part.
Summary
The IMPOWER function in Excel raises a complex number to a specified power. This function is useful in advanced mathematical, engineering, and scientific calculations involving complex numbers, where raising complex numbers to various powers is required.