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 planesIntersection coordinates of two spheresFinding 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?

What does どうかと思う mean?

In the MCU, why does Mjölnir retain its enchantments after Ragnarok?

Why do all fields in a QFT transform like *irreducible* representations of some group?

Is there any way to keep a player from killing an NPC?

Is a player able to change alignment midway through an adventure?

Using `With[...]` with a list specification as a variable

Did a flight controller ever answer Flight with a no-go?

What is the history of the university asylum law?

Can't stopover at Sapporo when going from Asahikawa to Chitose airport?

Defense against attacks using dictionaries

Cross-referencing enumerate item

Efficiently pathfinding many flocking enemies around obstacles

Which note goes on which side of the stem?

Earth rotation discrepancy

What is this symbol: semicircles facing eachother

I got kicked out from graduate school in the past. How do I include this on my CV?

How to prevent cutting edges on my TV, HDMI-connected?

Is there any practical application for performing a double Fourier transform? ...or an inverse Fourier transform on a time-domain input?

Why do banks “park” their money at the European Central Bank?

for loop not working in bash

Are modern clipless shoes and pedals that much better than toe clips and straps?

I have a player who yells

What's the terminology for this alternative minimization algorithm?

How should I face my manager if I make a mistake because a senior coworker explained something incorrectly to me?



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 planesIntersection coordinates of two spheresFinding 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?






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








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

      91.1k8 gold badges75 silver badges205 bronze badges




      91.1k8 gold badges75 silver badges205 bronze badges










      asked Aug 10 at 23:14









      wendywendy

      713 bronze badges




      713 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/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%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

          64.5k3 gold badges36 silver badges100 bronze badges




          64.5k3 gold badges36 silver badges100 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

          213k10 gold badges243 silver badges487 bronze badges




          213k10 gold badges243 silver badges487 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

          Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

          Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

          Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form