Finding all three roots of cubic polynomial using Cardano's method

Multi tool use
Multi tool use

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
3
down vote

favorite












To solve $x^3 + px + q = 0$. I'm using Cardano's method, with the substitution $x = u + v$.
In the special case that $3uv + p = 0$, I've derived $u$ and $v$ as the following:



$u = sqrt[3]-fracq2+sqrt(fracq2)^2 + (fracp3)^3$



and



$v = sqrt[3]-fracq2-sqrt(fracq2)^2 + (fracp3)^3$



The next step is to find $x$, which is $x=u+v$, but how would I go about finding all three values for x when there are 9 possible combinations for $u_1, u_2, u_3,$ and $v_1, v_2, v_3$?



EDIT: If it's of any relevance, this is the expression I'm trying to solve:
$x^3 + frac78x- frac2516 = 0$.










share|cite|improve this question



















  • 1




    See another here.
    – Ng Chung Tak
    Sep 8 at 9:27














up vote
3
down vote

favorite












To solve $x^3 + px + q = 0$. I'm using Cardano's method, with the substitution $x = u + v$.
In the special case that $3uv + p = 0$, I've derived $u$ and $v$ as the following:



$u = sqrt[3]-fracq2+sqrt(fracq2)^2 + (fracp3)^3$



and



$v = sqrt[3]-fracq2-sqrt(fracq2)^2 + (fracp3)^3$



The next step is to find $x$, which is $x=u+v$, but how would I go about finding all three values for x when there are 9 possible combinations for $u_1, u_2, u_3,$ and $v_1, v_2, v_3$?



EDIT: If it's of any relevance, this is the expression I'm trying to solve:
$x^3 + frac78x- frac2516 = 0$.










share|cite|improve this question



















  • 1




    See another here.
    – Ng Chung Tak
    Sep 8 at 9:27












up vote
3
down vote

favorite









up vote
3
down vote

favorite











To solve $x^3 + px + q = 0$. I'm using Cardano's method, with the substitution $x = u + v$.
In the special case that $3uv + p = 0$, I've derived $u$ and $v$ as the following:



$u = sqrt[3]-fracq2+sqrt(fracq2)^2 + (fracp3)^3$



and



$v = sqrt[3]-fracq2-sqrt(fracq2)^2 + (fracp3)^3$



The next step is to find $x$, which is $x=u+v$, but how would I go about finding all three values for x when there are 9 possible combinations for $u_1, u_2, u_3,$ and $v_1, v_2, v_3$?



EDIT: If it's of any relevance, this is the expression I'm trying to solve:
$x^3 + frac78x- frac2516 = 0$.










share|cite|improve this question















To solve $x^3 + px + q = 0$. I'm using Cardano's method, with the substitution $x = u + v$.
In the special case that $3uv + p = 0$, I've derived $u$ and $v$ as the following:



$u = sqrt[3]-fracq2+sqrt(fracq2)^2 + (fracp3)^3$



and



$v = sqrt[3]-fracq2-sqrt(fracq2)^2 + (fracp3)^3$



The next step is to find $x$, which is $x=u+v$, but how would I go about finding all three values for x when there are 9 possible combinations for $u_1, u_2, u_3,$ and $v_1, v_2, v_3$?



EDIT: If it's of any relevance, this is the expression I'm trying to solve:
$x^3 + frac78x- frac2516 = 0$.







polynomials cubic-equations






share|cite|improve this question















share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited Sep 8 at 10:57









dmtri

997518




997518










asked Sep 8 at 8:51









Stefan Ivanovski

184




184







  • 1




    See another here.
    – Ng Chung Tak
    Sep 8 at 9:27












  • 1




    See another here.
    – Ng Chung Tak
    Sep 8 at 9:27







1




1




See another here.
– Ng Chung Tak
Sep 8 at 9:27




See another here.
– Ng Chung Tak
Sep 8 at 9:27










2 Answers
2






active

oldest

votes

















up vote
3
down vote



accepted










$u$ and $v$ are also constrained by $3uv + p = 0$.



In this particular problem you get



$$u = sqrt[3]frac2532 + sqrtfrac1756127648,quad v = sqrt[3]frac2532 - sqrtfrac1756127648$$
so if $alpha$ and $beta$ are real cube roots, all roots are given by



$$u_0 = alpha, quad u_1 = alpha e^frac2pi i3,quad u_2 = alpha e^frac4pi i3$$
$$v_0 = beta, quad v_1 = beta e^frac2pi i3,quad v_2 = beta e^frac4pi i3$$



So $$mathbbR ni -fracp3 = u_kv_j = alphabeta e^frac2pi i3 (k+j)$$



Hence $k+j in 0, 3$, so the valid combinations are $$k = l = 0$$ $$k = 1, quad l = 2$$
$$k = 2, quad l = 1$$






share|cite|improve this answer





























    up vote
    1
    down vote













    Suppose you have a cubic equation $ax^3+bx^2+cx+d=0$ with a root $x_1$ you found via the Cardano method, or perhaps as a rational root or even a specified root value you used to construct the equation. Then you always have:



    $ax^3+bx^2+cx+d=a(x-x_1)(x^2+rx+s)text Eq. 1$



    $a(x-x_1)(x^2+rx+s)=ax^3+a(r-x_1)x^2+a(s-rx_1)x-ax_1stext Eq. 2$



    So matching the quadratic and constant terms between the right side of Eq. 2 and the left side of Eq. 1 gives



    $r=(b/a)+x_1, s=-d/(ax_1)$



    With these values of $r$ and $s$ derived, just use the quadratic formula to get the remaining roots:



    $x_2,x_3=frac-rpmsqrtr^2-4s2=frac2s-rmpsqrtr^2-4s$






    share|cite|improve this answer






















      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: "69"
      ;
      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',
      convertImagesToLinks: true,
      noModals: false,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      noCode: true, onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













       

      draft saved


      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2909431%2ffinding-all-three-roots-of-cubic-polynomial-using-cardanos-method%23new-answer', 'question_page');

      );

      Post as a guest






























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes








      up vote
      3
      down vote



      accepted










      $u$ and $v$ are also constrained by $3uv + p = 0$.



      In this particular problem you get



      $$u = sqrt[3]frac2532 + sqrtfrac1756127648,quad v = sqrt[3]frac2532 - sqrtfrac1756127648$$
      so if $alpha$ and $beta$ are real cube roots, all roots are given by



      $$u_0 = alpha, quad u_1 = alpha e^frac2pi i3,quad u_2 = alpha e^frac4pi i3$$
      $$v_0 = beta, quad v_1 = beta e^frac2pi i3,quad v_2 = beta e^frac4pi i3$$



      So $$mathbbR ni -fracp3 = u_kv_j = alphabeta e^frac2pi i3 (k+j)$$



      Hence $k+j in 0, 3$, so the valid combinations are $$k = l = 0$$ $$k = 1, quad l = 2$$
      $$k = 2, quad l = 1$$






      share|cite|improve this answer


























        up vote
        3
        down vote



        accepted










        $u$ and $v$ are also constrained by $3uv + p = 0$.



        In this particular problem you get



        $$u = sqrt[3]frac2532 + sqrtfrac1756127648,quad v = sqrt[3]frac2532 - sqrtfrac1756127648$$
        so if $alpha$ and $beta$ are real cube roots, all roots are given by



        $$u_0 = alpha, quad u_1 = alpha e^frac2pi i3,quad u_2 = alpha e^frac4pi i3$$
        $$v_0 = beta, quad v_1 = beta e^frac2pi i3,quad v_2 = beta e^frac4pi i3$$



        So $$mathbbR ni -fracp3 = u_kv_j = alphabeta e^frac2pi i3 (k+j)$$



        Hence $k+j in 0, 3$, so the valid combinations are $$k = l = 0$$ $$k = 1, quad l = 2$$
        $$k = 2, quad l = 1$$






        share|cite|improve this answer
























          up vote
          3
          down vote



          accepted







          up vote
          3
          down vote



          accepted






          $u$ and $v$ are also constrained by $3uv + p = 0$.



          In this particular problem you get



          $$u = sqrt[3]frac2532 + sqrtfrac1756127648,quad v = sqrt[3]frac2532 - sqrtfrac1756127648$$
          so if $alpha$ and $beta$ are real cube roots, all roots are given by



          $$u_0 = alpha, quad u_1 = alpha e^frac2pi i3,quad u_2 = alpha e^frac4pi i3$$
          $$v_0 = beta, quad v_1 = beta e^frac2pi i3,quad v_2 = beta e^frac4pi i3$$



          So $$mathbbR ni -fracp3 = u_kv_j = alphabeta e^frac2pi i3 (k+j)$$



          Hence $k+j in 0, 3$, so the valid combinations are $$k = l = 0$$ $$k = 1, quad l = 2$$
          $$k = 2, quad l = 1$$






          share|cite|improve this answer














          $u$ and $v$ are also constrained by $3uv + p = 0$.



          In this particular problem you get



          $$u = sqrt[3]frac2532 + sqrtfrac1756127648,quad v = sqrt[3]frac2532 - sqrtfrac1756127648$$
          so if $alpha$ and $beta$ are real cube roots, all roots are given by



          $$u_0 = alpha, quad u_1 = alpha e^frac2pi i3,quad u_2 = alpha e^frac4pi i3$$
          $$v_0 = beta, quad v_1 = beta e^frac2pi i3,quad v_2 = beta e^frac4pi i3$$



          So $$mathbbR ni -fracp3 = u_kv_j = alphabeta e^frac2pi i3 (k+j)$$



          Hence $k+j in 0, 3$, so the valid combinations are $$k = l = 0$$ $$k = 1, quad l = 2$$
          $$k = 2, quad l = 1$$







          share|cite|improve this answer














          share|cite|improve this answer



          share|cite|improve this answer








          edited Sep 8 at 9:39

























          answered Sep 8 at 9:22









          mechanodroid

          24.7k62245




          24.7k62245




















              up vote
              1
              down vote













              Suppose you have a cubic equation $ax^3+bx^2+cx+d=0$ with a root $x_1$ you found via the Cardano method, or perhaps as a rational root or even a specified root value you used to construct the equation. Then you always have:



              $ax^3+bx^2+cx+d=a(x-x_1)(x^2+rx+s)text Eq. 1$



              $a(x-x_1)(x^2+rx+s)=ax^3+a(r-x_1)x^2+a(s-rx_1)x-ax_1stext Eq. 2$



              So matching the quadratic and constant terms between the right side of Eq. 2 and the left side of Eq. 1 gives



              $r=(b/a)+x_1, s=-d/(ax_1)$



              With these values of $r$ and $s$ derived, just use the quadratic formula to get the remaining roots:



              $x_2,x_3=frac-rpmsqrtr^2-4s2=frac2s-rmpsqrtr^2-4s$






              share|cite|improve this answer


























                up vote
                1
                down vote













                Suppose you have a cubic equation $ax^3+bx^2+cx+d=0$ with a root $x_1$ you found via the Cardano method, or perhaps as a rational root or even a specified root value you used to construct the equation. Then you always have:



                $ax^3+bx^2+cx+d=a(x-x_1)(x^2+rx+s)text Eq. 1$



                $a(x-x_1)(x^2+rx+s)=ax^3+a(r-x_1)x^2+a(s-rx_1)x-ax_1stext Eq. 2$



                So matching the quadratic and constant terms between the right side of Eq. 2 and the left side of Eq. 1 gives



                $r=(b/a)+x_1, s=-d/(ax_1)$



                With these values of $r$ and $s$ derived, just use the quadratic formula to get the remaining roots:



                $x_2,x_3=frac-rpmsqrtr^2-4s2=frac2s-rmpsqrtr^2-4s$






                share|cite|improve this answer
























                  up vote
                  1
                  down vote










                  up vote
                  1
                  down vote









                  Suppose you have a cubic equation $ax^3+bx^2+cx+d=0$ with a root $x_1$ you found via the Cardano method, or perhaps as a rational root or even a specified root value you used to construct the equation. Then you always have:



                  $ax^3+bx^2+cx+d=a(x-x_1)(x^2+rx+s)text Eq. 1$



                  $a(x-x_1)(x^2+rx+s)=ax^3+a(r-x_1)x^2+a(s-rx_1)x-ax_1stext Eq. 2$



                  So matching the quadratic and constant terms between the right side of Eq. 2 and the left side of Eq. 1 gives



                  $r=(b/a)+x_1, s=-d/(ax_1)$



                  With these values of $r$ and $s$ derived, just use the quadratic formula to get the remaining roots:



                  $x_2,x_3=frac-rpmsqrtr^2-4s2=frac2s-rmpsqrtr^2-4s$






                  share|cite|improve this answer














                  Suppose you have a cubic equation $ax^3+bx^2+cx+d=0$ with a root $x_1$ you found via the Cardano method, or perhaps as a rational root or even a specified root value you used to construct the equation. Then you always have:



                  $ax^3+bx^2+cx+d=a(x-x_1)(x^2+rx+s)text Eq. 1$



                  $a(x-x_1)(x^2+rx+s)=ax^3+a(r-x_1)x^2+a(s-rx_1)x-ax_1stext Eq. 2$



                  So matching the quadratic and constant terms between the right side of Eq. 2 and the left side of Eq. 1 gives



                  $r=(b/a)+x_1, s=-d/(ax_1)$



                  With these values of $r$ and $s$ derived, just use the quadratic formula to get the remaining roots:



                  $x_2,x_3=frac-rpmsqrtr^2-4s2=frac2s-rmpsqrtr^2-4s$







                  share|cite|improve this answer














                  share|cite|improve this answer



                  share|cite|improve this answer








                  edited Sep 8 at 10:30

























                  answered Sep 8 at 9:44









                  Oscar Lanzi

                  10.6k11734




                  10.6k11734



























                       

                      draft saved


                      draft discarded















































                       


                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2909431%2ffinding-all-three-roots-of-cubic-polynomial-using-cardanos-method%23new-answer', 'question_page');

                      );

                      Post as a guest













































































                      O7hnRKXjFr9e6rAHcCCw56XZ,p9gRgfojD op3tB23S,b8 SSqjqNT 1lM3xWoiZpubPW riI AjO0j27yAhBZEx GaayH0S5N
                      mrFRAoCqLWiblt m6LDEiPos6ohAZmuBguEpGrSpxZOLoRrPJNqc6V4fYJ8LlxfhpXCB K

                      Popular posts from this blog

                      How to check contact read email or not when send email to Individual?

                      How many registers does an x86_64 CPU actually have?

                      Displaying single band from multi-band raster using QGIS