In: Statistics and Probability
Consider the following linear program, which maximizes daily total profit for two products, regular (R), and super (S):
MAX Z = 50R + 75S
s.t.
1.2R + 1.6 S ≤ 600 assembly (hours)
0.8R + 0.5 S ≤ 300 paint (hours)
.16R + 0.4 S ≤ 100 inspection (hours)
R, S ≥ 0
Implement the LP problem in a spreadsheet model and invoke Solver to obtain the optimal solution. Use label and formatting to enhance readability of model and Solver reports.
<Paste screenshot of spreadsheet model>
<Paste screenshot of Answer Report>
<Paste screenshot of Sensitivity Report>
Solution :
for simplicity here we take R =x1 and S = x2
therefore maximum daily profit is 24583.3333
Thank You..!!