So I have a few programs related to quadratic formula -
One that gives you the solutions - https://raw.githubusercontent.com/T3M1N4L/Calc-Programs/refs/heads/main/QUADSOLV.8xp
One that gives you the quadratic factors - https://raw.githubusercontent.com/T3M1N4L/Calc-Programs/refs/heads/main/QFACTOR.8xp
One that gives you the discriminant -
Code:
All of these have the same sort of input thing where it asks for a, b, and c
is it possible to combine all of these programs together so that it shows you the solutions, the quadratic factors, and the discriminant? if so can someone compile all the programs above into one and send it over? I would do it myself if I were experienced in TI-BASIC.
One that gives you the solutions - https://raw.githubusercontent.com/T3M1N4L/Calc-Programs/refs/heads/main/QUADSOLV.8xp
One that gives you the quadratic factors - https://raw.githubusercontent.com/T3M1N4L/Calc-Programs/refs/heads/main/QFACTOR.8xp
One that gives you the discriminant -
Code:
Prompt A,B,C
B^2-4AC
If not(Ans
Disp "ONE ROOT
If Ans>0
Disp "TWO ROOTS
If Ans<0
Disp "NO ROOTS
All of these have the same sort of input thing where it asks for a, b, and c
is it possible to combine all of these programs together so that it shows you the solutions, the quadratic factors, and the discriminant? if so can someone compile all the programs above into one and send it over? I would do it myself if I were experienced in TI-BASIC.