Square, cube, and n-th roots
An n-th root undoes an n-th power: if y = x^n then x = y^(1/n) = ⁿ√y. So square root, cube root, and so on are all special cases of one formula.
Internally roots are computed via exp(ln(x)/n), which is fast and accurate for any positive radicand.