Difference between revisions of "Math 22 Optimization Problems"
Jump to navigation
Jump to search
(Created page with "This page is under construction '''Return to Topics Page''' '''This page were made by Tri Phan'''") |
|||
(6 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | + | ==Solving Optimization Sample Problems== | |
+ | '''1) Maximum Area''': Find the length and width of a rectangle that has 80 meters perimeter and a maximum area. | ||
+ | |||
+ | {| class = "mw-collapsible mw-collapsed" style = "text-align:left;" | ||
+ | !Solution: | ||
+ | |- | ||
+ | |Let <math>l</math> be the length of the rectangle in meter. | ||
+ | |- | ||
+ | |and <math>w</math> be the width of the rectangle in meter. | ||
+ | |- | ||
+ | |Then, the perimeter <math>P=2(l+w)=80</math>, so <math>l+w=40</math>, then <math>l=40-w</math> | ||
+ | |- | ||
+ | |Area <math>A=l.w=(40-w)w=40w-w^2</math> | ||
+ | |- | ||
+ | |<math>A'=40-2w=0</math>, then <math>w=20</math>, so <math>l=40-w=40-20=20</math> | ||
+ | |- | ||
+ | |Therefore, <math>l=w=20</math> | ||
+ | |} | ||
+ | |||
+ | '''2) Maximum Volume''' A rectangular solid with a square base has a surface area of <math>337.5</math> square centimeters. Find the dimensions that yield the maximum volume. | ||
+ | |||
+ | {| class = "mw-collapsible mw-collapsed" style = "text-align:left;" | ||
+ | !Solution: | ||
+ | |- | ||
+ | |Let <math>a</math> be the length of the one side of the square base in centimeter. | ||
+ | |- | ||
+ | |and <math>h</math> be the height of the solid in centimeter. | ||
+ | |- | ||
+ | |Then, the surface area <math>S=2a^2+4ah=337.5</math>, so <math>h=\frac{337.5-2a^2}{4a}</math> | ||
+ | |- | ||
+ | |Volume <math>V=a^2h=a^2(\frac{337.5-2a^2}{4a})=\frac{1}{4}a(337.5-a^2)=\frac{337.5a}{4}-\frac{a^3}{4}</math> | ||
+ | |- | ||
+ | |<math>V'=\frac{337.5}{4}-\frac{3}{4}a^2=0</math>, then <math>a^2=\frac{225}{4}</math>, so <math>a=\pm\frac{25}{2}=\frac{25}{2}</math> since <math>a</math> is positive. | ||
+ | |- | ||
+ | |Hence, <math>h=\frac{337.5-2a^2}{4a}=h=\frac{337.5-2(\frac{25}{2})^2}{4\frac{25}{2}}=\frac{1}{2}</math> | ||
+ | |- | ||
+ | |Therefore, the dimensions that yield the maximum value is <math>a=\frac{25}{2}</math> and <math>h=\frac{1}{2}</math> | ||
+ | |} | ||
+ | |||
+ | '''3) Minimum Dimensions''': A campground owner plans to enclose a rectangular field adjacent to a river. The owner wants the field to contain <math>180000</math> square meters. No fencing is required along the river. What dimensions will use the least amount of fencing? | ||
+ | |||
+ | {| class = "mw-collapsible mw-collapsed" style = "text-align:left;" | ||
+ | !Solution: | ||
+ | |- | ||
+ | |Let <math>a</math> be the length of two sides that are connected to the river. | ||
+ | |- | ||
+ | |and <math>b</math> be the length of the sides that is opposite the river. | ||
+ | |- | ||
+ | |Then, the area <math>A=ab=180000</math>, so <math>b=\frac{180000}{a}</math> | ||
+ | |- | ||
+ | |The fence <math>F=2a+b=2a+\frac{180000}{a}</math> | ||
+ | |- | ||
+ | |<math>F'=2-\frac{18000}{a^2}=0</math>, then <math>a^2=9000</math>, so <math>a=\sqrt{9000}=\pm 30=30</math> since <math>a</math> is positive. Then, <math>b=\frac{180000}{30}=6000</math> | ||
+ | |- | ||
+ | |Therefore, the dimensions of the fence is <math>a=30</math> meters and <math>b=6000</math> meters. | ||
+ | |} | ||
+ | |||
[[Math_22| '''Return to Topics Page''']] | [[Math_22| '''Return to Topics Page''']] | ||
'''This page were made by [[Contributors|Tri Phan]]''' | '''This page were made by [[Contributors|Tri Phan]]''' |
Latest revision as of 08:47, 1 August 2020
Solving Optimization Sample Problems
1) Maximum Area: Find the length and width of a rectangle that has 80 meters perimeter and a maximum area.
Solution: |
---|
Let be the length of the rectangle in meter. |
and be the width of the rectangle in meter. |
Then, the perimeter , so , then |
Area |
, then , so |
Therefore, |
2) Maximum Volume A rectangular solid with a square base has a surface area of square centimeters. Find the dimensions that yield the maximum volume.
Solution: |
---|
Let be the length of the one side of the square base in centimeter. |
and be the height of the solid in centimeter. |
Then, the surface area , so |
Volume |
, then , so since is positive. |
Hence, |
Therefore, the dimensions that yield the maximum value is and |
3) Minimum Dimensions: A campground owner plans to enclose a rectangular field adjacent to a river. The owner wants the field to contain square meters. No fencing is required along the river. What dimensions will use the least amount of fencing?
Solution: |
---|
Let be the length of two sides that are connected to the river. |
and be the length of the sides that is opposite the river. |
Then, the area , so |
The fence |
, then , so since is positive. Then, |
Therefore, the dimensions of the fence is meters and meters. |
This page were made by Tri Phan