in reply to Which function for third root of number ?

sub cbrt { return exp(log($_[0])/3) }


-- All code is 100% tested and functional unless otherwise noted.