Overview
Grammar | POWER(number, power) | Returns the result of a number raised to a power. |
Parameter 1 | number | The base number, which can be any real number. |
Parameter 2 | power | The exponent to which the base number is raised. |
Notes
The function supports two numerical parameters.
You can use the symbol "^" to replace "POWER". For example, POWER(5,2) can be expressed as 5^2.
Example
Formula | Result | Notes |
---|---|---|
POWER(6,2) | 36 | 6^2=6*6 |
POWER(14,5) | 537824 | 14^5=14*14*14*14*14 |
POWER(4,2/3) | 2.519842100 | 3√ (4^2) = 3√16 |
POWER(3,-2/3) | 0.079913677 | 3√(1/9) |