So, I am intrigued by the function
y=x^x
In the past, I've only been able to see the imaginary output and real output of this graph as separate functions. My goal, using this program, is to achieve the following:
I need to create a 3D plot that:
- Has an X axis that represents real input for the function y=x^x
- Has one Y axis that represents real output for y=x^x
- Has a secondary Y axis that represents imaginary output for y=x^x
However, this should not simply be two flat graphs on two separate planes; that's not what I'm trying to accomplish. For example, if -0.25 is input as x, the output should be one point, located at the coordinate (-0.25, 1, -i) for (X, Y1, Y2) because (-0.25)^(-0.25) = 1-i. Thus, I would expect this graph to produce some continuous "line" looking function that moves through 3D space as described above. However, I have no idea how to accomplish this whatsoever. Any recommendations? Any help would be greatly appreciated.