MTH 120

To use Sage to solve a linear programming problem, type your model underneath the "load" line, following the example
var('x1 x2')
maximize(20*x1 + 10*x2, {3*x1 + x2 <= 1300, x1 + 2*x2 <= 600, x2 <= 250})
then click on "Evaluate". The answer will appear in a box below.