POWER
Last updated
Was this helpful?
Last updated
Was this helpful?
The function POWER takes two Numbers, b and n, and returns bn.
This function takes two as input: b and n. It returns another Number: the numerical estimation of b taken to the power of n.
b (required, type: Number
) Any Number; this is the base number that will be taken to the power of n.
n (required, type: Number
) Any Number; this is what b will be taken to the power of.
number (type: Number
) The numerical estimation of b raised to the nth power, or bn.
The following example calculates 23:
Neither b nor n need to be whole numbers. The following example calculates 0.250.5: