Apr 7, 2004 #1 S11 Vendor Joined Apr 7, 2004 Messages 2 Location CH How do I program the calculation for a cube root? Can anyone help?
Apr 7, 2004 #2 GHolden Programmer Joined May 28, 2002 Messages 852 Location 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.
Apr 7, 2004 Thread starter #3 S11 Vendor Joined Apr 7, 2004 Messages 2 Location CH Thanks! Upvote 0 Downvote