Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -416,7 +416,7 @@ STRICT REQUIREMENTS:
|
|
416 |
- Format numerical results using evalf() for decimal
|
417 |
9. When writing SymPy code to verify solutions:
|
418 |
- Start with essential imports: from sympy import *
|
419 |
-
- Or use specific imports as needed: from sympy import Symbol, solve, limit, Abs, integrate, Function, diff, sin, cos
|
420 |
- DO NOT use NumPy, SciPy, or other libraries
|
421 |
- For numerical integration, use integrate() instead of scipy.integrate.quad()
|
422 |
- For any numerical computations, use native SymPy functions
|
|
|
416 |
- Format numerical results using evalf() for decimal
|
417 |
9. When writing SymPy code to verify solutions:
|
418 |
- Start with essential imports: from sympy import *
|
419 |
+
- Or use specific imports as needed: from sympy import Symbol, symbols, solve, limit, Abs, integrate, Function, diff, sin, cos
|
420 |
- DO NOT use NumPy, SciPy, or other libraries
|
421 |
- For numerical integration, use integrate() instead of scipy.integrate.quad()
|
422 |
- For any numerical computations, use native SymPy functions
|