Solver Volume of a Hollow Sphere
Algebra
->
Volume
-> Solver Volume of a Hollow Sphere
Log On
Geometry: Volume, Metric volume
Geometry
Solvers
Solvers
Lessons
Lessons
Answers archive
Answers
Source code of 'Volume of a Hollow Sphere'
This Solver (Volume of a Hollow Sphere)
was created by by
zerosignal(28)
:
View Source
,
Show
,
Put on YOUR site
About zerosignal
:
mechanical engineer
==section input Find volume of material needed to produce a hollow sphere with: outside diameter *[input x=3] inside diameter *[input y=2] ==section solution perl $v = 3.141592654/6*(($x*$x*$x)-($y*$y*$y)); print "Volume of a hollow sphere {{{V=(pi/6)*(x^3-y^3) = (0.523598775)*($x^3-$y^3) = $v}}}"; ==section output v ==section check