Eric C. answered 10/28/16
Tutor
5.0
(180)
Engineer, Surfer Dude, Football Player, USC Alum, Math Aficionado
Hi Olivia.
Cost optimization problems can be pretty tricky! What you'll notice is that the cost is a function of surface area. This particular cylinder has different costs for the sides and for the top, so you need to break the surface area of the cylinder into lateral surface area and surface area of the ends.
For a cylinder of radius r and height h, the lateral surface area is:
LSA = 2*pi*r*h [it's the perimeter times the height]
The top/ bottom surface area is:
SA = 2*pi*r2 [it's the area of two circles]
It says the cost of the side material is $1.50 per square foot, so the amount of money you'll spend on the sides is:
Cost/ lateral square foot * total lateral square feet
= $1.50*(2*pi*r*h) = 3*pi*r*h
The cost of the top and bottom will be
Cost/ end surface area * total surface area of the ends
= $2.00*(2pi*r2) = 4*pi*r2
So your total cost for 1 entire cylinder as a function of r and h is:
C(r,h) = 3*pi*r*h + 4*pi*r2
I don't like dealing in multiple variables though. It would be nice if everything were r. Fortunately, we have a volume equation to help us out with that. For a cylinder,
V = pi*r2*h
For THIS particular cylinder, V = 6. So:
6 = pi*r2*h
h = 6 / (pi*r2)
We can substitute this value into our cost function to make it entirely a function of r.
C(r) = 3*pi*r*[6 / pi*r2] + 4*pi*r2
C(r) = 18/r + 4*pi*r2
Cool. Now we have our cost function. We want to minimize this, so let's take its derivative and set it equal to zero.
C'(r) = -18/r2 + 8*pi*r
0 = -18/r2 + 8*pi*r
18/r2 = 8*pi*r
r3 = 18/(8pi)
r3 = 9/(4pi)
r = (9/(4pi))1/3
What an ugly value. Anyway, if this is your rmin then your Costmin must be:
C = 18/(9/(4pi))1/3 + 4*pi*((9/(4pi))1/3)2
This result is roughly $30.18. That's how much the cheapest cylinder to make will cost to make. Usually the numbers are a lot prettier than this.
Hope this helps!