joshuarauh commited on
Commit
6ec21c9
·
verified ·
1 Parent(s): 5e14f9b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -6
app.py CHANGED
@@ -82,10 +82,7 @@ When writing SymPy code to verify solutions:
82
  from sympy import Matrix, symbols, solve
83
 
84
  def analyze_system(A, b):
85
- """
86
- Analyze a system Ax = b using row reduction.
87
- Returns whether solution exists and if it's unique.
88
- """
89
  # Augmented matrix [A|b]
90
  aug = Matrix(A.row_join(b))
91
 
@@ -143,8 +140,6 @@ if result == "infinite":
143
 
144
  Always use this template when working with systems of equations to handle potential linear dependence correctly. """
145
 
146
-
147
-
148
  def load_proof_repository():
149
  """Load the proof repository from the repository file"""
150
  repo_path = Path("Lebl-theorems-all.json")
 
82
  from sympy import Matrix, symbols, solve
83
 
84
  def analyze_system(A, b):
85
+ 'Analyze a system Ax = b using row reduction. Returns whether solution exists and if it's unique.'
 
 
 
86
  # Augmented matrix [A|b]
87
  aug = Matrix(A.row_join(b))
88
 
 
140
 
141
  Always use this template when working with systems of equations to handle potential linear dependence correctly. """
142
 
 
 
143
  def load_proof_repository():
144
  """Load the proof repository from the repository file"""
145
  repo_path = Path("Lebl-theorems-all.json")