W języku Mathematica x^2 - y^2 = 1
wymawia się jako
x^2 - y^2 == 1
x ^ 2-y ^ 2 = 1
To jest hiperbola, Wolfram | Alpha to bardzo pomocne dla pierwszych ustaleń,
Centrum dokumentacji (wciśnij F1) również jest pomocne, zobacz Wizualizacja funkcji ,
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}]
Aby otrzymać Wo lfram | Alpha Plot:
ContourPlot[x^2 - y^2 == 1, {x, -5, 5}, {y, -5, 5}, Axes -> True, Frame -> False, AxesLabel -> {x, y}]
Biorąc pod uwagę pomysł Rahula:
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}] ]