Tuesday, January 7, 2014

code to for factoring program for TI-84 and 83

Note: 
(sto) = store the arrow above the on button
!= means not equal to found at 2nd, MATH, 2
:ClrHome
:Input "Enter A: ",A
:Input "Enter B: ",B
:Input "Enter C: ",C
:gcd(abs(A),gcd(abs(B),abs(C))) (sto) G
:If (G!=0)
:Then
:(A/G) (sto) A
:(B/G) (sto) B
:(C/G) (sto) C
:End
:(A*C) (sto) D
:0 (sto) L
:1 (sto) J
:While (L!=B)
:(D/J) (sto) K
:If (fPart(K)=0)
:Then
:J+K (sto) L
:J+1 (sto) J
:Else
:J+1 (sto) J
:End
:End
:J-1 (sto) J
:A (sto) O
:gcd(abs(K),abs(O)) (sto) H
:(K/H) (sto) K
:(O/H) (sto) O
:gcd(abs(J),abs(A)) (sto) M
:(J/M) (sto) J
:(A/M) (sto) A
:PlotsOff
:AxesOff
:ClrDraw
:Text(-1,15,0,G,"(",O,"X+",K,")(",A,"X+'­,J,")"
----------------------------------------­--------------------------------
This program is based off of the a and c busting b method of factoring, it only works with polynomials in the form of ax^2+bx+c

No comments:

Post a Comment

how to make a batch file to crash windows

here is the "code" %0|%0 paste that in a notepad and save it as whateveryou want.bat for example lol.bat by running this it...