Visualize manifold specified by equalitiesHow to make a smooth revolution surface plotParametricPlot3D etc....
Most demanding German Newspapers
Early credit roll before the end of the film
Changing the laptop's CPU. Should I reinstall Linux?
In Linux what happens if 1000 files in a directory are moved to another location while another 300 files were added to the source directory?
What is the difference between "...", '...', $'...', and $"..." quotes?
What game did these black and yellow dice come from?
Which communication protocol is used in AdLib sound card?
What happens when the wearer of a Shield of Missile Attraction is behind total cover?
What is a DAG (Graph Theory)?
Globe trotting Grandpa. Where is he going next?
systemd service won't start nodejs
Potential client has a problematic employee I can't work with
Current across a wire with zero potential difference
How to make ice magic work from a scientific point of view?
Looking for a specific 6502 Assembler
How to deal with possible delayed baggage?
Why avoid shared user accounts?
Definition of "atomic object"
Strange "DuckDuckGo dork" takes me to random website
Removing whitespace between consecutive numbers
Visualize manifold specified by equalities
How to visualize the Riemann-Roch theorem from complex analysis or geometric topology considerations?
Can 5 Aarakocra PCs summon an Air Elemental?
Why did the villain in the first Men in Black movie care about Earth's Cockroaches?
Visualize manifold specified by equalities
How to make a smooth revolution surface plotParametricPlot3D etc. with parameters satisfying an implicit relationPlotting vectors and curves on a 3D surfacehow to get $n$ equidistributed points on the unit sphereUnattractive streaky rendering of Graphics3D imagesParametric Plot of FacesColor disparity in legend and graph due to opacityHow can I make a DensityPlot3D over a triangle?Problem with Manipulate after declaring pure function with HoldVoronoi mesh from non-parametric surfaces for 3D printing
$begingroup$
Suppose I have two nonlinear equalities $x^3 = y^2, y = z^3$. How can I visualize the manifold in $mathbb{R}^3$ that is generated by simultaneously satisfying the two equalities? I think ContourPlot3D is the one to use but I couldn't get it to work show the set of points in $mathbb{R}^3$ that satisfy the two equalities. The best I can do is make it show the intersection of the surfaces:

How can I plot the curve defined by the intersection in 3D?
graphics3d
$endgroup$
add a comment |
$begingroup$
Suppose I have two nonlinear equalities $x^3 = y^2, y = z^3$. How can I visualize the manifold in $mathbb{R}^3$ that is generated by simultaneously satisfying the two equalities? I think ContourPlot3D is the one to use but I couldn't get it to work show the set of points in $mathbb{R}^3$ that satisfy the two equalities. The best I can do is make it show the intersection of the surfaces:

How can I plot the curve defined by the intersection in 3D?
graphics3d
$endgroup$
add a comment |
$begingroup$
Suppose I have two nonlinear equalities $x^3 = y^2, y = z^3$. How can I visualize the manifold in $mathbb{R}^3$ that is generated by simultaneously satisfying the two equalities? I think ContourPlot3D is the one to use but I couldn't get it to work show the set of points in $mathbb{R}^3$ that satisfy the two equalities. The best I can do is make it show the intersection of the surfaces:

How can I plot the curve defined by the intersection in 3D?
graphics3d
$endgroup$
Suppose I have two nonlinear equalities $x^3 = y^2, y = z^3$. How can I visualize the manifold in $mathbb{R}^3$ that is generated by simultaneously satisfying the two equalities? I think ContourPlot3D is the one to use but I couldn't get it to work show the set of points in $mathbb{R}^3$ that satisfy the two equalities. The best I can do is make it show the intersection of the surfaces:

How can I plot the curve defined by the intersection in 3D?
graphics3d
graphics3d
asked 32 mins ago
ITAITA
1575
1575
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
You can use the option BoundaryStyle to mark the intersection of the two contour surfaces as follows:
ContourPlot3D[{x^3 == y^2, y == z^3}, {x, -2, 2}, {y, -2, 2}, {z, -2, 2},
Mesh -> None, ContourStyle -> Opacity[.3],
BoundaryStyle -> {1 -> None, 2 -> None, {1, 2} -> Directive[Thick, Red]}]

Also
SliceContourPlot3D[y - z^3, x^3 == y^2, {x, -2, 2}, {y, -2, 2}, {z, -2, 2},
Contours -> {{0}}, BoundaryStyle -> None, ContourShading -> None,
ContourStyle -> Directive[Red, Thick]]

$endgroup$
$begingroup$
That's exactly what I needed. I follow most of it: Since a list was passed as first argument the '{1 -> None, 2-> None ... }' but how Mathematica knew to handle {1,2} -> is just magic!
$endgroup$
– ITA
13 mins ago
add a comment |
$begingroup$
r = 1;
R = ImplicitRegion[{x^3 == y^2, y == z^3}, {{x, -r, r}, {y, -r, r}, {z, -r, r}}];
Region[R]
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "387"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f192273%2fvisualize-manifold-specified-by-equalities%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
You can use the option BoundaryStyle to mark the intersection of the two contour surfaces as follows:
ContourPlot3D[{x^3 == y^2, y == z^3}, {x, -2, 2}, {y, -2, 2}, {z, -2, 2},
Mesh -> None, ContourStyle -> Opacity[.3],
BoundaryStyle -> {1 -> None, 2 -> None, {1, 2} -> Directive[Thick, Red]}]

Also
SliceContourPlot3D[y - z^3, x^3 == y^2, {x, -2, 2}, {y, -2, 2}, {z, -2, 2},
Contours -> {{0}}, BoundaryStyle -> None, ContourShading -> None,
ContourStyle -> Directive[Red, Thick]]

$endgroup$
$begingroup$
That's exactly what I needed. I follow most of it: Since a list was passed as first argument the '{1 -> None, 2-> None ... }' but how Mathematica knew to handle {1,2} -> is just magic!
$endgroup$
– ITA
13 mins ago
add a comment |
$begingroup$
You can use the option BoundaryStyle to mark the intersection of the two contour surfaces as follows:
ContourPlot3D[{x^3 == y^2, y == z^3}, {x, -2, 2}, {y, -2, 2}, {z, -2, 2},
Mesh -> None, ContourStyle -> Opacity[.3],
BoundaryStyle -> {1 -> None, 2 -> None, {1, 2} -> Directive[Thick, Red]}]

Also
SliceContourPlot3D[y - z^3, x^3 == y^2, {x, -2, 2}, {y, -2, 2}, {z, -2, 2},
Contours -> {{0}}, BoundaryStyle -> None, ContourShading -> None,
ContourStyle -> Directive[Red, Thick]]

$endgroup$
$begingroup$
That's exactly what I needed. I follow most of it: Since a list was passed as first argument the '{1 -> None, 2-> None ... }' but how Mathematica knew to handle {1,2} -> is just magic!
$endgroup$
– ITA
13 mins ago
add a comment |
$begingroup$
You can use the option BoundaryStyle to mark the intersection of the two contour surfaces as follows:
ContourPlot3D[{x^3 == y^2, y == z^3}, {x, -2, 2}, {y, -2, 2}, {z, -2, 2},
Mesh -> None, ContourStyle -> Opacity[.3],
BoundaryStyle -> {1 -> None, 2 -> None, {1, 2} -> Directive[Thick, Red]}]

Also
SliceContourPlot3D[y - z^3, x^3 == y^2, {x, -2, 2}, {y, -2, 2}, {z, -2, 2},
Contours -> {{0}}, BoundaryStyle -> None, ContourShading -> None,
ContourStyle -> Directive[Red, Thick]]

$endgroup$
You can use the option BoundaryStyle to mark the intersection of the two contour surfaces as follows:
ContourPlot3D[{x^3 == y^2, y == z^3}, {x, -2, 2}, {y, -2, 2}, {z, -2, 2},
Mesh -> None, ContourStyle -> Opacity[.3],
BoundaryStyle -> {1 -> None, 2 -> None, {1, 2} -> Directive[Thick, Red]}]

Also
SliceContourPlot3D[y - z^3, x^3 == y^2, {x, -2, 2}, {y, -2, 2}, {z, -2, 2},
Contours -> {{0}}, BoundaryStyle -> None, ContourShading -> None,
ContourStyle -> Directive[Red, Thick]]

edited 11 mins ago
answered 23 mins ago
kglrkglr
186k10202421
186k10202421
$begingroup$
That's exactly what I needed. I follow most of it: Since a list was passed as first argument the '{1 -> None, 2-> None ... }' but how Mathematica knew to handle {1,2} -> is just magic!
$endgroup$
– ITA
13 mins ago
add a comment |
$begingroup$
That's exactly what I needed. I follow most of it: Since a list was passed as first argument the '{1 -> None, 2-> None ... }' but how Mathematica knew to handle {1,2} -> is just magic!
$endgroup$
– ITA
13 mins ago
$begingroup$
That's exactly what I needed. I follow most of it: Since a list was passed as first argument the '{1 -> None, 2-> None ... }' but how Mathematica knew to handle {1,2} -> is just magic!
$endgroup$
– ITA
13 mins ago
$begingroup$
That's exactly what I needed. I follow most of it: Since a list was passed as first argument the '{1 -> None, 2-> None ... }' but how Mathematica knew to handle {1,2} -> is just magic!
$endgroup$
– ITA
13 mins ago
add a comment |
$begingroup$
r = 1;
R = ImplicitRegion[{x^3 == y^2, y == z^3}, {{x, -r, r}, {y, -r, r}, {z, -r, r}}];
Region[R]
$endgroup$
add a comment |
$begingroup$
r = 1;
R = ImplicitRegion[{x^3 == y^2, y == z^3}, {{x, -r, r}, {y, -r, r}, {z, -r, r}}];
Region[R]
$endgroup$
add a comment |
$begingroup$
r = 1;
R = ImplicitRegion[{x^3 == y^2, y == z^3}, {{x, -r, r}, {y, -r, r}, {z, -r, r}}];
Region[R]
$endgroup$
r = 1;
R = ImplicitRegion[{x^3 == y^2, y == z^3}, {{x, -r, r}, {y, -r, r}, {z, -r, r}}];
Region[R]
answered 22 mins ago
Henrik SchumacherHenrik Schumacher
55.1k475154
55.1k475154
add a comment |
add a comment |
Thanks for contributing an answer to Mathematica Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f192273%2fvisualize-manifold-specified-by-equalities%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown