document.write( "Question 1131043: You have exactly 36 units of red dye and 28 units of blue dye. Your boss also wants you to make as many gallons of unique color \"c\" and unique color \"d\" as possible. Each gallon of color c requires 1 unit of red dye and 2 units of blue dye. Each gallon of color d requires 6 units of red dye and 1 unit of blue dye. Find the most amount of gallons you can create of both color c and color d \n" ); document.write( "
Algebra.Com's Answer #747663 by ikleyn(52817)![]() ![]() You can put this solution on YOUR website! .\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "I will solve the problem using the Linear Programming method.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " \r\n" ); document.write( "Let X and Y be the numbers of gallons of liquid C and D, respectively.\r\n" ); document.write( "\r\n" ); document.write( "\r\n" ); document.write( "Then the objective function is F(X,Y) = X + Y.\r\n" ); document.write( "\r\n" ); document.write( "\r\n" ); document.write( "The constraint inequalities are\r\n" ); document.write( "\r\n" ); document.write( "1*x + 6*Y <= 36 (1) (red dye constraint)\r\n" ); document.write( "2*X + 1*Y <= 28 (2) (blue dye constraint)\r\n" ); document.write( "\r\n" ); document.write( "X >= 0, Y >= 0.\r\n" ); document.write( "\r\n" ); document.write( "\r\n" ); document.write( "The feasibility region is shown in the figure below.\r\n" ); document.write( "\r\n" ); document.write( "It is the quadrilateral in QI, adjacent to x- and y- axes and constrained by the red and the green lines.\r\n" ); document.write( "\r\n" ); document.write( "\r\n" ); document.write( "\r\n" ); document.write( "\r \n" ); document.write( "\n" ); document.write( "Solved.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "-----------------\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "If you want to see other similar minimax problems, solved by the Linear programming method, look into the lesson\r \n" ); document.write( "\n" ); document.write( " - Solving minimax problems by the Linear Programming method \r \n" ); document.write( "\n" ); document.write( "in this site.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " |