root function

Expr root(
  1. Expr x,
  2. Expr n
)

Implementation

Expr root(Expr x, Expr n) => pow(x, div(intFrom(1), n));