http://www.perlmonks.org?node_id=548291


in reply to Calculating Nth root using perl.

$n = 4; $ans = $arg**(1/$n);

-Mark