Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -30,6 +30,8 @@ request_history = deque(maxlen=1000)
|
|
30 |
SYMPY_GUIDELINES = """
|
31 |
When writing SymPy code to verify solutions:
|
32 |
|
|
|
|
|
33 |
1. Variable Declaration and Expressions:
|
34 |
- ALWAYS create symbolic expressions instead of literal numbers when working with mathematical operations:
|
35 |
```python
|
|
|
30 |
SYMPY_GUIDELINES = """
|
31 |
When writing SymPy code to verify solutions:
|
32 |
|
33 |
+
NOTE: For eigenvalue problems, use 'lam = Symbol('lam')' instead of importing from sympy.abc
|
34 |
+
|
35 |
1. Variable Declaration and Expressions:
|
36 |
- ALWAYS create symbolic expressions instead of literal numbers when working with mathematical operations:
|
37 |
```python
|