Q: A grain silo consists of a cylindrical main section and a hemispherical roof. If the total volume of the silo (including the part inside the roof section) is 16,000 ft3 and the cylindrical part is 30 ft tall, what is the radius of the silo, correct to the nearest tenth of a foot?
I started working from this equation for volume (cylinder and half of a sphere)...
V=(pi)(r^2)(h)+(2(pi)r^3)/(3)
Plugged in the given values and solved for the radius but haven't gotten the correct answer yet.
Can anyone help?
As Parcly Taxel answered, we know that $r=10$ is an underestimation. Use Newton method using $r_0=10$ for finding the zero of function $$f(r)=\pi r^2\left(\frac23 r+30\right)-16000 $$ The iterates will be given by $$r_{n+1}=\frac{2 \pi r_n^3+45 \pi r_n^2+24000}{3 \pi r_n(r_n+30)}$$ and will be $$r_1=11.7829$$ $$r_2=11.6176$$ $$r_3=11.6161$$ which is the solution for six significant figures.
As Parcly Taxel commented, using Cardano's method would give a monster as a formula.