Chiuso . Questa domanda richiede dettagli o chiarezza . Attualmente non accetta risposte.
Commenti
Risposta
In Mathematica tongue x^2 - y^2 = 1
si pronuncia
x^2 - y^2 == 1
x ^ 2-y ^ 2 = 1
È uniperbole, Wolfram | Alpha è molto utile per i primi risultati,
Anche il Centro documentazione (premere F1) è utile, vedere Visualizzazione delle funzioni ,
Plot3D[x^2 - y^2 == 1, {x, -5, 5}, {y, -5, 5}]
ContourPlot3D[x^2 - y^2 == 1, {x, -5, 5}, {y, -5, 5}, {z, -5, 5}]
RegionPlot3D[x^2 - y^2 - 1 > 0, {x, -5, 5}, {y, -5, 5}, {z, -5, 5}]
E per ottenere il Wo lfram | Alpha Plot:
ContourPlot[x^2 - y^2 == 1, {x, -5, 5}, {y, -5, 5}, Axes -> True, Frame -> False, AxesLabel -> {x, y}]
Risposta
Prendendo lidea di Rahul “:
ContourPlot3D[x^2 - y^2 == 1, {x, -2, 2}, {y, -2, 2}, {z, -2, 2}]
Risposta
Show[ ParametricPlot3D[{u,Sqrt[u^2-1],v},{u,-2,2},{v,-2,2}], ParametricPlot3D[{u,-Sqrt[u^2-1],v},{u,-2,2},{v,-2,2}] ]
ContourPlot3D
.