joshuarauh commited on
Commit
b56d8f3
·
verified ·
1 Parent(s): c8ed281

Update app.py

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