Quiz 9 is here.
Solutions follow.
Problem 1 tells us that a rectangular piece of cardboard of dimensions is used to make an open-top box by cutting out a small square of side
from each corner and bending up the sides. If
, then the volume of the box is
. Starting from this initial guess of
, the problem asks us to use Newton’s method to find a value of
for which the box has volume 100, accurate to 3 significant figures.
To solve the problem, first we observe that for any , the volume of the box is
, as a quick diagram would indicate. We want to solve the equation
using Newton’s method. Since the method is designed to solve equations of the form , we take
. In the method, we begin with an initial guess
and then compute further guesses
by means of the formula
In the case that concerns us, and (using the product rule)
.
The file below was produced using the software package Sage, which can be downloaded for free at the link. (As a side note, if you expect through your careers you will be doing a significant amount of non-trivial computations, it may be a reasonable investment of time to learn how to use one or two software packages. I like Sage personally, but of course there are many other alternatives, although not all are free.)
In the file, the value of each new guess is shown both exactly (as a fraction) and then numerically. As can be seen from the computations above, is a very reasonable approximation to the solution of
.
Problem 2 tells us that the U.S. post office will accept a box for shipment only if the sum of the length and girth (distance around) is at most 108 in. We are asked to find the dimensions of the largest acceptable box with square front and back.
To solve this problem, we imagine a box with square front of side length , and width
. We are told that
. We are also asked to maximize the volume of the box. But the volume can be easily computed by the formula
. Clearly, if we fix the value of
and increase the value of
, the volume increases. This means that we may as well suppose that
. Then
and
We need to optimize this volume subject to the restrictions that and
. For this, we solve
. We have
We have that iff
or
. Hence, we need to check the value of
when
,
, and
.
In the first and last cases, . In the second one,
. It follows that this is the maximum volume, and it is achieved when
inches, and
inches.