insomicman
New member
- Joined
- Oct 6, 2015
- Messages
- 1
I'm currently working on an application for a class that will calculate:
Intercepts
Critical points
Inflection points
Asymptotes
for an equation entered in by a user. So far, the following types are allowed to be entered:
Numbers (Both integer and decimal)
Addition/Subtraction
Multiplication/Division
Variable X (only one variable so far)
Powers (Though a^x not currently allowed)
Parentheses
I'm looking for a list of possible equations (f(x) = ...) using combinations of those inputs to test and try to "break" the program so I can try to fix those instances. For example, dividing by 0 currently gives an error. Could anyone provide or point me to a list of equations, particularly difficult to solve ones, I can use to help me spot anything I might not have thought of?
Intercepts
Critical points
Inflection points
Asymptotes
for an equation entered in by a user. So far, the following types are allowed to be entered:
Numbers (Both integer and decimal)
Addition/Subtraction
Multiplication/Division
Variable X (only one variable so far)
Powers (Though a^x not currently allowed)
Parentheses
I'm looking for a list of possible equations (f(x) = ...) using combinations of those inputs to test and try to "break" the program so I can try to fix those instances. For example, dividing by 0 currently gives an error. Could anyone provide or point me to a list of equations, particularly difficult to solve ones, I can use to help me spot anything I might not have thought of?