This function
f(x) = { 0, x = 0
{ 1 - x, 0 < x < = 1
is not continuous on [0, 1].
So I wrote
f := x -> piecewise (x = 0,0,x > 0,1-x);
plot(f,0..1);
But Maple doesn't show the lack of continuity. (discont=true doesn't do anything here). Can I improve the plot?
Alla