CalcPower
CalcPower[ z1, z2 ]
CalcPower[ z1, z2 ] returns z1 to the power of z2.
| Example | in | out |
|---|---|---|
5 to the power of 2. |
CalcPower[5,2] |
25 |
5 to the power of -2. |
CalcPower[5,-2] |
1/25 |
x to the power y, where x is defined as -4 and y is defined as 2 in the script. |
CalcPower[x,y] |
16 |