Is it possible to plot $|x|+|y|<=1$ directly in maple?
I have looked at inequal() but can't find any examples with absolute values and can't get it to work.
Asked
Active
Viewed 271 times
2
Glorfindel
- 3,955
lgwest
- 123
1 Answers
3
plots:-inequal(abs(x)+abs(y)<=1,x=-2..2,y=-2..2);
plots:-implicitplot(abs(x)+abs(y)<=1,x=-2..2,y=-2..2,
gridrefine=1,filledregions,
view=[-2..2,-2..2]);
acer
- 5,293

