Please
bookmark
and print
out
important
pages. 

Program for TI 82/83 for Synthetic Division

Check with the manual for directions on how to program the calculator.  Briefly, Press PGRM, NEW, Create New , Enter.   Give it a name SYNTHETIC  is OK.  
Then type in what you see.

->  mean STO on the calculator.

To get to items like DISP  and Menu,  INPUT, etc. use the PGRM key while in the Create New mode.

( If you have a TI Graph Link and know how to use it, I will email you the programs so that you  can enter them through the link.)


Disp "ENTER {LIST} OF

Disp "DIVIDEND COEFFICIENTS:"

Input L1

Input "DIVISOR CONSTANT TERM:",C

dim(L1)->L

L1(1)->S

Disp "QUOTIENTS COEFFS ="

For(I, 1, L-1)

Pause S

C*S+L1(I+1)->S

End

Disp "REMAINDER=",S


Program for for Roots and vertex of Quadratic

Disp "AX2+BX+C"

Prompt A,B,C

B2-4AC->D

(-B+sqrt(D))/(2A)->M         Note  sqrt  is the radical symbol on the calculator  

(-B-sqrt(D))/(2A)->N

round(M,3)->Q

round(N,3)->R:Disp "THE ZEROS ARE"

Disp Q

Disp R

Disp "VERTEX IS"

Disp -B/(2A)

-B/(2A)->V

Disp AV2+BV+C

© Joan Bookbinder 1998 1999