joshuarauh commited on
Commit
1c01413
·
verified ·
1 Parent(s): bc5c4ac

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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