Get the algebraic nth root of x.
n
x
This is equivalent to pow(x, 1 / n).
pow(x, 1 / n)
Expr root(Expr x, Expr n) => pow(x, div(ratFrom(1), n));