document.write( "Question 1205183: \"Extremista\" produces two products, A and B, which have profits of $9 and $7, respectively. Each unit of product must be processed on two assembly lines, where the required production times are as follows:\r
\n" );
document.write( "\n" );
document.write( "Product Hours/Unit
\n" );
document.write( " Line 1 Line 2
\n" );
document.write( "A 12 4
\n" );
document.write( "B 4 8
\n" );
document.write( "Total hours 60 40\r
\n" );
document.write( "
\n" );
document.write( "\n" );
document.write( "a. Formulate a Linear Programing model and determine the optimal mix of products that will
\n" );
document.write( "maximize profits. (9 marks)
\n" );
document.write( "b. Sketch the graph of the model you have developed. (5 marks)
\n" );
document.write( "c. What would be the effect on the optimal solution if the profit for Product B was moved from
\n" );
document.write( "$7 to $15. (6 marks) \n" );
document.write( "
Algebra.Com's Answer #841857 by Theo(13342)![]() ![]() You can put this solution on YOUR website! your objective function is 9x + 7y which you want to maximize.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "your constraint inequalities are: \n" ); document.write( "12x + 4y <= 60 \n" ); document.write( "4x + 8y <= 40\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "using the desmos.com calculator, you would: \n" ); document.write( "graph the opposite of the inequalities. \n" ); document.write( "the area on the graph not shaded is the region of feasibility. \n" ); document.write( "at least one of the corner points of this region contain he maximum profit. \n" ); document.write( "you find this by evaluating the objective function at each corner point.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "this is what the graph looks like.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " ![]() \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "maximum profit is at the coordinate point of (4,3). \n" ); document.write( "the profit is 4 * 9 + 3 * 7 = 57 \n" ); document.write( "all the constraints are satisfied, as they need to be. \n" ); document.write( "12x + 4y = 12 * 4 + 4 * 3 = 60 <= 60 \n" ); document.write( "4x + 8y = 4 * 4 + 8 * 3 = 40 <= 40\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "if the profit for product B was 15 instead of 7, ..... \n" ); document.write( "the constraints would remain the same. \n" ); document.write( "the profit for each option: \n" ); document.write( "at (0,5) would become 0 * 9 + 5 * 15 = 75 instead of 0 * 9 + 5 * 7 = 35. \n" ); document.write( "at (4,3) would become 4 * 9 + 3 * 15 = 81 instead of 4 * 9 + 3 * 7 = 57. \n" ); document.write( "at (5,0) would become 5 * 9 + 0 * 15 = 45 same as 5 * 9 + 0 * 7 = 45. \n" ); document.write( "the maximum profit would remain at (4,3). \n" ); document.write( "that means 4 units of product A plus 3 units of product B. \n" ); document.write( " |