Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -293,7 +293,8 @@ NOTE: For eigenvalue problems, use 'lam = Symbol('lam')' instead of importing fr
|
|
293 |
print("Indefinite integral:")
|
294 |
print(indefinite_integral)
|
295 |
```
|
296 |
-
|
|
|
297 |
For numerical verification, always use definite integrals:
|
298 |
```python
|
299 |
# Use specific bounds and verify numerically
|
|
|
293 |
print("Indefinite integral:")
|
294 |
print(indefinite_integral)
|
295 |
```
|
296 |
+
NOTE: If there was an indefinite integral before you manipulated the expression, always try the above approach before proceeding.
|
297 |
+
|
298 |
For numerical verification, always use definite integrals:
|
299 |
```python
|
300 |
# Use specific bounds and verify numerically
|