1. Floor operator is `⌊n⌋`.
2. Exponentiation implementation depends on the size of the power. For very small powers normally they are represented as their reciprocal, then operated on within the exponent.
y = b ** (1/x)
for very large x is rewritten as y = Math.exp(Math.log(b) / x)