joshuarauh commited on
Commit
bab4ce8
·
verified ·
1 Parent(s): b5b49df

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -175,7 +175,10 @@ NOTE: For eigenvalue problems, use 'lam = Symbol('lam')' instead of importing fr
175
  - For piecewise or discontinuous functions, compute limits at all points of interest, including boundaries.
176
 
177
  - **Important Note**: Always test limits symbolically first. If SymPy produces unexpected results, simplify the expression or expand it (e.g., using `series`) before re-evaluating the limit.
178
-
 
 
 
179
  ```python
180
  from sympy import Matrix, symbols, solve
181
 
 
175
  - For piecewise or discontinuous functions, compute limits at all points of interest, including boundaries.
176
 
177
  - **Important Note**: Always test limits symbolically first. If SymPy produces unexpected results, simplify the expression or expand it (e.g., using `series`) before re-evaluating the limit.
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
184