Howdy- I am trying to find the radius of a pool with only the amount of water in cubic feet as input. In a previous problem, I had to figure the volume of water (in cubic feet), but I already had the radius of the pool using this :
volWater = 3.14 * pow(radPond, 2.0) * 11 //11 is the height of the pool)
Now I need to find the radius of the pond with only cubic feet as the input. I cant for the life of me figure out how to go backwards and figure the radius (radPond).
Any help is much appreciated! Jeff