Subject Areas
  Basics
  Algebra
  Geometry
  Statistics
  Trigonometry
  Calculus
Tools / Misc
  GED
  Graphing
  Math Tools

scrnGC2: Calc Input
scrnGC3: f(x) Plot Input
scrnGC4: g(x) Plot Input
The inputs above will be hidden when the program finally gets launched. Currently, I am not hiding them even when you close the calculator. The purpose of the inputs is to help in debugging. This allows you to enter simple code on the calculator screen but the program translates the input to javascript math. Give it a try and see if you notice any obvious problems or have suggestions for improvements.
Synthetic Division Help
Valid HTML 4.0 Transitional
Synthetic division is a simple way of doing polynomial division.  Set up the coefficients of your polynomial from highest degree to lowest, including your constant, if any. If any degree is missing you must enter zero as the coefficient.

The root of the divisor is placed in front of the coefficients as shown in the example below. Watch the demo to see how the term on line 3 is multiplied by the possible root with the result going to line 2, adding terms and then repeating the process. If the remainder of this computation ends up being zero, then you have found a root.

Example 1: (2x³ + 3x² +2x +1) / (x + 1)

Note: -1 is the root of the divisor.

Division Setup:     -1 |    2     3     2     1
                                              -2    -1    -1                       
                                        2     1     1  |   0

The quotient is 2x² + x + 1 with a remainder of zero.
Therefore, -1 is a root and (x+1) is a factor.

 

Example 2: (x² - 1) / (x - 1)

Note: +1 is the root of the divisor.

Division Setup:     +1 |    1     0     -1                        Note:  Zero x's.
                                                1       1 
                                         1     1   |   0

The quotient is x + 1with a remainder of zero.
Therefore, +1 is a root and (x-1) is a factor.



© 2002- John Schlecht. All rights reserved.