The Derivative Explorer is a string parser that can calculate the derivative of simple algebraic expressions and evalutate them
// Derivative Calculator V1.0
// Notes:
// 1. Currently only supports + - * / ^ operators as well as parenthesis
// 2. Use * for all multiplication
// 3. Exponents must be of the form f(x)^a
// 4. Type "finish" in expression slot to end
// Please input the expression:
3*x^2
//With respect to:
x
//returns 3*(1*(2*(x^1))) Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.