Update README.md

This commit is contained in:
Crizomb 2024-06-18 17:23:10 +02:00 committed by GitHub
parent c54793c406
commit 672492f65d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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: