Question 388598
Graph the line, {{{x-y=1}}}
{{{y=x-1}}}
.
.
.
{{{graph(300,300,-10,10,-10,10,x-1)}}}
.
.
.
*[invoke plot_any_inequality "x-y>1", -10, 10, -10, 10, 300, 300]
.
.
.
Graph the line, {{{2x+5y=10}}}
{{{5y=-2x+10}}}
{{{y=-(2/5)x+2}}}
.
.
.
{{{graph(300,300,-10,10,-10,10,-(2/5)x+2)}}}
.
.
.
*[invoke plot_any_inequality "2x+5y>=10", -10, 10, -10, 10, 300, 300]
.
.
.
Graph the line, {{{y=2}}}
.
.
.
{{{graph(300,300,-10,10,-10,10,2)}}}
.
.
.
*[invoke plot_any_inequality "y<=2", -10, 10, -10, 10, 300, 300]
.
.
.
Now put it all together,
{{{drawing(300,300,-10,10,-10,10,
graph(300,300,-10,10,-10,10,x-1),
graph(300,300,-10,10,-10,10,-(2/5)x+2),
graph(300,300,-10,10,-10,10,2))}}}