MATLAB Explore x^y=y^x Function: Graphs, MatLab & Oddities

  • Thread starter Thread starter cronxeh
  • Start date Start date
AI Thread Summary
The discussion focuses on the mathematical function x^y = y^x, with users sharing graphs created in MatLab and expressing confusion over unexpected results. A specific plot generated in MatLab raised concerns about its accuracy, leading to questions about the software's functionality. Participants noted that the plotting region may be problematic, as x^y and y^x are not well-defined in certain areas. The conversation emphasizes the complexities of visualizing this function and the challenges posed by multivariable plotting. Overall, the thread highlights the intriguing nature of the function and the technical difficulties encountered in its graphical representation.
cronxeh
Gold Member
Messages
1,004
Reaction score
11
I'd like to resurrect the discussion of this interesting function.

Here are a few captivating pictures:

First is a graph of x^y=y^x :
http://www.imag.us/x/cronx/untitledxy.JPG


Second one was achieved in MatLab 6.5:
http://www.imag.us/x/cronx/xyplot2.JPG
EDU>> ezplot('x^y-y^x',[-150,-148])
I rotated the picture 90 degrees

Now this one seemed a bit odd to me.. any thoughts?


Edit:

Ok I'm freaking out here.. is my MatLab out of whack??
Plot of x^y=-y^x :
http://www.imag.us/x/cronx/wtfplot.JPG
 
Last edited by a moderator:
Physics news on Phys.org
Maple 10.02 gives funny stuff too:

https://my.ryerson.ca/bbcswebdav/users/m4yip/gt4/xy.gif

Here's the code I used:

Code:
restart:
with(plots):
a := implicitplot((x^y=y^x), x=-200..200, y=-200..200);
display({a});
 
Last edited by a moderator:
Can I get a confirmation of this plot? I don't have that many applications that can do multivar plots
 
I would say that your problem is almost entirely due to the fact that you're trying to plot in a region where x^y and y^x are defined almost nowhere.
 

Similar threads

Replies
1
Views
4K
Replies
4
Views
2K
Replies
1
Views
2K
Replies
5
Views
3K
Replies
2
Views
3K
Back
Top