
for values of x near 2. [[ x ]] denotes the greatest integer less than or equal to x.
Maple uses the command floor for the greatest integer function.
> plot(floor(x),x=-2..5,discont=true,color=blue);

> limit(floor(x),x=1);
> limit(floor(x),x=1,right);
> limit(floor(x),x=1,left);
> g:=x->floor(x)+floor(-x);

> g(2);
> limit(g(x),x=2);
> plot(g(x),x=-2..5);
