How can I solve for the intersection points of two ellipses?How to solve for the intersection points of two ellipses?Equation for the line of intersection between two planesFinding intersection points of two surfaces (lists)Finding intersection of two ellipsesInserting cones at intersection points two curvesCreating a MeshRegion object from a Graphics objectThe intersection of two “mesh surfaces from points”How can I find the intersection of two sets and how can I sample elements from this intersection?Intersection of two functions

Single word for being half in this world, half in some other spooky plane of existence

In Flanders Fields

Solving Fizz Buzz using LINQ in C#

Does the sun cross other spiral arms in its movement around the galaxy's center?

How similar (or not) are recorder, fife, and flute fingerings?

Is there a text editor that can run shell scripts?

Single Player Python Battleship Game

How to respond to requests to retest, in hope that the bug is gone?

Why is super hero technology never used by civilians?

Is using RSA with SHA-1 considered as secure as HMAC-SHA-1?

LuaTeX or pdftex for new project?

Basis for vector space of real sequences

"Dias de folga a ver" ou "dias de folga haver"?

Are there any (natural) scientists in Middle-earth?

A novel about "helpful" woodlice aliens who eventually end up destroying every civilization they try to help

Intonation of string instruments in chamber music

Is there a mechanic for a PC to learn the relative strength of an opponent, stat-wise?

Why in the world would the tab on a TO-220 package have a connection to anything (but GND, if applicable)?

How do impulse response guitar amp simulators work?

SQL Server - Snapshot is useful in production environments?

A robot surviving on top of a 3x3 platform

Heavy condensation inside car during winter. Tried multiple things, but no results!

How to react to unfair reviewer comments?

Why don't we shield existing CPUs from radiation instead of designing new ones?



How can I solve for the intersection points of two ellipses?


How to solve for the intersection points of two ellipses?Equation for the line of intersection between two planesFinding intersection points of two surfaces (lists)Finding intersection of two ellipsesInserting cones at intersection points two curvesCreating a MeshRegion object from a Graphics objectThe intersection of two “mesh surfaces from points”How can I find the intersection of two sets and how can I sample elements from this intersection?Intersection of two functions






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;

.everyonelovesstackoverflowposition:absolute;height:1px;width:1px;opacity:0;top:0;left:0;pointer-events:none;








9














$begingroup$


I need to find the points at which the two ellipses implicitly defined by



$qquad y^2=4-4,x^2 quad[E1]$



and



$qquad (1-(x/2))^2+(y-1)^2=1 quad[E2]$



intersect.



So I isolated $y$ in E2 and then squared it so that I could eliminate it using E1 and then solve for $x$. This turned to be very gnarly.



Is there an easier way of finding the intersection points of E1 and E2?
(as shown here in graph)



ContourPlot[
(y^2 == 4 - 4*x^2), ((1 - x/2)^2 + (y - 1)^2 == 1), x, -5, 5, y, -5, 5,
Frame -> False, Axes -> True]









share|improve this question












$endgroup$





















    9














    $begingroup$


    I need to find the points at which the two ellipses implicitly defined by



    $qquad y^2=4-4,x^2 quad[E1]$



    and



    $qquad (1-(x/2))^2+(y-1)^2=1 quad[E2]$



    intersect.



    So I isolated $y$ in E2 and then squared it so that I could eliminate it using E1 and then solve for $x$. This turned to be very gnarly.



    Is there an easier way of finding the intersection points of E1 and E2?
    (as shown here in graph)



    ContourPlot[
    (y^2 == 4 - 4*x^2), ((1 - x/2)^2 + (y - 1)^2 == 1), x, -5, 5, y, -5, 5,
    Frame -> False, Axes -> True]









    share|improve this question












    $endgroup$

















      9












      9








      9


      2



      $begingroup$


      I need to find the points at which the two ellipses implicitly defined by



      $qquad y^2=4-4,x^2 quad[E1]$



      and



      $qquad (1-(x/2))^2+(y-1)^2=1 quad[E2]$



      intersect.



      So I isolated $y$ in E2 and then squared it so that I could eliminate it using E1 and then solve for $x$. This turned to be very gnarly.



      Is there an easier way of finding the intersection points of E1 and E2?
      (as shown here in graph)



      ContourPlot[
      (y^2 == 4 - 4*x^2), ((1 - x/2)^2 + (y - 1)^2 == 1), x, -5, 5, y, -5, 5,
      Frame -> False, Axes -> True]









      share|improve this question












      $endgroup$




      I need to find the points at which the two ellipses implicitly defined by



      $qquad y^2=4-4,x^2 quad[E1]$



      and



      $qquad (1-(x/2))^2+(y-1)^2=1 quad[E2]$



      intersect.



      So I isolated $y$ in E2 and then squared it so that I could eliminate it using E1 and then solve for $x$. This turned to be very gnarly.



      Is there an easier way of finding the intersection points of E1 and E2?
      (as shown here in graph)



      ContourPlot[
      (y^2 == 4 - 4*x^2), ((1 - x/2)^2 + (y - 1)^2 == 1), x, -5, 5, y, -5, 5,
      Frame -> False, Axes -> True]






      equation-solving calculus-and-analysis intersection






      share|improve this question
















      share|improve this question













      share|improve this question




      share|improve this question








      edited Aug 11 at 9:21









      m_goldberg

      94.3k8 gold badges76 silver badges211 bronze badges




      94.3k8 gold badges76 silver badges211 bronze badges










      asked Aug 10 at 23:14









      wendywendy

      1414 bronze badges




      1414 bronze badges























          3 Answers
          3






          active

          oldest

          votes


















          15
















          $begingroup$

          Solve can be used directly



          pts = x, y /. 
          Solve[y^2 == 4 - 4 x^2, (1 - (x/2))^2 + (y - 1)^2 == 1, x, y,
          Reals] // FullSimplify

          (* Root[144 - 160*#1 - 328*#1^2 +
          120*#1^3 + 225*#1^4 & , 1,
          0], Root[144 - 1280*#1 +
          1688*#1^2 - 960*#1^3 +
          225*#1^4 & , 2, 0],
          Root[144 - 160*#1 - 328*#1^2 +
          120*#1^3 + 225*#1^4 & , 2,
          0], Root[144 - 1280*#1 +
          1688*#1^2 - 960*#1^3 +
          225*#1^4 & , 1, 0] *)


          Converting the Root objects to their numeric values



          pts // N

          (* 0.539936, 1.68341, 0.997732, 0.13463 *)

          Show[
          ContourPlot[
          (y^2 == 4 - 4*x^2),
          ((1 - x/2)^2 + (y - 1)^2 == 1),
          x, -1.5, 4.5, y, -3, 3,
          Frame -> False,
          Axes -> True],
          Graphics[Red, AbsolutePointSize[4], Point[pts]]]


          enter image description here






          share|improve this answer










          $endgroup$














          • $begingroup$
            Thank you, @BobHanlon
            $endgroup$
            – wendy
            Aug 11 at 0:19


















          13
















          $begingroup$

          You can (1) use Cases to extract the Lines from ContourPlot output, and (2) use RegionIntersection to find the intersections:



          cp = ContourPlot[(y^2 == 4 - 4*x^2), ((1 - x/2)^2 + (y - 1)^2 == 
          1), x, -5, 5, y, -5, 5, Frame -> False, Axes -> True];

          intersections = RegionIntersection @@ Cases[Normal @ cp, _Line, All]



          Point[0.992916, 0.140285, 0.539984, 1.68261]




          Show[cp, Epilog->Red, PointSize[Large], intersections]


          enter image description here



          Show[cp, ListPlot[Callout[#, ##, Automatic, 
          LabelStyle -> 13, Appearance -> "Frame", LeaderSize -> 30, CalloutStyle -> Red,
          CalloutMarker -> "BoxPoint"] & /@ intersections[[1]]],
          PlotRange -> -3, 4, -3, 3]


          enter image description here






          share|improve this answer












          $endgroup$














          • $begingroup$
            Thank you for your help, @kglr
            $endgroup$
            – wendy
            Aug 11 at 0:19


















          2
















          $begingroup$

          Clearly the easy way is to get a computer program to solve it for you.



          If for some reason you want to do it by hand, you could do this:



          $(1 - x/2)^2 + (y - 1)^2 == 1$



          $(y - 1)^2 == 1-(1 - x/2)^2 == x - x^2/4 $



          $y^2 - (y - 1)^2 == 4-4x^2 - (x - x^2/4 )$



          $y^2 - (y^2 -2y+ 1) == 4-4x^2 - x + x^2/4 $



          $ 2y-1 == 4-4x^2 - x + x^2/4)$



          $ y == frac5-4x^2 - x + x^2/42)$



          And now it's practically a straight binomial.



          But I notice this is for Mathematica, and you didn't show why you had a problem using Mathematica. It looked like you were doing stuff by hand.






          share|improve this answer












          $endgroup$










          • 1




            $begingroup$
            Hi, @JThomas , thanks for your help! The problem was that as I have not used Mathematica for long, I wasn't sure as to how to solve the equation using Mathematica.
            $endgroup$
            – wendy
            Aug 12 at 8:59












          Your Answer








          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/4.0/"u003ecc by-sa 4.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%2f203574%2fhow-can-i-solve-for-the-intersection-points-of-two-ellipses%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown


























          3 Answers
          3






          active

          oldest

          votes








          3 Answers
          3






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          15
















          $begingroup$

          Solve can be used directly



          pts = x, y /. 
          Solve[y^2 == 4 - 4 x^2, (1 - (x/2))^2 + (y - 1)^2 == 1, x, y,
          Reals] // FullSimplify

          (* Root[144 - 160*#1 - 328*#1^2 +
          120*#1^3 + 225*#1^4 & , 1,
          0], Root[144 - 1280*#1 +
          1688*#1^2 - 960*#1^3 +
          225*#1^4 & , 2, 0],
          Root[144 - 160*#1 - 328*#1^2 +
          120*#1^3 + 225*#1^4 & , 2,
          0], Root[144 - 1280*#1 +
          1688*#1^2 - 960*#1^3 +
          225*#1^4 & , 1, 0] *)


          Converting the Root objects to their numeric values



          pts // N

          (* 0.539936, 1.68341, 0.997732, 0.13463 *)

          Show[
          ContourPlot[
          (y^2 == 4 - 4*x^2),
          ((1 - x/2)^2 + (y - 1)^2 == 1),
          x, -1.5, 4.5, y, -3, 3,
          Frame -> False,
          Axes -> True],
          Graphics[Red, AbsolutePointSize[4], Point[pts]]]


          enter image description here






          share|improve this answer










          $endgroup$














          • $begingroup$
            Thank you, @BobHanlon
            $endgroup$
            – wendy
            Aug 11 at 0:19















          15
















          $begingroup$

          Solve can be used directly



          pts = x, y /. 
          Solve[y^2 == 4 - 4 x^2, (1 - (x/2))^2 + (y - 1)^2 == 1, x, y,
          Reals] // FullSimplify

          (* Root[144 - 160*#1 - 328*#1^2 +
          120*#1^3 + 225*#1^4 & , 1,
          0], Root[144 - 1280*#1 +
          1688*#1^2 - 960*#1^3 +
          225*#1^4 & , 2, 0],
          Root[144 - 160*#1 - 328*#1^2 +
          120*#1^3 + 225*#1^4 & , 2,
          0], Root[144 - 1280*#1 +
          1688*#1^2 - 960*#1^3 +
          225*#1^4 & , 1, 0] *)


          Converting the Root objects to their numeric values



          pts // N

          (* 0.539936, 1.68341, 0.997732, 0.13463 *)

          Show[
          ContourPlot[
          (y^2 == 4 - 4*x^2),
          ((1 - x/2)^2 + (y - 1)^2 == 1),
          x, -1.5, 4.5, y, -3, 3,
          Frame -> False,
          Axes -> True],
          Graphics[Red, AbsolutePointSize[4], Point[pts]]]


          enter image description here






          share|improve this answer










          $endgroup$














          • $begingroup$
            Thank you, @BobHanlon
            $endgroup$
            – wendy
            Aug 11 at 0:19













          15














          15










          15







          $begingroup$

          Solve can be used directly



          pts = x, y /. 
          Solve[y^2 == 4 - 4 x^2, (1 - (x/2))^2 + (y - 1)^2 == 1, x, y,
          Reals] // FullSimplify

          (* Root[144 - 160*#1 - 328*#1^2 +
          120*#1^3 + 225*#1^4 & , 1,
          0], Root[144 - 1280*#1 +
          1688*#1^2 - 960*#1^3 +
          225*#1^4 & , 2, 0],
          Root[144 - 160*#1 - 328*#1^2 +
          120*#1^3 + 225*#1^4 & , 2,
          0], Root[144 - 1280*#1 +
          1688*#1^2 - 960*#1^3 +
          225*#1^4 & , 1, 0] *)


          Converting the Root objects to their numeric values



          pts // N

          (* 0.539936, 1.68341, 0.997732, 0.13463 *)

          Show[
          ContourPlot[
          (y^2 == 4 - 4*x^2),
          ((1 - x/2)^2 + (y - 1)^2 == 1),
          x, -1.5, 4.5, y, -3, 3,
          Frame -> False,
          Axes -> True],
          Graphics[Red, AbsolutePointSize[4], Point[pts]]]


          enter image description here






          share|improve this answer










          $endgroup$



          Solve can be used directly



          pts = x, y /. 
          Solve[y^2 == 4 - 4 x^2, (1 - (x/2))^2 + (y - 1)^2 == 1, x, y,
          Reals] // FullSimplify

          (* Root[144 - 160*#1 - 328*#1^2 +
          120*#1^3 + 225*#1^4 & , 1,
          0], Root[144 - 1280*#1 +
          1688*#1^2 - 960*#1^3 +
          225*#1^4 & , 2, 0],
          Root[144 - 160*#1 - 328*#1^2 +
          120*#1^3 + 225*#1^4 & , 2,
          0], Root[144 - 1280*#1 +
          1688*#1^2 - 960*#1^3 +
          225*#1^4 & , 1, 0] *)


          Converting the Root objects to their numeric values



          pts // N

          (* 0.539936, 1.68341, 0.997732, 0.13463 *)

          Show[
          ContourPlot[
          (y^2 == 4 - 4*x^2),
          ((1 - x/2)^2 + (y - 1)^2 == 1),
          x, -1.5, 4.5, y, -3, 3,
          Frame -> False,
          Axes -> True],
          Graphics[Red, AbsolutePointSize[4], Point[pts]]]


          enter image description here







          share|improve this answer













          share|improve this answer




          share|improve this answer










          answered Aug 10 at 23:58









          Bob HanlonBob Hanlon

          68.6k3 gold badges38 silver badges105 bronze badges




          68.6k3 gold badges38 silver badges105 bronze badges














          • $begingroup$
            Thank you, @BobHanlon
            $endgroup$
            – wendy
            Aug 11 at 0:19
















          • $begingroup$
            Thank you, @BobHanlon
            $endgroup$
            – wendy
            Aug 11 at 0:19















          $begingroup$
          Thank you, @BobHanlon
          $endgroup$
          – wendy
          Aug 11 at 0:19




          $begingroup$
          Thank you, @BobHanlon
          $endgroup$
          – wendy
          Aug 11 at 0:19













          13
















          $begingroup$

          You can (1) use Cases to extract the Lines from ContourPlot output, and (2) use RegionIntersection to find the intersections:



          cp = ContourPlot[(y^2 == 4 - 4*x^2), ((1 - x/2)^2 + (y - 1)^2 == 
          1), x, -5, 5, y, -5, 5, Frame -> False, Axes -> True];

          intersections = RegionIntersection @@ Cases[Normal @ cp, _Line, All]



          Point[0.992916, 0.140285, 0.539984, 1.68261]




          Show[cp, Epilog->Red, PointSize[Large], intersections]


          enter image description here



          Show[cp, ListPlot[Callout[#, ##, Automatic, 
          LabelStyle -> 13, Appearance -> "Frame", LeaderSize -> 30, CalloutStyle -> Red,
          CalloutMarker -> "BoxPoint"] & /@ intersections[[1]]],
          PlotRange -> -3, 4, -3, 3]


          enter image description here






          share|improve this answer












          $endgroup$














          • $begingroup$
            Thank you for your help, @kglr
            $endgroup$
            – wendy
            Aug 11 at 0:19















          13
















          $begingroup$

          You can (1) use Cases to extract the Lines from ContourPlot output, and (2) use RegionIntersection to find the intersections:



          cp = ContourPlot[(y^2 == 4 - 4*x^2), ((1 - x/2)^2 + (y - 1)^2 == 
          1), x, -5, 5, y, -5, 5, Frame -> False, Axes -> True];

          intersections = RegionIntersection @@ Cases[Normal @ cp, _Line, All]



          Point[0.992916, 0.140285, 0.539984, 1.68261]




          Show[cp, Epilog->Red, PointSize[Large], intersections]


          enter image description here



          Show[cp, ListPlot[Callout[#, ##, Automatic, 
          LabelStyle -> 13, Appearance -> "Frame", LeaderSize -> 30, CalloutStyle -> Red,
          CalloutMarker -> "BoxPoint"] & /@ intersections[[1]]],
          PlotRange -> -3, 4, -3, 3]


          enter image description here






          share|improve this answer












          $endgroup$














          • $begingroup$
            Thank you for your help, @kglr
            $endgroup$
            – wendy
            Aug 11 at 0:19













          13














          13










          13







          $begingroup$

          You can (1) use Cases to extract the Lines from ContourPlot output, and (2) use RegionIntersection to find the intersections:



          cp = ContourPlot[(y^2 == 4 - 4*x^2), ((1 - x/2)^2 + (y - 1)^2 == 
          1), x, -5, 5, y, -5, 5, Frame -> False, Axes -> True];

          intersections = RegionIntersection @@ Cases[Normal @ cp, _Line, All]



          Point[0.992916, 0.140285, 0.539984, 1.68261]




          Show[cp, Epilog->Red, PointSize[Large], intersections]


          enter image description here



          Show[cp, ListPlot[Callout[#, ##, Automatic, 
          LabelStyle -> 13, Appearance -> "Frame", LeaderSize -> 30, CalloutStyle -> Red,
          CalloutMarker -> "BoxPoint"] & /@ intersections[[1]]],
          PlotRange -> -3, 4, -3, 3]


          enter image description here






          share|improve this answer












          $endgroup$



          You can (1) use Cases to extract the Lines from ContourPlot output, and (2) use RegionIntersection to find the intersections:



          cp = ContourPlot[(y^2 == 4 - 4*x^2), ((1 - x/2)^2 + (y - 1)^2 == 
          1), x, -5, 5, y, -5, 5, Frame -> False, Axes -> True];

          intersections = RegionIntersection @@ Cases[Normal @ cp, _Line, All]



          Point[0.992916, 0.140285, 0.539984, 1.68261]




          Show[cp, Epilog->Red, PointSize[Large], intersections]


          enter image description here



          Show[cp, ListPlot[Callout[#, ##, Automatic, 
          LabelStyle -> 13, Appearance -> "Frame", LeaderSize -> 30, CalloutStyle -> Red,
          CalloutMarker -> "BoxPoint"] & /@ intersections[[1]]],
          PlotRange -> -3, 4, -3, 3]


          enter image description here







          share|improve this answer















          share|improve this answer




          share|improve this answer








          edited Aug 11 at 17:41

























          answered Aug 10 at 23:59









          kglrkglr

          226k10 gold badges256 silver badges515 bronze badges




          226k10 gold badges256 silver badges515 bronze badges














          • $begingroup$
            Thank you for your help, @kglr
            $endgroup$
            – wendy
            Aug 11 at 0:19
















          • $begingroup$
            Thank you for your help, @kglr
            $endgroup$
            – wendy
            Aug 11 at 0:19















          $begingroup$
          Thank you for your help, @kglr
          $endgroup$
          – wendy
          Aug 11 at 0:19




          $begingroup$
          Thank you for your help, @kglr
          $endgroup$
          – wendy
          Aug 11 at 0:19











          2
















          $begingroup$

          Clearly the easy way is to get a computer program to solve it for you.



          If for some reason you want to do it by hand, you could do this:



          $(1 - x/2)^2 + (y - 1)^2 == 1$



          $(y - 1)^2 == 1-(1 - x/2)^2 == x - x^2/4 $



          $y^2 - (y - 1)^2 == 4-4x^2 - (x - x^2/4 )$



          $y^2 - (y^2 -2y+ 1) == 4-4x^2 - x + x^2/4 $



          $ 2y-1 == 4-4x^2 - x + x^2/4)$



          $ y == frac5-4x^2 - x + x^2/42)$



          And now it's practically a straight binomial.



          But I notice this is for Mathematica, and you didn't show why you had a problem using Mathematica. It looked like you were doing stuff by hand.






          share|improve this answer












          $endgroup$










          • 1




            $begingroup$
            Hi, @JThomas , thanks for your help! The problem was that as I have not used Mathematica for long, I wasn't sure as to how to solve the equation using Mathematica.
            $endgroup$
            – wendy
            Aug 12 at 8:59















          2
















          $begingroup$

          Clearly the easy way is to get a computer program to solve it for you.



          If for some reason you want to do it by hand, you could do this:



          $(1 - x/2)^2 + (y - 1)^2 == 1$



          $(y - 1)^2 == 1-(1 - x/2)^2 == x - x^2/4 $



          $y^2 - (y - 1)^2 == 4-4x^2 - (x - x^2/4 )$



          $y^2 - (y^2 -2y+ 1) == 4-4x^2 - x + x^2/4 $



          $ 2y-1 == 4-4x^2 - x + x^2/4)$



          $ y == frac5-4x^2 - x + x^2/42)$



          And now it's practically a straight binomial.



          But I notice this is for Mathematica, and you didn't show why you had a problem using Mathematica. It looked like you were doing stuff by hand.






          share|improve this answer












          $endgroup$










          • 1




            $begingroup$
            Hi, @JThomas , thanks for your help! The problem was that as I have not used Mathematica for long, I wasn't sure as to how to solve the equation using Mathematica.
            $endgroup$
            – wendy
            Aug 12 at 8:59













          2














          2










          2







          $begingroup$

          Clearly the easy way is to get a computer program to solve it for you.



          If for some reason you want to do it by hand, you could do this:



          $(1 - x/2)^2 + (y - 1)^2 == 1$



          $(y - 1)^2 == 1-(1 - x/2)^2 == x - x^2/4 $



          $y^2 - (y - 1)^2 == 4-4x^2 - (x - x^2/4 )$



          $y^2 - (y^2 -2y+ 1) == 4-4x^2 - x + x^2/4 $



          $ 2y-1 == 4-4x^2 - x + x^2/4)$



          $ y == frac5-4x^2 - x + x^2/42)$



          And now it's practically a straight binomial.



          But I notice this is for Mathematica, and you didn't show why you had a problem using Mathematica. It looked like you were doing stuff by hand.






          share|improve this answer












          $endgroup$



          Clearly the easy way is to get a computer program to solve it for you.



          If for some reason you want to do it by hand, you could do this:



          $(1 - x/2)^2 + (y - 1)^2 == 1$



          $(y - 1)^2 == 1-(1 - x/2)^2 == x - x^2/4 $



          $y^2 - (y - 1)^2 == 4-4x^2 - (x - x^2/4 )$



          $y^2 - (y^2 -2y+ 1) == 4-4x^2 - x + x^2/4 $



          $ 2y-1 == 4-4x^2 - x + x^2/4)$



          $ y == frac5-4x^2 - x + x^2/42)$



          And now it's practically a straight binomial.



          But I notice this is for Mathematica, and you didn't show why you had a problem using Mathematica. It looked like you were doing stuff by hand.







          share|improve this answer















          share|improve this answer




          share|improve this answer








          edited Aug 11 at 23:13

























          answered Aug 11 at 15:40









          J ThomasJ Thomas

          1212 bronze badges




          1212 bronze badges










          • 1




            $begingroup$
            Hi, @JThomas , thanks for your help! The problem was that as I have not used Mathematica for long, I wasn't sure as to how to solve the equation using Mathematica.
            $endgroup$
            – wendy
            Aug 12 at 8:59












          • 1




            $begingroup$
            Hi, @JThomas , thanks for your help! The problem was that as I have not used Mathematica for long, I wasn't sure as to how to solve the equation using Mathematica.
            $endgroup$
            – wendy
            Aug 12 at 8:59







          1




          1




          $begingroup$
          Hi, @JThomas , thanks for your help! The problem was that as I have not used Mathematica for long, I wasn't sure as to how to solve the equation using Mathematica.
          $endgroup$
          – wendy
          Aug 12 at 8:59




          $begingroup$
          Hi, @JThomas , thanks for your help! The problem was that as I have not used Mathematica for long, I wasn't sure as to how to solve the equation using Mathematica.
          $endgroup$
          – wendy
          Aug 12 at 8:59


















          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%2f203574%2fhow-can-i-solve-for-the-intersection-points-of-two-ellipses%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

          Distance measures on a map of a game The 2019 Stack Overflow Developer Survey Results Are Inmin distance in a graphShortest distance path on contour plotHow to plot a tilted map?Finding points outside of a diskDelaunay link distanceAnnulus from GeoDisks: drawing a ring on a mapNegative Correlation DistanceFind distance along a path (GPS coordinates)Finding position at given distance in a GeoPathMathematics behind distance estimation using camera

          How to get a smooth, uniform ParametricPlot of a 2D Region?How to plot a complicated Region?How to exclude a region from ParametricPlotHow discretize a region placing vertices on a specific non-uniform gridHow to transform a Plot or a ParametricPlot into a RegionHow can I get a smooth plot of a bounded region?Smooth ParametricPlot3D with RegionFunction?Smooth border of a region ParametricPlotSmooth region boundarySmooth region plot from list of pointsGet minimum y of a certain x in a region

          Genealogie vun de Merowenger Vum Merowech bis zum Chilperich I. | Navigatiounsmenü