So I was trying to plot$$W(z^2)W(1/z)$$where $W(z)$ is the product log function and $z=x+yi$ in Desmos 3D (since Desmos recently(?) released a 3D version which is great for plotting 3D functions). I know the graph should look something like this:
Mathematica code used to generate this graph:
ComplexPlot3D[ProductLog[z^2]ProductLog[1/z],{z,-10-10I,10+10I}]
however here's the problem I'm having when plotting this in Desmos 3D:
- I can't put in $i=\sqrt{-1}$ into Desmos since it's not defined.
- When I use $z=x+y$, this happens:
which I verified to be the real plot of $$W(x^2+2xy+y^2)W(1/(x+y))$$using the following Mathematica code:
Plot3D[ProductLog[(x+y)^2]ProductLog[1/(x+y)],{x,-10,10},{y,-10,10}]
so my question is: What am I doing wrong to plot $W(z^2)W(1/z)$ where $W(z)$ is the product log function and $z=x+yi$ in Desmos 3D?



