| Author | Comment | 
| jamrev Probe
 Posted: 12 Mar 2011
 12:19 GMT
 Total Posts: 3
 | Greetings.  I am looking for a factoring program that will work on my TI-84 Plus SE.  I tried one from Ticalc but it puts it into some archive and I am not smart enough to figure out how to make it work. | 
| gulyman Goliath
 
  Posted: 15 Mar 2011
 16:31 GMT
 Total Posts: 144
 | If you can put program your calculator, this should work. 
 PROGRAM:FACTOR
 Input A
 ClrHome
 A->D
 0->B
 While (B<(squareRoot(A)-1))
 B+1->B
 A/B->C
 If fPart(C)=0
 Then
 Disp B,C," "
 Pause
 End
 End
 | 
| jamrev Probe
 Posted: 15 Mar 2011
 16:40 GMT
 Total Posts: 3
 | Thank you.  I am really new at this.  Could you PM me and walk me through this? |