In Derive 6, if I plot $1 - x^2 - y^2 $, I get this:

However in Mathematica 8 I get this:

I'm using Plot3D[1 - x^2 - y^2,{x,-5,5},{y,-5,5}]
What should I do in Mathematica in order to get Derive's result?
|
For starters, you need to fix the To further bring your Mathematica output closer to Derive's, you'll have to customize it using the different options for
|
|||||||||||||
|
|
Here's how Mathematica plots it simply by adjusting the
|
|||
|
|
PlotRangeandBoxRatiosin the documentation. You need to addPlotRange -> {-5, 5}andBoxRatios -> 1to your plotting command. – rm -rf♦ Nov 4 '12 at 21:38