Question 110452
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. 
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. 
How many highlighting services and how many perms can the beauty parlor perform daily to maximize cost and time?
----------------
Let "h" be # of highlighting jobs ; Let "P" be # of perm jobs.
h>=0
p>=0
Materials Inequality : 5h  + 12m <= 120
Time Inequality      : 30h + 80m <= 800
------------------------------
Graph these equations on a h/m coordinate system.
h <= (-12/5)m+24
h <= (-8/3)m + 80/3
-------------------------
{{{graph(400,300,-10,50,-10,50,(-12/5)x+24,(-8/3)x+(80/3))}}}
----------------------------
Find the vertices of the solution space:
(0,0), (0,24), (0,10)
---------------
Determine Profit at these vertex values: 
(0,0) implies 0 profit
(0,24) implies 12*24 = $288 profit
(0,10 implies 12*10 = $120 profit
=========================
Cheers,
Stan H.