I would like to plot the astroid which is given by:
$x^{2/3} + y^{2/3} = 1$
When I use
ContourPlot[x^(2/3) + y^(2/3) == 1, {x, -1, 1}, {y, -1, 1}, Axes -> True]
it only plots the first quadrant. If I try any other fractional powers the same thing happens. However, as soon as I use integer powers, for example if I want to plot a circle, it draws all 4 quadrants just fine. How do I make this work?
Thanks!
Surd. For exampleSurd[x^2, 3]. – wxffles Apr 13 '16 at 23:58ContourPlot[(x^2)^(1/3) + (y^2)^(1/3) == 1, {x, -1, 1}, {y, -1, 1}, Axes -> True]and report back. Alternatively, the astroid has the parametric equations{Cos[t]^3, Sin[t]^3}that you can use. – J. M.'s missing motivation Apr 14 '16 at 00:19{}button above the edit window. The edit window help button?is also useful for learning how to format your questions and answers. You may also find this this meta Q&A helpful – Michael E2 Apr 14 '16 at 00:21