From 672492f65de234474a30517d753be8759cd10569 Mon Sep 17 00:00:00 2001 From: Crizomb <62544756+Crizomb@users.noreply.github.com> Date: Tue, 18 Jun 2024 17:23:10 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b5b2944..db51419 100644 --- a/README.md +++ b/README.md @@ -9,12 +9,12 @@ Python-symbolic is a small project written in pure Python that allows you to per - Expression tree implementation - Transformation of infix strings to expression trees - Visualization of expression trees +- Expansion of expressions (e.g., `a*(a+b)` to `a^2 + ab`) ### To-Do: - Create a type (BinOperator) for exponents - Implement complex numbers - Modify expression trees, including: - - Expansion of expressions (e.g., `a*(a+b)` to `a^2 + ab`) - Factorization of expressions (e.g., `a^2 + 2ab + b^2` to `(a+b)^2`) - Easy simplification (e.g., `sin(x)² + cos(x)²` to `1`) - Define calculus types: