Quadratic Formulator v1.1 Release Notes - By Jeff Chien Addition notes: -The program currently does not handle non-integer values. -Inputting any non-digit will cause the program to crash. -Some answers will return values such as: 4X^2 + 0X - 4 = 4 (X - 1) (X + 1) You can simply multiply either of the solution answers by 4 to get something like: (4x - 4) (X + 1) An example where this is practical: 8X^2 - 7X - 1 = 8 (X - 1) (X + 0.125) Converts to: (X - 1) (8X + 1) One last example: 4X^2 + 0X - 25 = 4 (X + 2.5) (X - 2.5) You can split up the 4 into different numbers: 2 * 2 (X + 2.5) (X - 2.5) 2 (X + 2.5) * 2 (X - 2.5) (2X + 5) (2X - 5) While the program works perfectly, in theory, there still may be some bugs to work out. And until I, Jeff Chien, have stated that I am fully confident that the program works without error, I am not responsible for any wrong answers it returns. Copyright 2003 Jeff Chien. Feel free to modify and / or distribute the program, but at least give me some credit.