If my question is unclear there is a great explainaion of what I'm attempting to do here under the section, "Method 2: The British Method": http://www.gradeamathhelp.com/how-to-factor-polynomials.html
My current program simply inputted all 3 A,B, and C variables and then assigned A*C to D
I then took the negative value of the absolute value of D and assigned it to X and Y
I then simply did if/then statements to test if X+Y=B and X*Y=D and if not, to add .5 to X until it was equal to or greater than D at which point I put X back to it's orignial value and added .5 to Y. This resulted in a memory error.
Disregarding the awful, AWFUL habit I made of using if/then statements, does anyone have a better idea of how I can solve this? (And cut me some slack, I only dabble around in java and python and sometimes TIBasic, and I'm only a sophomore in highschool!)
Note: This code won't run because I'm recreating it, it's not the actual code, just a recreation. Syntax is all bugged up. (IE: -> is an arrow, not a negative equal sign)
I just wrote this so i might have forgotten something.
:Prompt A
:Prompt B
:Prompt C
:A*C→D
:-abs(D)→X
:-abs(D)→Y
:Lbl A
:If X+Y=B and X*Y=D
:Then
:Disp X,Y
:Pause
:Else
:X+.5→X
:Goto B
:Lbl B
:If X>D
:-abs(D)→X
:Y+.5→Y
:Goto A
Download available at: http://www.ticalc.org/pub/83/basic/math/algebra/