在Mathematica 10上绘图需要帮助

时间:2014-11-11 21:40:09

标签: function wolfram-mathematica alpha graphing

如果我想图tan (x^y) = tan (y^x),我可以输入什么?我已经尝试了Plot[Tan x^y = Tan y^x, {y, x, 0, 5}]以及其他一些事情而且它不起作用。

1 个答案:

答案 0 :(得分:0)

应该是ContourPlot而不是

 ContourPlot[ Tan[  y^x ] == Tan[ x^y ]    , {x, 0, 5} , {y, 0, 5 } , PlotPoints -> 100]

enter image description here

不幸的是,在y^x== (2 n + 1 ) Pi/2

中找到了一些错误的解决方案

或者您可以更快/更清楚地捕获某些解决方案:

 Show@
   Table[
     ContourPlot[y^x - x^y   + n Pi  == 0  , {x, 0, 5} , {y, 0, 5 } ],
   {n, -20, 20}]

enter image description here