Difference between revisions of "TI-BASIC:Quadratic Formula"

From Learn @ Cemetech
Jump to navigationJump to search
(Automated internal link correction)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
{{Template:TI-BASIC:Routine
 
{{Template:TI-BASIC:Routine
|picture=@@
+
|picture=
 
|summary=Solves for the complex roots of a quadratic equation.
 
|summary=Solves for the complex roots of a quadratic equation.
|input=''A, B, C'' - the constants in Ax^^2^^+Bx+C=0
+
|input=''A, B, C'' - the constants in Ax<sup>2</sup>+Bx+C=0
 
|output=''Ans'' - a 2-element list of the two roots (or the one repeated root)
 
|output=''Ans'' - a 2-element list of the two roots (or the one repeated root)
 
|variable=A, B, C
 
|variable=A, B, C
 
|compatibility=TI-83/84/+/SE
 
|compatibility=TI-83/84/+/SE
 
|author=thornahawk
 
|author=thornahawk
|authors=@@
+
|authors=
 
|url=http://www.unitedti.org/index.php?showtopic=7392&view=findpost&p=116156 United TI
 
|url=http://www.unitedti.org/index.php?showtopic=7392&view=findpost&p=116156 United TI
 
|download=[file quadraticformula.zip]
 
|download=[file quadraticformula.zip]
Line 14: Line 14:
 
  -2C/(B+{-1,1}√(B²+4ACi²
 
  -2C/(B+{-1,1}√(B²+4ACi²
  
For optimization purposes, an alternate form of the quadratic formula is used (see below for the formulas). The {-1,1} list is used to replace the ± symbol -- lists can be used just as well as numbers in expressions, making the result a list as well. By using ''i''² in the expression in place of subtraction, the routine avoids having to activate [[TI-BASIC:A+bi|A+bi]] mode to allow complex roots.
+
For optimization purposes, an alternate form of the quadratic formula is used (see below for the formulas). The {-1,1} list is used to replace the ± symbol -- lists can be used just as well as numbers in expressions, making the result a list as well. By using ''i''² in the expression in place of subtraction, the routine avoids having to activate [[TI-BASIC:A_Bi|A+bi]] mode to allow complex roots.
  
 
The output is a complex list in [[TI-BASIC:Ans|Ans]] of the two roots. If there is only one root, it will be returned twice. If both roots are real, they will still be returned correctly, but stored internally as complex numbers -- so use the [[TI-BASIC:Real_Func|real(]] command on them if you want to pass them to commands that don't accept complex arguments.
 
The output is a complex list in [[TI-BASIC:Ans|Ans]] of the two roots. If there is only one root, it will be returned twice. If both roots are real, they will still be returned correctly, but stored internally as complex numbers -- so use the [[TI-BASIC:Real_Func|real(]] command on them if you want to pass them to commands that don't accept complex arguments.

Latest revision as of 23:22, 24 February 2016


Routine Summary

Solves for the complex roots of a quadratic equation.

Inputs

A, B, C - the constants in Ax2+Bx+C=0

Outputs

Ans - a 2-element list of the two roots (or the one repeated root)

Variables Used

A, B, C

Calculator Compatibility

TI-83/84/+/SE Author

thornahawkURL: United TI Download

file quadraticformula.zip

-2C/(B+{-1,1}√(B²+4ACi²

For optimization purposes, an alternate form of the quadratic formula is used (see below for the formulas). The {-1,1} list is used to replace the ± symbol -- lists can be used just as well as numbers in expressions, making the result a list as well. By using i² in the expression in place of subtraction, the routine avoids having to activate A+bi mode to allow complex roots.

The output is a complex list in Ans of the two roots. If there is only one root, it will be returned twice. If both roots are real, they will still be returned correctly, but stored internally as complex numbers -- so use the real( command on them if you want to pass them to commands that don't accept complex arguments.

Advanced

The ordinary formula above can give poor results if B is much larger than A and/or C. In that case, an alternate routine can be used:

√(B²+4ACi²
If 0>real(Ansconj(B
-Ans
-.5(B+Ans
{Ans/A,C/Ans

Formulas

The ordinary quadratic formula, and its alternate form are used:

<math> \begin{align} \mathrm{For} \hspace{5pt} ax^2+bx+c = 0, \\ \\ x = \frac{-b\pm\sqrt{b^2-4ac}}{2a} \\ \\ x = \frac{2c}{-b\pm\sqrt{b^2-4ac}} \end{align} </math>