În limba Mathematica x^2 - y^2 = 1
se pronunță ca
x^2 - y^2 == 1
x ^ 2-y ^ 2 = 1
Este o hiperbolă, Wolfram | Alpha este foarte util pentru primele descoperiri,
Centrul de documentare (apăsat F1) este de asemenea util, consultați Vizualizarea funcției ,
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}]
Și pentru a obține Wo lfram | Alpha Plot:
ContourPlot[x^2 - y^2 == 1, {x, -5, 5}, {y, -5, 5}, Axes -> True, Frame -> False, AxesLabel -> {x, y}]
Luând ideea lui Rahul:
ContourPlot3D[x^2 - y^2 == 1, {x, -2, 2}, {y, -2, 2}, {z, -2, 2}]
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}] ]