How can I do exponentiation in clojure? For now I\'m only needing integer exponentiation, but the question goes for fractions too.
You can use java's Math.pow or BigInteger.pow methods:
Math.pow
BigInteger.pow
(Math/pow base exponent) (.pow (bigint base) exponent)