Gesloten . Deze vraag heeft details of duidelijkheid nodig. Het accepteert momenteel geen antwoorden.
Reacties
Antwoord
In Mathematica wordt x^2 - y^2 = 1
uitgesproken als
x^2 - y^2 == 1
x ^ 2-y ^ 2 = 1
Het is een hyperbool, Wolfram | Alpha is zeer nuttig voor de eerste bevindingen,
Het documentatiecentrum (hit F1) is ook nuttig, zie Function Visualization ,
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}]
En om de Wo lfram | Alpha Plot:
ContourPlot[x^2 - y^2 == 1, {x, -5, 5}, {y, -5, 5}, Axes -> True, Frame -> False, AxesLabel -> {x, y}]
Answer
Rahuls idee overnemen:
ContourPlot3D[x^2 - y^2 == 1, {x, -2, 2}, {y, -2, 2}, {z, -2, 2}]
Antwoord
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
.