Apr 7, 2004 #1 S11 Vendor Apr 7, 2004 2 CH How do I program the calculation for a cube root? Can anyone help?
Apr 7, 2004 #2 GHolden Programmer May 28, 2002 852 GB Hi, The nth root of any number is that number raised to the 1/n power. So the cube root of 27 can be expressed as 27 ^ (1/3) Therefore you can use... n := Power(27,1/3); There are two ways to write error-free programs; only the third one works. Upvote 0 Downvote
Hi, The nth root of any number is that number raised to the 1/n power. So the cube root of 27 can be expressed as 27 ^ (1/3) Therefore you can use... n := Power(27,1/3); There are two ways to write error-free programs; only the third one works.