How to write Quadratic equation with negative coefficient Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)def function with arithmetic macroHow to seed FPseed with a value that is unique for every compilation?Select largest value from a list of variables in LaTeXError in pgfplot when big offset is subtractedoverloading functions of the fp packageProblem with negative “multido” and “fp”

JImage - Set generated image quality

Why complex landing gears are used instead of simple, reliable and light weight muscle wire or shape memory alloys?

Why does BitLocker not use RSA?

Maximum rotation made by a symmetric positive definite matrix?

Inverse square law not accurate for non-point masses?

Why do C and C++ allow the expression (int) + 4*5?

Is honorific speech ever used in the first person?

How to resize main filesystem

How to achieve cat-like agility?

The test team as an enemy of development? And how can this be avoided?

Combining list in a Cartesian product format with addition operation?

New Order #6: Easter Egg

Restricting the Object Type for the get method in java HashMap

Is it OK if I do not take the receipt in Germany?

Is there a verb for listening stealthily?

How can I introduce the names of fantasy creatures to the reader?

What should one know about term logic before studying propositional and predicate logic?

How do you cope with tons of web fonts when copying and pasting from web pages?

What helicopter has the most rotor blades?

How do Java 8 default methods hеlp with lambdas?

Can gravitational waves pass through a black hole?

Table formatting with tabularx?

Can I take recommendation from someone I met at a conference?

The Nth Gryphon Number



How to write Quadratic equation with negative coefficient



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)def function with arithmetic macroHow to seed FPseed with a value that is unique for every compilation?Select largest value from a list of variables in LaTeXError in pgfplot when big offset is subtractedoverloading functions of the fp packageProblem with negative “multido” and “fp”










11















How to write Quadratic equation with negative coefficient in fp





For a=1, b=-5, c= 6, $ca x^2+cb x + cc=0$ gives 1x^2 + -5x + 6



But i want to have x^2 -5x + 6




documentclassbeamer
usepackagefp
begindocument
beginframeQuadratic equation
FPsetca1
FPsetcb-5
FPsetcc6
FPqsolvexonextwocacbcc
FPevalxoneclip(round(xone:4))
FPevalxtwoclip(round(xtwo:4))
Quadratic equation : $ca x^2+cb x + cc=0$\[1cm]
Result: $x = xone quad textand quad x = xtwo$
endframe
enddocument









share|improve this question




























    11















    How to write Quadratic equation with negative coefficient in fp





    For a=1, b=-5, c= 6, $ca x^2+cb x + cc=0$ gives 1x^2 + -5x + 6



    But i want to have x^2 -5x + 6




    documentclassbeamer
    usepackagefp
    begindocument
    beginframeQuadratic equation
    FPsetca1
    FPsetcb-5
    FPsetcc6
    FPqsolvexonextwocacbcc
    FPevalxoneclip(round(xone:4))
    FPevalxtwoclip(round(xtwo:4))
    Quadratic equation : $ca x^2+cb x + cc=0$\[1cm]
    Result: $x = xone quad textand quad x = xtwo$
    endframe
    enddocument









    share|improve this question


























      11












      11








      11


      2






      How to write Quadratic equation with negative coefficient in fp





      For a=1, b=-5, c= 6, $ca x^2+cb x + cc=0$ gives 1x^2 + -5x + 6



      But i want to have x^2 -5x + 6




      documentclassbeamer
      usepackagefp
      begindocument
      beginframeQuadratic equation
      FPsetca1
      FPsetcb-5
      FPsetcc6
      FPqsolvexonextwocacbcc
      FPevalxoneclip(round(xone:4))
      FPevalxtwoclip(round(xtwo:4))
      Quadratic equation : $ca x^2+cb x + cc=0$\[1cm]
      Result: $x = xone quad textand quad x = xtwo$
      endframe
      enddocument









      share|improve this question
















      How to write Quadratic equation with negative coefficient in fp





      For a=1, b=-5, c= 6, $ca x^2+cb x + cc=0$ gives 1x^2 + -5x + 6



      But i want to have x^2 -5x + 6




      documentclassbeamer
      usepackagefp
      begindocument
      beginframeQuadratic equation
      FPsetca1
      FPsetcb-5
      FPsetcc6
      FPqsolvexonextwocacbcc
      FPevalxoneclip(round(xone:4))
      FPevalxtwoclip(round(xtwo:4))
      Quadratic equation : $ca x^2+cb x + cc=0$\[1cm]
      Result: $x = xone quad textand quad x = xtwo$
      endframe
      enddocument






      fp






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 21 at 3:52







      sandu

















      asked Mar 20 at 9:54









      sandusandu

      3,76342857




      3,76342857




















          3 Answers
          3






          active

          oldest

          votes


















          10














          Some comparison are necessary. This assumes the coefficients are integers.



          documentclassbeamer
          usepackagefp

          newcommandquadratic[4][x]%
          FPsetca#2%
          FPsetcb#3%
          FPsetcc#4%
          FPqsolvexonextwocacbcc
          FPevalxoneclip(round(xone:4))%
          FPevalxtwoclip(round(xtwo:4))%
          Quadratic equation: $
          ifnumca=1
          else
          ifnumca=-1
          -%
          else
          ca
          fi
          fi
          #1^2%
          ifnumcb=0
          else
          ifnumcb>0
          +%
          ifnumcb=1
          else
          cb
          fi
          else
          ifnumcb=-1
          -%
          else
          cb
          fi
          fi
          #1%
          fi
          ifnumcc=0
          else
          ifnumcc>0
          +
          fi
          cc
          fi
          $\[bigskipamount]
          Result: $#1=xone$ and $#1=xtwo$%


          begindocument
          beginframeQuadratic equation

          quadratic1-56

          bigskip

          quadratic[t]231

          bigskip

          quadratic20-8

          endframe
          enddocument


          With expl3:



          documentclassbeamer
          usepackagexparse

          ExplSyntaxOn

          NewDocumentCommandquadraticOxmmm

          Quadratic~equation:~$
          str_case:nnF #2

          1
          -1-

          #2
          #1^2
          str_case:nnF #3

          0
          1+#1
          -1-#1

          fp_compare:nT #3>0 + #3#1
          fp_compare:nF #4 = 0

          fp_compare:nT #4 > 0 +

          #4
          $\[bigskipamount]
          Result:~$#1=sandu_solve:nnnn+#2#3#4$~and~
          $#1=sandu_solve:nnnn-#2#3#4$

          cs_new:Nn sandu_solve:nnnn

          fp_eval:n round( ( -(#3) #1 sqrt((#3)^2-4*(#2)*(#4)) )/(2*(#2)), 4)

          ExplSyntaxOff

          begindocument
          beginframeQuadratic equation

          quadratic1-56

          bigskip

          quadratic[t]231

          bigskip

          quadratic20-8

          endframe
          enddocument


          expl3






          share|improve this answer
































            6














            Will also work with addterm -5x in addition to the intended addtermcb x.



            The addterm macro takes a single argument, expands it once, and passes it to addtermaux. The addtermaux definition will grab the first token of the argument and examine to see if it is a minus - character. If so, it typesets a - and the rest of the argument. If not, it sees whether the first token was a + character. If so, it typesets a + and the rest of the argument. If neither of the above cases apply, it typesets a + and the complete argument.



            In this way, the right output is provided whether cc is set to 6 or set to +6.



            documentclassbeamer
            usepackagefp
            newcommandaddterm[1]expandafteraddtermaux#1relax
            defaddtermaux#1#2relaxifx-#1-#2elseifx+#1+#2else+#1#2fifi
            begindocument
            beginframeQuadratic equation
            FPsetca1
            FPsetcb-5
            FPsetcc6
            FPqsolvexonextwocacbcc
            FPevalxoneclip(round(xone:4))
            FPevalxtwoclip(round(xtwo:4))
            Quadratic equation : $ca x^2 addtermcb x addtermcc=0$\[1cm]
            Result: $x = xone quad textand quad x = xtwo$
            endframe
            enddocument


            enter image description here






            share|improve this answer

























            • could you explain newcommand and def...

              – sandu
              Mar 20 at 11:27











            • @sandu I have edited the answer to provide context.

              – Steven B. Segletes
              Mar 20 at 11:32


















            4















            Edit: See below an improved version.




            Note the [fragile] in beginframe. Necessary with FPifpos.



            documentclassbeamer
            usepackagefp
            begindocument
            beginframe[fragile]Quadratic equation
            FPsetca1
            FPsetcb-5
            FPsetcc6
            FPqsolvexonextwocacbcc
            FPevalxoneclip(round(xone:4))
            FPevalxtwoclip(round(xtwo:4))
            FPevalbabsclip(round(abs(cb):4))
            FPevalcabsclip(round(abs(cc):4))

            Quadratic equation : $ca x^2$ FPifposcb $+$ else $-$ fi $babs x$ FPifposcc $+$ else $-$ fi $cabs=0$ %\[1cm]

            Result: $x = xone quad textand quad x = xtwo$


            endframe
            enddocument


            enter image description here



            Improved version



            This version handle better special situations (when some coefficients of the equation became -1, 1 or 0).



            As fp's FPqsolve doesn't handle equations without solutions (it emit an error), my code don't display correctly equations where the "x^2" AND the "x" term are null (it display, when the compiler don't stop at errors, something like: Quadratic equation: +6 = 0). This code is intended to be used only when the equation has real(s) solution(s).



            documentclassbeamer
            usepackagefp
            begindocument
            beginframe[fragile]Quadratic equation
            FPsetca1
            FPsetcb-5
            FPsetcc6
            FPqsolvexonextwocacbcc
            FPevalxoneclip(round(xone:4))
            FPevalxtwoclip(round(xtwo:4))
            FPevalaabsclip(round(abs(ca):4))
            FPevalbabsclip(round(abs(cb):4))
            FPevalcabsclip(round(abs(cc):4))
            newcommandsignaFPifnegca -elsefi
            newcommandpositiveSignBWithAFPifzeroca else +fi % if ca is 0, no positive sign before the "x" term if cb is positive
            newcommandsignbFPifnegcb -else positiveSignBWithAfi
            newcommandsigncFPifnegcc -else +fi
            newcommandcoeffaFPifeqaabs1 elseaabsfi
            newcommandcoeffbFPifeqbabs1 elsebabsfi
            newcommandpolyaFPifzeroca elsesignacoeffa x^2fi
            newcommandpolybFPifzerocb elsesignbcoeffb xfi
            newcommandpolycFPifzerocc elsesignccabsfi

            Quadratic equation : $polya polyb polyc =0$ \[1cm]

            Result: $x = xone quad textand quad x = xtwo$

            endframe
            enddocument


            enter image description here






            share|improve this answer

























              Your Answer








              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "85"
              ;
              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%2ftex.stackexchange.com%2fquestions%2f480444%2fhow-to-write-quadratic-equation-with-negative-coefficient%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









              10














              Some comparison are necessary. This assumes the coefficients are integers.



              documentclassbeamer
              usepackagefp

              newcommandquadratic[4][x]%
              FPsetca#2%
              FPsetcb#3%
              FPsetcc#4%
              FPqsolvexonextwocacbcc
              FPevalxoneclip(round(xone:4))%
              FPevalxtwoclip(round(xtwo:4))%
              Quadratic equation: $
              ifnumca=1
              else
              ifnumca=-1
              -%
              else
              ca
              fi
              fi
              #1^2%
              ifnumcb=0
              else
              ifnumcb>0
              +%
              ifnumcb=1
              else
              cb
              fi
              else
              ifnumcb=-1
              -%
              else
              cb
              fi
              fi
              #1%
              fi
              ifnumcc=0
              else
              ifnumcc>0
              +
              fi
              cc
              fi
              $\[bigskipamount]
              Result: $#1=xone$ and $#1=xtwo$%


              begindocument
              beginframeQuadratic equation

              quadratic1-56

              bigskip

              quadratic[t]231

              bigskip

              quadratic20-8

              endframe
              enddocument


              With expl3:



              documentclassbeamer
              usepackagexparse

              ExplSyntaxOn

              NewDocumentCommandquadraticOxmmm

              Quadratic~equation:~$
              str_case:nnF #2

              1
              -1-

              #2
              #1^2
              str_case:nnF #3

              0
              1+#1
              -1-#1

              fp_compare:nT #3>0 + #3#1
              fp_compare:nF #4 = 0

              fp_compare:nT #4 > 0 +

              #4
              $\[bigskipamount]
              Result:~$#1=sandu_solve:nnnn+#2#3#4$~and~
              $#1=sandu_solve:nnnn-#2#3#4$

              cs_new:Nn sandu_solve:nnnn

              fp_eval:n round( ( -(#3) #1 sqrt((#3)^2-4*(#2)*(#4)) )/(2*(#2)), 4)

              ExplSyntaxOff

              begindocument
              beginframeQuadratic equation

              quadratic1-56

              bigskip

              quadratic[t]231

              bigskip

              quadratic20-8

              endframe
              enddocument


              expl3






              share|improve this answer





























                10














                Some comparison are necessary. This assumes the coefficients are integers.



                documentclassbeamer
                usepackagefp

                newcommandquadratic[4][x]%
                FPsetca#2%
                FPsetcb#3%
                FPsetcc#4%
                FPqsolvexonextwocacbcc
                FPevalxoneclip(round(xone:4))%
                FPevalxtwoclip(round(xtwo:4))%
                Quadratic equation: $
                ifnumca=1
                else
                ifnumca=-1
                -%
                else
                ca
                fi
                fi
                #1^2%
                ifnumcb=0
                else
                ifnumcb>0
                +%
                ifnumcb=1
                else
                cb
                fi
                else
                ifnumcb=-1
                -%
                else
                cb
                fi
                fi
                #1%
                fi
                ifnumcc=0
                else
                ifnumcc>0
                +
                fi
                cc
                fi
                $\[bigskipamount]
                Result: $#1=xone$ and $#1=xtwo$%


                begindocument
                beginframeQuadratic equation

                quadratic1-56

                bigskip

                quadratic[t]231

                bigskip

                quadratic20-8

                endframe
                enddocument


                With expl3:



                documentclassbeamer
                usepackagexparse

                ExplSyntaxOn

                NewDocumentCommandquadraticOxmmm

                Quadratic~equation:~$
                str_case:nnF #2

                1
                -1-

                #2
                #1^2
                str_case:nnF #3

                0
                1+#1
                -1-#1

                fp_compare:nT #3>0 + #3#1
                fp_compare:nF #4 = 0

                fp_compare:nT #4 > 0 +

                #4
                $\[bigskipamount]
                Result:~$#1=sandu_solve:nnnn+#2#3#4$~and~
                $#1=sandu_solve:nnnn-#2#3#4$

                cs_new:Nn sandu_solve:nnnn

                fp_eval:n round( ( -(#3) #1 sqrt((#3)^2-4*(#2)*(#4)) )/(2*(#2)), 4)

                ExplSyntaxOff

                begindocument
                beginframeQuadratic equation

                quadratic1-56

                bigskip

                quadratic[t]231

                bigskip

                quadratic20-8

                endframe
                enddocument


                expl3






                share|improve this answer



























                  10












                  10








                  10







                  Some comparison are necessary. This assumes the coefficients are integers.



                  documentclassbeamer
                  usepackagefp

                  newcommandquadratic[4][x]%
                  FPsetca#2%
                  FPsetcb#3%
                  FPsetcc#4%
                  FPqsolvexonextwocacbcc
                  FPevalxoneclip(round(xone:4))%
                  FPevalxtwoclip(round(xtwo:4))%
                  Quadratic equation: $
                  ifnumca=1
                  else
                  ifnumca=-1
                  -%
                  else
                  ca
                  fi
                  fi
                  #1^2%
                  ifnumcb=0
                  else
                  ifnumcb>0
                  +%
                  ifnumcb=1
                  else
                  cb
                  fi
                  else
                  ifnumcb=-1
                  -%
                  else
                  cb
                  fi
                  fi
                  #1%
                  fi
                  ifnumcc=0
                  else
                  ifnumcc>0
                  +
                  fi
                  cc
                  fi
                  $\[bigskipamount]
                  Result: $#1=xone$ and $#1=xtwo$%


                  begindocument
                  beginframeQuadratic equation

                  quadratic1-56

                  bigskip

                  quadratic[t]231

                  bigskip

                  quadratic20-8

                  endframe
                  enddocument


                  With expl3:



                  documentclassbeamer
                  usepackagexparse

                  ExplSyntaxOn

                  NewDocumentCommandquadraticOxmmm

                  Quadratic~equation:~$
                  str_case:nnF #2

                  1
                  -1-

                  #2
                  #1^2
                  str_case:nnF #3

                  0
                  1+#1
                  -1-#1

                  fp_compare:nT #3>0 + #3#1
                  fp_compare:nF #4 = 0

                  fp_compare:nT #4 > 0 +

                  #4
                  $\[bigskipamount]
                  Result:~$#1=sandu_solve:nnnn+#2#3#4$~and~
                  $#1=sandu_solve:nnnn-#2#3#4$

                  cs_new:Nn sandu_solve:nnnn

                  fp_eval:n round( ( -(#3) #1 sqrt((#3)^2-4*(#2)*(#4)) )/(2*(#2)), 4)

                  ExplSyntaxOff

                  begindocument
                  beginframeQuadratic equation

                  quadratic1-56

                  bigskip

                  quadratic[t]231

                  bigskip

                  quadratic20-8

                  endframe
                  enddocument


                  expl3






                  share|improve this answer















                  Some comparison are necessary. This assumes the coefficients are integers.



                  documentclassbeamer
                  usepackagefp

                  newcommandquadratic[4][x]%
                  FPsetca#2%
                  FPsetcb#3%
                  FPsetcc#4%
                  FPqsolvexonextwocacbcc
                  FPevalxoneclip(round(xone:4))%
                  FPevalxtwoclip(round(xtwo:4))%
                  Quadratic equation: $
                  ifnumca=1
                  else
                  ifnumca=-1
                  -%
                  else
                  ca
                  fi
                  fi
                  #1^2%
                  ifnumcb=0
                  else
                  ifnumcb>0
                  +%
                  ifnumcb=1
                  else
                  cb
                  fi
                  else
                  ifnumcb=-1
                  -%
                  else
                  cb
                  fi
                  fi
                  #1%
                  fi
                  ifnumcc=0
                  else
                  ifnumcc>0
                  +
                  fi
                  cc
                  fi
                  $\[bigskipamount]
                  Result: $#1=xone$ and $#1=xtwo$%


                  begindocument
                  beginframeQuadratic equation

                  quadratic1-56

                  bigskip

                  quadratic[t]231

                  bigskip

                  quadratic20-8

                  endframe
                  enddocument


                  With expl3:



                  documentclassbeamer
                  usepackagexparse

                  ExplSyntaxOn

                  NewDocumentCommandquadraticOxmmm

                  Quadratic~equation:~$
                  str_case:nnF #2

                  1
                  -1-

                  #2
                  #1^2
                  str_case:nnF #3

                  0
                  1+#1
                  -1-#1

                  fp_compare:nT #3>0 + #3#1
                  fp_compare:nF #4 = 0

                  fp_compare:nT #4 > 0 +

                  #4
                  $\[bigskipamount]
                  Result:~$#1=sandu_solve:nnnn+#2#3#4$~and~
                  $#1=sandu_solve:nnnn-#2#3#4$

                  cs_new:Nn sandu_solve:nnnn

                  fp_eval:n round( ( -(#3) #1 sqrt((#3)^2-4*(#2)*(#4)) )/(2*(#2)), 4)

                  ExplSyntaxOff

                  begindocument
                  beginframeQuadratic equation

                  quadratic1-56

                  bigskip

                  quadratic[t]231

                  bigskip

                  quadratic20-8

                  endframe
                  enddocument


                  expl3







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Mar 20 at 11:44

























                  answered Mar 20 at 11:27









                  egregegreg

                  736k8919353261




                  736k8919353261





















                      6














                      Will also work with addterm -5x in addition to the intended addtermcb x.



                      The addterm macro takes a single argument, expands it once, and passes it to addtermaux. The addtermaux definition will grab the first token of the argument and examine to see if it is a minus - character. If so, it typesets a - and the rest of the argument. If not, it sees whether the first token was a + character. If so, it typesets a + and the rest of the argument. If neither of the above cases apply, it typesets a + and the complete argument.



                      In this way, the right output is provided whether cc is set to 6 or set to +6.



                      documentclassbeamer
                      usepackagefp
                      newcommandaddterm[1]expandafteraddtermaux#1relax
                      defaddtermaux#1#2relaxifx-#1-#2elseifx+#1+#2else+#1#2fifi
                      begindocument
                      beginframeQuadratic equation
                      FPsetca1
                      FPsetcb-5
                      FPsetcc6
                      FPqsolvexonextwocacbcc
                      FPevalxoneclip(round(xone:4))
                      FPevalxtwoclip(round(xtwo:4))
                      Quadratic equation : $ca x^2 addtermcb x addtermcc=0$\[1cm]
                      Result: $x = xone quad textand quad x = xtwo$
                      endframe
                      enddocument


                      enter image description here






                      share|improve this answer

























                      • could you explain newcommand and def...

                        – sandu
                        Mar 20 at 11:27











                      • @sandu I have edited the answer to provide context.

                        – Steven B. Segletes
                        Mar 20 at 11:32















                      6














                      Will also work with addterm -5x in addition to the intended addtermcb x.



                      The addterm macro takes a single argument, expands it once, and passes it to addtermaux. The addtermaux definition will grab the first token of the argument and examine to see if it is a minus - character. If so, it typesets a - and the rest of the argument. If not, it sees whether the first token was a + character. If so, it typesets a + and the rest of the argument. If neither of the above cases apply, it typesets a + and the complete argument.



                      In this way, the right output is provided whether cc is set to 6 or set to +6.



                      documentclassbeamer
                      usepackagefp
                      newcommandaddterm[1]expandafteraddtermaux#1relax
                      defaddtermaux#1#2relaxifx-#1-#2elseifx+#1+#2else+#1#2fifi
                      begindocument
                      beginframeQuadratic equation
                      FPsetca1
                      FPsetcb-5
                      FPsetcc6
                      FPqsolvexonextwocacbcc
                      FPevalxoneclip(round(xone:4))
                      FPevalxtwoclip(round(xtwo:4))
                      Quadratic equation : $ca x^2 addtermcb x addtermcc=0$\[1cm]
                      Result: $x = xone quad textand quad x = xtwo$
                      endframe
                      enddocument


                      enter image description here






                      share|improve this answer

























                      • could you explain newcommand and def...

                        – sandu
                        Mar 20 at 11:27











                      • @sandu I have edited the answer to provide context.

                        – Steven B. Segletes
                        Mar 20 at 11:32













                      6












                      6








                      6







                      Will also work with addterm -5x in addition to the intended addtermcb x.



                      The addterm macro takes a single argument, expands it once, and passes it to addtermaux. The addtermaux definition will grab the first token of the argument and examine to see if it is a minus - character. If so, it typesets a - and the rest of the argument. If not, it sees whether the first token was a + character. If so, it typesets a + and the rest of the argument. If neither of the above cases apply, it typesets a + and the complete argument.



                      In this way, the right output is provided whether cc is set to 6 or set to +6.



                      documentclassbeamer
                      usepackagefp
                      newcommandaddterm[1]expandafteraddtermaux#1relax
                      defaddtermaux#1#2relaxifx-#1-#2elseifx+#1+#2else+#1#2fifi
                      begindocument
                      beginframeQuadratic equation
                      FPsetca1
                      FPsetcb-5
                      FPsetcc6
                      FPqsolvexonextwocacbcc
                      FPevalxoneclip(round(xone:4))
                      FPevalxtwoclip(round(xtwo:4))
                      Quadratic equation : $ca x^2 addtermcb x addtermcc=0$\[1cm]
                      Result: $x = xone quad textand quad x = xtwo$
                      endframe
                      enddocument


                      enter image description here






                      share|improve this answer















                      Will also work with addterm -5x in addition to the intended addtermcb x.



                      The addterm macro takes a single argument, expands it once, and passes it to addtermaux. The addtermaux definition will grab the first token of the argument and examine to see if it is a minus - character. If so, it typesets a - and the rest of the argument. If not, it sees whether the first token was a + character. If so, it typesets a + and the rest of the argument. If neither of the above cases apply, it typesets a + and the complete argument.



                      In this way, the right output is provided whether cc is set to 6 or set to +6.



                      documentclassbeamer
                      usepackagefp
                      newcommandaddterm[1]expandafteraddtermaux#1relax
                      defaddtermaux#1#2relaxifx-#1-#2elseifx+#1+#2else+#1#2fifi
                      begindocument
                      beginframeQuadratic equation
                      FPsetca1
                      FPsetcb-5
                      FPsetcc6
                      FPqsolvexonextwocacbcc
                      FPevalxoneclip(round(xone:4))
                      FPevalxtwoclip(round(xtwo:4))
                      Quadratic equation : $ca x^2 addtermcb x addtermcc=0$\[1cm]
                      Result: $x = xone quad textand quad x = xtwo$
                      endframe
                      enddocument


                      enter image description here







                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      edited Mar 20 at 11:49

























                      answered Mar 20 at 11:20









                      Steven B. SegletesSteven B. Segletes

                      163k9207419




                      163k9207419












                      • could you explain newcommand and def...

                        – sandu
                        Mar 20 at 11:27











                      • @sandu I have edited the answer to provide context.

                        – Steven B. Segletes
                        Mar 20 at 11:32

















                      • could you explain newcommand and def...

                        – sandu
                        Mar 20 at 11:27











                      • @sandu I have edited the answer to provide context.

                        – Steven B. Segletes
                        Mar 20 at 11:32
















                      could you explain newcommand and def...

                      – sandu
                      Mar 20 at 11:27





                      could you explain newcommand and def...

                      – sandu
                      Mar 20 at 11:27













                      @sandu I have edited the answer to provide context.

                      – Steven B. Segletes
                      Mar 20 at 11:32





                      @sandu I have edited the answer to provide context.

                      – Steven B. Segletes
                      Mar 20 at 11:32











                      4















                      Edit: See below an improved version.




                      Note the [fragile] in beginframe. Necessary with FPifpos.



                      documentclassbeamer
                      usepackagefp
                      begindocument
                      beginframe[fragile]Quadratic equation
                      FPsetca1
                      FPsetcb-5
                      FPsetcc6
                      FPqsolvexonextwocacbcc
                      FPevalxoneclip(round(xone:4))
                      FPevalxtwoclip(round(xtwo:4))
                      FPevalbabsclip(round(abs(cb):4))
                      FPevalcabsclip(round(abs(cc):4))

                      Quadratic equation : $ca x^2$ FPifposcb $+$ else $-$ fi $babs x$ FPifposcc $+$ else $-$ fi $cabs=0$ %\[1cm]

                      Result: $x = xone quad textand quad x = xtwo$


                      endframe
                      enddocument


                      enter image description here



                      Improved version



                      This version handle better special situations (when some coefficients of the equation became -1, 1 or 0).



                      As fp's FPqsolve doesn't handle equations without solutions (it emit an error), my code don't display correctly equations where the "x^2" AND the "x" term are null (it display, when the compiler don't stop at errors, something like: Quadratic equation: +6 = 0). This code is intended to be used only when the equation has real(s) solution(s).



                      documentclassbeamer
                      usepackagefp
                      begindocument
                      beginframe[fragile]Quadratic equation
                      FPsetca1
                      FPsetcb-5
                      FPsetcc6
                      FPqsolvexonextwocacbcc
                      FPevalxoneclip(round(xone:4))
                      FPevalxtwoclip(round(xtwo:4))
                      FPevalaabsclip(round(abs(ca):4))
                      FPevalbabsclip(round(abs(cb):4))
                      FPevalcabsclip(round(abs(cc):4))
                      newcommandsignaFPifnegca -elsefi
                      newcommandpositiveSignBWithAFPifzeroca else +fi % if ca is 0, no positive sign before the "x" term if cb is positive
                      newcommandsignbFPifnegcb -else positiveSignBWithAfi
                      newcommandsigncFPifnegcc -else +fi
                      newcommandcoeffaFPifeqaabs1 elseaabsfi
                      newcommandcoeffbFPifeqbabs1 elsebabsfi
                      newcommandpolyaFPifzeroca elsesignacoeffa x^2fi
                      newcommandpolybFPifzerocb elsesignbcoeffb xfi
                      newcommandpolycFPifzerocc elsesignccabsfi

                      Quadratic equation : $polya polyb polyc =0$ \[1cm]

                      Result: $x = xone quad textand quad x = xtwo$

                      endframe
                      enddocument


                      enter image description here






                      share|improve this answer





























                        4















                        Edit: See below an improved version.




                        Note the [fragile] in beginframe. Necessary with FPifpos.



                        documentclassbeamer
                        usepackagefp
                        begindocument
                        beginframe[fragile]Quadratic equation
                        FPsetca1
                        FPsetcb-5
                        FPsetcc6
                        FPqsolvexonextwocacbcc
                        FPevalxoneclip(round(xone:4))
                        FPevalxtwoclip(round(xtwo:4))
                        FPevalbabsclip(round(abs(cb):4))
                        FPevalcabsclip(round(abs(cc):4))

                        Quadratic equation : $ca x^2$ FPifposcb $+$ else $-$ fi $babs x$ FPifposcc $+$ else $-$ fi $cabs=0$ %\[1cm]

                        Result: $x = xone quad textand quad x = xtwo$


                        endframe
                        enddocument


                        enter image description here



                        Improved version



                        This version handle better special situations (when some coefficients of the equation became -1, 1 or 0).



                        As fp's FPqsolve doesn't handle equations without solutions (it emit an error), my code don't display correctly equations where the "x^2" AND the "x" term are null (it display, when the compiler don't stop at errors, something like: Quadratic equation: +6 = 0). This code is intended to be used only when the equation has real(s) solution(s).



                        documentclassbeamer
                        usepackagefp
                        begindocument
                        beginframe[fragile]Quadratic equation
                        FPsetca1
                        FPsetcb-5
                        FPsetcc6
                        FPqsolvexonextwocacbcc
                        FPevalxoneclip(round(xone:4))
                        FPevalxtwoclip(round(xtwo:4))
                        FPevalaabsclip(round(abs(ca):4))
                        FPevalbabsclip(round(abs(cb):4))
                        FPevalcabsclip(round(abs(cc):4))
                        newcommandsignaFPifnegca -elsefi
                        newcommandpositiveSignBWithAFPifzeroca else +fi % if ca is 0, no positive sign before the "x" term if cb is positive
                        newcommandsignbFPifnegcb -else positiveSignBWithAfi
                        newcommandsigncFPifnegcc -else +fi
                        newcommandcoeffaFPifeqaabs1 elseaabsfi
                        newcommandcoeffbFPifeqbabs1 elsebabsfi
                        newcommandpolyaFPifzeroca elsesignacoeffa x^2fi
                        newcommandpolybFPifzerocb elsesignbcoeffb xfi
                        newcommandpolycFPifzerocc elsesignccabsfi

                        Quadratic equation : $polya polyb polyc =0$ \[1cm]

                        Result: $x = xone quad textand quad x = xtwo$

                        endframe
                        enddocument


                        enter image description here






                        share|improve this answer



























                          4












                          4








                          4








                          Edit: See below an improved version.




                          Note the [fragile] in beginframe. Necessary with FPifpos.



                          documentclassbeamer
                          usepackagefp
                          begindocument
                          beginframe[fragile]Quadratic equation
                          FPsetca1
                          FPsetcb-5
                          FPsetcc6
                          FPqsolvexonextwocacbcc
                          FPevalxoneclip(round(xone:4))
                          FPevalxtwoclip(round(xtwo:4))
                          FPevalbabsclip(round(abs(cb):4))
                          FPevalcabsclip(round(abs(cc):4))

                          Quadratic equation : $ca x^2$ FPifposcb $+$ else $-$ fi $babs x$ FPifposcc $+$ else $-$ fi $cabs=0$ %\[1cm]

                          Result: $x = xone quad textand quad x = xtwo$


                          endframe
                          enddocument


                          enter image description here



                          Improved version



                          This version handle better special situations (when some coefficients of the equation became -1, 1 or 0).



                          As fp's FPqsolve doesn't handle equations without solutions (it emit an error), my code don't display correctly equations where the "x^2" AND the "x" term are null (it display, when the compiler don't stop at errors, something like: Quadratic equation: +6 = 0). This code is intended to be used only when the equation has real(s) solution(s).



                          documentclassbeamer
                          usepackagefp
                          begindocument
                          beginframe[fragile]Quadratic equation
                          FPsetca1
                          FPsetcb-5
                          FPsetcc6
                          FPqsolvexonextwocacbcc
                          FPevalxoneclip(round(xone:4))
                          FPevalxtwoclip(round(xtwo:4))
                          FPevalaabsclip(round(abs(ca):4))
                          FPevalbabsclip(round(abs(cb):4))
                          FPevalcabsclip(round(abs(cc):4))
                          newcommandsignaFPifnegca -elsefi
                          newcommandpositiveSignBWithAFPifzeroca else +fi % if ca is 0, no positive sign before the "x" term if cb is positive
                          newcommandsignbFPifnegcb -else positiveSignBWithAfi
                          newcommandsigncFPifnegcc -else +fi
                          newcommandcoeffaFPifeqaabs1 elseaabsfi
                          newcommandcoeffbFPifeqbabs1 elsebabsfi
                          newcommandpolyaFPifzeroca elsesignacoeffa x^2fi
                          newcommandpolybFPifzerocb elsesignbcoeffb xfi
                          newcommandpolycFPifzerocc elsesignccabsfi

                          Quadratic equation : $polya polyb polyc =0$ \[1cm]

                          Result: $x = xone quad textand quad x = xtwo$

                          endframe
                          enddocument


                          enter image description here






                          share|improve this answer
















                          Edit: See below an improved version.




                          Note the [fragile] in beginframe. Necessary with FPifpos.



                          documentclassbeamer
                          usepackagefp
                          begindocument
                          beginframe[fragile]Quadratic equation
                          FPsetca1
                          FPsetcb-5
                          FPsetcc6
                          FPqsolvexonextwocacbcc
                          FPevalxoneclip(round(xone:4))
                          FPevalxtwoclip(round(xtwo:4))
                          FPevalbabsclip(round(abs(cb):4))
                          FPevalcabsclip(round(abs(cc):4))

                          Quadratic equation : $ca x^2$ FPifposcb $+$ else $-$ fi $babs x$ FPifposcc $+$ else $-$ fi $cabs=0$ %\[1cm]

                          Result: $x = xone quad textand quad x = xtwo$


                          endframe
                          enddocument


                          enter image description here



                          Improved version



                          This version handle better special situations (when some coefficients of the equation became -1, 1 or 0).



                          As fp's FPqsolve doesn't handle equations without solutions (it emit an error), my code don't display correctly equations where the "x^2" AND the "x" term are null (it display, when the compiler don't stop at errors, something like: Quadratic equation: +6 = 0). This code is intended to be used only when the equation has real(s) solution(s).



                          documentclassbeamer
                          usepackagefp
                          begindocument
                          beginframe[fragile]Quadratic equation
                          FPsetca1
                          FPsetcb-5
                          FPsetcc6
                          FPqsolvexonextwocacbcc
                          FPevalxoneclip(round(xone:4))
                          FPevalxtwoclip(round(xtwo:4))
                          FPevalaabsclip(round(abs(ca):4))
                          FPevalbabsclip(round(abs(cb):4))
                          FPevalcabsclip(round(abs(cc):4))
                          newcommandsignaFPifnegca -elsefi
                          newcommandpositiveSignBWithAFPifzeroca else +fi % if ca is 0, no positive sign before the "x" term if cb is positive
                          newcommandsignbFPifnegcb -else positiveSignBWithAfi
                          newcommandsigncFPifnegcc -else +fi
                          newcommandcoeffaFPifeqaabs1 elseaabsfi
                          newcommandcoeffbFPifeqbabs1 elsebabsfi
                          newcommandpolyaFPifzeroca elsesignacoeffa x^2fi
                          newcommandpolybFPifzerocb elsesignbcoeffb xfi
                          newcommandpolycFPifzerocc elsesignccabsfi

                          Quadratic equation : $polya polyb polyc =0$ \[1cm]

                          Result: $x = xone quad textand quad x = xtwo$

                          endframe
                          enddocument


                          enter image description here







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Mar 21 at 3:26

























                          answered Mar 20 at 11:05









                          quark67quark67

                          857137




                          857137



























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to TeX - LaTeX 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.

                              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%2ftex.stackexchange.com%2fquestions%2f480444%2fhow-to-write-quadratic-equation-with-negative-coefficient%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

                              Identifying “long and narrow” polygons in with PostGISlength and width of polygonWhy postgis st_overlaps reports Qgis' “avoid intersections” generated polygon as overlapping with others?Adjusting polygons to boundary and filling holesDrawing polygons with fixed area?How to remove spikes in Polygons with PostGISDeleting sliver polygons after difference operation in QGIS?Snapping boundaries in PostGISSplit polygon into parts adding attributes based on underlying polygon in QGISSplitting overlap between polygons and assign to nearest polygon using PostGIS?Expanding polygons and clipping at midpoint?Removing Intersection of Buffers in Same Layers

                              Masuk log Menu navigasi

                              อาณาจักร (ชีววิทยา) ดูเพิ่ม อ้างอิง รายการเลือกการนำทาง10.1086/39456810.5962/bhl.title.447410.1126/science.163.3863.150576276010.1007/BF01796092408502"Phylogenetic structure of the prokaryotic domain: the primary kingdoms"10.1073/pnas.74.11.5088432104270744"Towards a natural system of organisms: proposal for the domains Archaea, Bacteria, and Eucarya"1990PNAS...87.4576W10.1073/pnas.87.12.4576541592112744PubMedJump the queueexpand by handPubMedJump the queueexpand by handPubMedJump the queueexpand by hand"A revised six-kingdom system of life"10.1111/j.1469-185X.1998.tb00030.x9809012"Only six kingdoms of life"10.1098/rspb.2004.2705169172415306349"Kingdoms Protozoa and Chromista and the eozoan root of the eukaryotic tree"10.1098/rsbl.2009.0948288006020031978เพิ่มข้อมูล