document.write( "Question 1151913: Pulse Fuels produces two types of additive blends, A and B. Blend A sells at PhP 1200/liter while Blend B sells at PhP 2000/liter. Its manager would like to maximize revenue by producing the right
\n" );
document.write( "combination of the two additive blends.\r
\n" );
document.write( "\n" );
document.write( "Currently, the company outsources its labor due to the seasonal nature of its products. Its contract with its labor provider requires that a minimum of 5,400 hours be utilized every month. If not utilized, the company will still have to pay the equivalent of 5,400 hours. Each liter of Blend A requires 3 hours of labor while each liter of Blend B requires 1.8 hours. On the other hand, its equipment availability is limited to 9,600 hours per month. Each liter of Blend A requires 2 hours of equipment time while each liter of Blend B requires 3 hours of equipment time. Its Marketing Department has estimated that at least 1000 liters per month of Additive Blend A can be sold while the monthly market demand for Additive Blend B is at least 400 liters. Its Operations Manager has informed the GM that the existing configuration of the operating plant (with a 4000-liter/month capacity) will require that one liter of Additive Blend A is produced for every 2 liters of Additive Blend B. Furthermore, the 4000-liter/month plant must operate, at the least, at 67.5% of its monthly capacity to make it operationally viable. \n" );
document.write( "
Algebra.Com's Answer #773879 by ikleyn(52946) You can put this solution on YOUR website! .\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " First, I will write / (copy) all constraints from the post by @Theo.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " Then I will show that the problem can be solved analytically in a very simple manner and without using any tools from the outside.\r \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " \r\n" ); document.write( "x = liters of A; y = liters of B.\r\n" ); document.write( "\r\n" ); document.write( "The objective function is r = 1200x + 2000y.\r\n" ); document.write( "\r\n" ); document.write( "r stands for revenue.\r\n" ); document.write( "\r\n" ); document.write( "This is what you want to maximize.\r\n" ); document.write( "\r\n" ); document.write( "The constraint functions are:\r\n" ); document.write( "\r\n" ); document.write( "3x + 1.8y >= 5400. (1)\r\n" ); document.write( "\r\n" ); document.write( "2x + 3y <= 9600. (2)\r\n" ); document.write( "\r\n" ); document.write( "x >= 1000 (3)\r\n" ); document.write( "\r\n" ); document.write( "x >= 400 (4)\r\n" ); document.write( "\r\n" ); document.write( "x + y <= 4000 (5)\r\n" ); document.write( "\r\n" ); document.write( "x + y >= 2700 (equals .675 * 4000) (6)\r\n" ); document.write( "\r\n" ); document.write( "y = 2x (7)\r\n" ); document.write( "\r\n" ); document.write( "x >= 0, y >= 0 (8)\r\n" ); document.write( "\r\n" ); document.write( "\r\n" ); document.write( "\r\n" ); document.write( "I start from constraint (1). I substitute there y = 2x from (7) to get\r\n" ); document.write( "\r\n" ); document.write( " 3x + 1.8y >= 5400 ---> 3x + 1.8*(2x) >= 5400 ---> 6.6x >= 5400 ---> x >=\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "The solution is completed, with all imposed constraints (!)\r \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "-----------------\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "The lesson to learn from my solution is THIS :\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " \r\n" ); document.write( " The constraint (7) reduces the problem from 2D (two variable on the plane) to 1D (one variable ONLY (!) )\r\n" ); document.write( "\r \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " |