math.pow() function

The math.pow() function returns x**y, the base-x exponential of y.

*Output data type: Float*

  1. import "math"
  2. math.pow(x: 2.0, y: 3.0)
  3. // Returns 8.0

Parameters

x

The X value used in the operation.

*Data type: Float*

y

The Y value used in the operation.

*Data type: Float*

Special cases

  1. // In order of priority
  2. math.pow(x:x, y0) // Returns 1 for any x
  3. math.pow(x:1, y:y) // Returns 1 for any y
  4. math.pow(x:X, y:1) // Returns x for any x
  5. math.pow(x:NaN, y:y) // Returns NaN
  6. math.pow(x:x, y:NaN) // Returns NaN
  7. math.pow(x0, y:y) // Returns ±Inf for y an odd integer < 0
  8. math.pow(x0, y:-Inf) // Returns +Inf
  9. math.pow(x0, y:+Inf) // Returns +0
  10. math.pow(x0, y:y) // Returns +Inf for finite y < 0 and not an odd integer
  11. math.pow(x0, y:y) // Returns ±0 for y an odd integer > 0
  12. math.pow(x0, y:y) // Returns +0 for finite y > 0 and not an odd integer
  13. math.pow(x:-1, yInf) // Returns 1
  14. math.pow(x:x, y:+Inf) // Returns +Inf for |x| > 1
  15. math.pow(x:x, y:-Inf) // Returns +0 for |x| > 1
  16. math.pow(x:x, y:+Inf) // Returns +0 for |x| < 1
  17. math.pow(x:x, y:-Inf) // Returns +Inf for |x| < 1
  18. math.pow(x:+Inf, y:y) // Returns +Inf for y > 0
  19. math.pow(x:+Inf, y:y) // Returns +0 for y < 0
  20. math.pow(x:-Inf, y:y) // Returns math.pow(-0, -y)
  21. math.pow(x:x, y:y) // Returns NaN for finite x < 0 and finite non-integer y