document.write( "Question 1141898: Formulate but do not solve the following exercise as a linear programming problem.
\n" );
document.write( "A nutritionist at the Medical Center has been asked to prepare a special diet for certain patients. She has decided that the meals are to be prepared from Foods A and B and that the meals should contain a minimum of 380 mg of calcium, 10 mg of iron, and 40 mg of vitamin C. Each ounce of Food A contains 30 mg of calcium, 3 mg of iron, 5 mg of vitamin C, and 4 mg of cholesterol. Each ounce of Food B contains 25 mg of calcium, 0.5 mg of iron, 5 mg of vitamin C, and 5 mg of cholesterol. How many ounces of each type of food should be used in a meal so that the cholesterol content C (in mg) is minimized and the minimum requirements of calcium, iron, and vitamin C are met?
\n" );
document.write( "Minimize C = subject to the constraints
\n" );
document.write( "calcium=
\n" );
document.write( "
\n" );
document.write( "iron =
\n" );
document.write( "
\n" );
document.write( "vitamin C=
\n" );
document.write( "
\n" );
document.write( "x ≥ 0
\n" );
document.write( "y ≥ 0 \n" );
document.write( "
Algebra.Com's Answer #762566 by Theo(13342)![]() ![]() You can put this solution on YOUR website! x = number of milligrams of food A. \n" ); document.write( "y = number of milligrams of food B.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "you want to minimize the number of milligrams of cholesterol.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "your objective function is therefore c = 4x + 5y\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "your constraint functions are:\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "calcium:\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "30x + 25y >= 380\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "iron:\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "3x + .5y >= 10\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "vitamin C:\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "5x + 5y >= 40\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " |