Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -178,6 +178,10 @@ NOTE: For eigenvalue problems, use 'lam = Symbol('lam')' instead of importing fr
|
|
| 178 |
|
| 179 |
8. If calculating integrals, write the SymPy code to compute the original integral directly with respect to the original variable of integration,
|
| 180 |
not any integral that might have been rewritten with a variable substitution.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 181 |
|
| 182 |
```python
|
| 183 |
from sympy import Matrix, symbols, solve
|
|
|
|
| 178 |
|
| 179 |
8. If calculating integrals, write the SymPy code to compute the original integral directly with respect to the original variable of integration,
|
| 180 |
not any integral that might have been rewritten with a variable substitution.
|
| 181 |
+
|
| 182 |
+
9. If using SymPy to evalute an infinite sum, attempt using the infinite sum, and in addition report what the sum of the first 100 terms is as a sanity check.
|
| 183 |
+
|
| 184 |
+
10. Do not use SciPy.
|
| 185 |
|
| 186 |
```python
|
| 187 |
from sympy import Matrix, symbols, solve
|