document.write( "Question 1131669: Andrew McCarroll is trying to determine how many units each of two cordless telephones to produce each day. One of these is the standard model; the other one is the deluxe model. The profit per unit on the standard model is $40, on the deluxe model $60. Each unit requires 30 minutes assembly time. The standard model requires 10 minutes of inspection time, the deluxe model 15 minutes. The company must fill an order for six standard phones. There are 450 minutes of assembly time and 180 minutes of inspection time available each day. How many units of each product should be manufactured to maximize profits? \n" ); document.write( "
Algebra.Com's Answer #748836 by greenestamps(13367)\"\" \"About 
You can put this solution on YOUR website!


\n" ); document.write( "let x = number of standard models
\n" ); document.write( "let y= number of deluxe models

\n" ); document.write( "Constraints:

\n" ); document.write( "# of standard models: x >= 6 (the statement of the problem seems to say x must be EQUAL to 6; I assume it is supposed to mean AT LEAST 6)
\n" ); document.write( "assembly time: 30x+30y <= 450 --> x+y <= 15
\n" ); document.write( "inspection time: 10x+15y <= 180 --> 2x+3y <= 36

\n" ); document.write( "Graph the constraint boundary lines

\n" ); document.write( "\"graph%28400%2C400%2C-2%2C20%2C-2%2C20%2C15-x%2C12-%282%2F3%29x%29\"

\n" ); document.write( "The corners of the feasibility region, remembering that x >= 6, are (6,0), (6,8), (9,6), and (15,0).

\n" ); document.write( "Evaluate the objective function at each corner:

\n" ); document.write( "(6,0): 40(6)+60(0) = 240
\n" ); document.write( "(6,8): 40(6)+60(8) = 720
\n" ); document.write( "(9,6): 40(9)+60(6) = 720
\n" ); document.write( "(15,0): 40(15)+60(0) = 600

\n" ); document.write( "The maximum profit is $720, with EITHER 6 standard models and 8 deluxe models, OR 9 standard models and 6 deluxe models.

\n" ); document.write( "(If indeed the intent of the problem was supposed to be that EXACTLY 6 standard models are produced, then of course the solution is at (6,8).)

\n" ); document.write( "Note as a refinement of this process, you can determine the corner of the feasibility region with the maximum profit without evaluating the objective function at every corner. The corner with the maximum profit can be found by comparing the slopes of the constraint lines and the objective function.

\n" ); document.write( "In this problem, the constraint lines have slopes of -1 and -2/3; the objective function also has a slope of -2/3. Because the slope of the objective function is equal to the slope of one of the constraint lines, the maximum profit will be anywhere along the boundary of the feasibility region with a slope of -2/3.

\n" ); document.write( "In larger problems, this can give several combinations that yield maximum profit; in this problem, where the numbers are small and have to be integers, we find exactly two solutions.

\n" ); document.write( "In more complex linear programming problems, where the feasibility region has several corners, this can save a lot of time in finding the answer.
\n" ); document.write( "
\n" );