POWER()

Syntax. POWER(number,power)

Definition. This function returns a number raised to a power.

Arguments

Background. If a number is raised to a given power, the number is (repeatedly) multiplied with itself.

a • a • a • a •...• a = an

In this equation, the base number a multiplied with itself to the power n. The following apply:

The result is the power. The logarithm and the root function are inverse functions of POWER().

Instead of the POWER() function, you can use the operator ^ to raise a number; for example, =5^2 instead of =POWER(5,2).

Example. Computers use the dual system for digital processing based on the number 2. The units of digital storage media are the powers to base 2 (power of two). Therefore, 1 kilobyte is 210 bytes = 1024 bytes.

More examples for this function are:

See Also

SQRT()