I'm new to Mathematica, and I'm finding it difficult to plot an ellipse. I tried using
Plot[(x/5)^2 + (y/3)^2 == 1, {x, -5, 5}, {y, -3, 3}]
but I'm getting some errors. Is there something wrong with the syntax? Or do I need to rewrite the equation and plot?





Plotgenerates a plot of f as a function of x from xmin to xmax". So you're using too many variables. – cormullion Feb 24 at 16:05