Question: Let X and Y be two continuous random variables with joint probability density function
$$f(x,y)=\begin{cases}\frac{1}{2} & \text{if} \ \lvert x \rvert + \lvert y \rvert \le 1 & \\ 0 :\ \ \ \ \ \ \ \ \ \text{otherwise}\end{cases}$$
Find the joint probability density function of $U=X+Y$ and $V=X-Y$
My attempt: I know the general method with these types of questions is very similar however I'm not sure how to calculate any of it in this case.
Here is a somewhat related transformation. Does it give you any ideas?
Suppose the joint distribution of $U$ and $V$ is uniform on the square with vertices at $(0,0)$ and $(1,1).$ Then consider the joint distribution of $X = (U + V)/2$ and $Y = (U-V)/2.$
Here are plots of 20,000 such points:
Addendum: Because of continuing interest in this Question, I am appending a demonstration of the exact transformation described (rather than a 'related' transformation as a hint.)
The joint distribution of $X$ and $Y$ has the density function $f_{X,Y}(x,y) = 1/2,$ for $x$ and $y$ in the square with vertices at $(1, 0),\, (0, 1),\, (-1, 0),$ and $(0, -1),$ and $0$ elsewhere. The program below uses an acceptance-rejection method to generate 20,000 points in the support of $(X, Y)$. The distribution is illustrated by these points in the left-hand panel of the figure below.
Then it uses the transformation $U = X + Y,\,$ $V = X - Y$ of these points to illustrate the jointly uniform distribution of $U$ and $V$ on the square with diagonal vertices at $(-1, -1)$ and $(1,1).$ The target joint PDF is $f_{U,V}(u,v) = 1/4,$ for $(x,y)$ in that square, and $0$ elsewhere. This distribution is illustrated in the right-hand panel of the figure below.
The transformation can be described as a reflection about the $x$-axis followed by a 45 degree clockwise rotation (so far orthonormal), and then a scaling to double the area of the support of $(U,V).$ A point and its image under transformation are plotted in the same color to help show the nature of the transformation. (Red components of the RGB color specification are proportional to $x$ and blue components proportional to $y$; the 'background' green component is constant.)
I guess, all that remains for the requested 'canonical' derivation of the PDF of $(U,V)$ is to show the Jacobian of the transformation and algebra to verify the support of $(U,V).$
The R code is shown below, in case it is of interest.