I can't seem to solve the age old sphere volume equation (V=(4/3)*PI*r^3) for volume. This is driving me crazy so please help me out if you get a chance!
2006-09-22
12:10:38
·
6 answers
·
asked by
Steve K
1
in
Science & Mathematics
➔ Mathematics
Sorry - typo - I'm trying to solve for the Radius - I have the volume.
2006-09-22
12:15:48 ·
update #1
Thanks for the correct formula! I used it in Actionscript (Flash) to do this:
http://www.teratechnologies.net/devel/spheres.html
In case somone else wants to add 2 spheres in Actionscript and get the redius of the resulting sphere, here's the code:
Radius = Math.pow(volume/((4/3)*Math.PI),(1/3))
2006-09-22
12:48:21 ·
update #2