Browse Source

added if case for 'x' in function for difference_of_simplified_exponential_functions

master
fd7794 11 months ago
parent
commit
f35bdc3768
  1. 3
      src/main/py/read_math_function.py

3
src/main/py/read_math_function.py

@ -128,3 +128,6 @@ def difference_of_simplified_exponential_functions(type, function):
minuend, subtrahend = function.split('-') minuend, subtrahend = function.split('-')
new_minuend = simplify_exponential_function('e', minuend) new_minuend = simplify_exponential_function('e', minuend)
new_subtrahend = simplify_exponential_function('e', subtrahend) new_subtrahend = simplify_exponential_function('e', subtrahend)
if new_minuend != "Der Ausdruck muss die Variable 'x' enthalten." and new_subtrahend != "Der Ausdruck muss die Variable 'x' enthalten.":
simplified = new_minuend - new_subtrahend
return simplified
Loading…
Cancel
Save