IMPOWER

IMPOWER(inumber, number)

Returns the complex number raised to an integer number.

inumberThe complex number you want to raise to a power.
numberThe power to which you want to raise the complex number.

REMARKS
* If "inumber" is not in the form x + yi or x + yj, then #NUM! is returned.
* If "number" is not numeric, then #VALUE! is returned.
* Number can be an integer, fractional, or negative.
* You can use the IMSUM function to return the sum of two or more complex numbers.
* You can use the IMSUB function to return the return the difference of two complex numbers.
* You can use the IMPRODUCT function to return the product of two or more complex numbers.
* You can use the COMPLEX function to convert real and imaginary coefficients into a complex number.
* For the Microsoft documentation refer to support.microsoft.com
* For the Google documentation refer to support.google.com

 A
1=IMPOWER("2+3i", 2) = -5+12i
2=IMPOWER("2+3i", 3) = -46+9.00000000000001i
3=IMPOWER("2+3i", 4) = -119-120i
4=IMPOWER("2+3i", 1) = 2+3i
5=#N/A = #N/A
6=IMPOWER("some text", 3) = #NUM!
7=IMPOWER("2+3i", "some text") = #VALUE!


© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited Top