From a07552e3d0b0747bf2117a5204dfba90d284eeb3 Mon Sep 17 00:00:00 2001 From: fd7794 Date: Tue, 6 Feb 2024 13:07:20 +0100 Subject: [PATCH] added difference_of_simplified_exponential_functions function --- src/main/py/read_math_function.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/py/read_math_function.py b/src/main/py/read_math_function.py index 05307b3..13fb78c 100644 --- a/src/main/py/read_math_function.py +++ b/src/main/py/read_math_function.py @@ -117,4 +117,8 @@ def sum_of_simplified_exponential_functions(type, function): if type !="se": return False summands = function.split('+') - return simplify_exponential_function('e', summands) \ No newline at end of file + return simplify_exponential_function('e', summands) + +def difference_of_simplified_exponential_functions(type, function): + if type !="de": + return False \ No newline at end of file