Visualize manifold specified by equalities












4












$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:



enter image description here



How can I plot the curve defined by the intersection in 3D?










share|improve this question









$endgroup$

















    4












    $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:



    enter image description here



    How can I plot the curve defined by the intersection in 3D?










    share|improve this question









    $endgroup$















      4












      4








      4





      $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:



      enter image description here



      How can I plot the curve defined by the intersection in 3D?










      share|improve this question









      $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:



      enter image description here



      How can I plot the curve defined by the intersection in 3D?







      graphics3d






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 31 mins ago









      ITAITA

      1575




      1575






















          2 Answers
          2






          active

          oldest

          votes


















          5












          $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]}]


          enter image description here



          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]]


          enter image description here






          share|improve this answer











          $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
            12 mins ago



















          3












          $begingroup$

          r = 1;
          R = ImplicitRegion[{x^3 == y^2, y == z^3}, {{x, -r, r}, {y, -r, r}, {z, -r, r}}];
          Region[R]





          share|improve this answer









          $endgroup$













            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
            });


            }
            });














            draft saved

            draft discarded


















            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









            5












            $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]}]


            enter image description here



            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]]


            enter image description here






            share|improve this answer











            $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
              12 mins ago
















            5












            $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]}]


            enter image description here



            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]]


            enter image description here






            share|improve this answer











            $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
              12 mins ago














            5












            5








            5





            $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]}]


            enter image description here



            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]]


            enter image description here






            share|improve this answer











            $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]}]


            enter image description here



            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]]


            enter image description here







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited 10 mins ago

























            answered 22 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
              12 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
              12 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
            12 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
            12 mins ago











            3












            $begingroup$

            r = 1;
            R = ImplicitRegion[{x^3 == y^2, y == z^3}, {{x, -r, r}, {y, -r, r}, {z, -r, r}}];
            Region[R]





            share|improve this answer









            $endgroup$


















              3












              $begingroup$

              r = 1;
              R = ImplicitRegion[{x^3 == y^2, y == z^3}, {{x, -r, r}, {y, -r, r}, {z, -r, r}}];
              Region[R]





              share|improve this answer









              $endgroup$
















                3












                3








                3





                $begingroup$

                r = 1;
                R = ImplicitRegion[{x^3 == y^2, y == z^3}, {{x, -r, r}, {y, -r, r}, {z, -r, r}}];
                Region[R]





                share|improve this answer









                $endgroup$



                r = 1;
                R = ImplicitRegion[{x^3 == y^2, y == z^3}, {{x, -r, r}, {y, -r, r}, {z, -r, r}}];
                Region[R]






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 21 mins ago









                Henrik SchumacherHenrik Schumacher

                55.1k475154




                55.1k475154






























                    draft saved

                    draft discarded




















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    How to label and detect the document text images

                    Vallis Paradisi

                    Tabula Rosettana