Update README.md

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2024-01-26 18:21:23 +01:00 committed by GitHub
parent 3976930f77
commit 8e765513cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -217,3 +217,22 @@ plt.show()
```
![image1](image1.png)
## Assumptions about the symbols
```python
C1 = sympy.symbols('C1', positive=True)
```
|||
|---|---|
|real=True| The symbol represents a real number.|
|positive=True| The symbol represents a positive number.|
|negative=True| The symbol represents a negative number.|
|integer=True| The symbol represents an integer.|
|prime=True| The symbol represents a prime number.|
|odd=True| The symbol represents an odd number.|
|even=True| The symbol represents an even number.|