I want to visualize the following set in Maple:
$\lbrace (x+y,x-y) \vert (x,y)\in (-\frac{1}{2},\frac{1}{2})^{2} \rbrace$
Which commands should I use? Is it even possible?
I want to visualize the following set in Maple:
$\lbrace (x+y,x-y) \vert (x,y)\in (-\frac{1}{2},\frac{1}{2})^{2} \rbrace$
Which commands should I use? Is it even possible?
On
The domain S can be visualized as a plot of the shaded interior of a polygon (square). This plot can be transformed by the given mapping.
f := plottools:-transform((x,y)->[x+y,x-y]):
S := plots:-polygonplot([[-1/2,-1/2], [-1/2,1/2],
[1/2,1/2], [1/2,-1/2]],
axes=box):
plots:-display(Array([S, f(S)]));
Try this: