Exponents

Use the "^" caret symbol to raise a base number to the power of the exponent

Syntax

z = x ^ y

Return value

X raised to the power of Y. (Y can be fractional.)

Example:

MSGBOX "2 to the 10th power is" < ( "2" ^ "10" )

AA = "10" ^ "0.5" ---- Same as AA = SQRT("10")

Notes:

0^0 returns 1. Fractional powers of negative numbers and negative powers of zero return 0.