document.write( "Question 110452: 1. Matrix methods can be used to solve linear programming problems. A linear programming problem is used to find an optimal solution, subject to stated restraints.
\n" );
document.write( "One typical application is to maximize profits. For example, a beauty parlor provides both highlighting and permanent wave services. It costs $5 in materials and requires 30 minutes to provide highlighting. However, it costs $12 in materials but requires 80 minutes to provide a perm. The store has at most $120 in materials and 800 minutes in labor per day to expend.
\n" );
document.write( "How many highlighting services and how many perms can the beauty parlor perform daily to maximize cost and time?
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #80508 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! One typical application is to maximize profits. For example, a beauty parlor provides both highlighting and permanent wave services. \n" ); document.write( "It costs $5 in materials and requires 30 minutes to provide highlighting. \n" ); document.write( "It costs $12 in materials but requires 80 minutes to provide a perm. \n" ); document.write( "The store has at most $120 in materials and 800 minutes in labor per day to expend. \n" ); document.write( "How many highlighting services and how many perms can the beauty parlor perform daily to maximize cost and time? \n" ); document.write( "---------------- \n" ); document.write( "Let \"h\" be # of highlighting jobs ; Let \"P\" be # of perm jobs. \n" ); document.write( "h>=0 \n" ); document.write( "p>=0 \n" ); document.write( "Materials Inequality : 5h + 12m <= 120 \n" ); document.write( "Time Inequality : 30h + 80m <= 800 \n" ); document.write( "------------------------------ \n" ); document.write( "Graph these equations on a h/m coordinate system. \n" ); document.write( "h <= (-12/5)m+24 \n" ); document.write( "h <= (-8/3)m + 80/3 \n" ); document.write( "------------------------- \n" ); document.write( " \n" ); document.write( "---------------------------- \n" ); document.write( "Find the vertices of the solution space: \n" ); document.write( "(0,0), (0,24), (0,10) \n" ); document.write( "--------------- \n" ); document.write( "Determine Profit at these vertex values: \n" ); document.write( "(0,0) implies 0 profit \n" ); document.write( "(0,24) implies 12*24 = $288 profit \n" ); document.write( "(0,10 implies 12*10 = $120 profit \n" ); document.write( "========================= \n" ); document.write( "Cheers, \n" ); document.write( "Stan H.\r \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " |