joshuarauh commited on
Commit
9f8e253
·
verified ·
1 Parent(s): 2ccf4f7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -6
app.py CHANGED
@@ -625,15 +625,20 @@ Please provide:
625
  The complete revised solution if you provide one must show ALL steps and be fully self-contained.
626
 
627
  Important: When writing mathematical expressions, use these formatting rules re LaTeX
628
- - Use $ for inline math
629
- - Use $$ on separate lines for equations
 
 
 
 
 
 
 
 
630
  - Put each solution step on its own line in $$ $$
631
  - DO NOT use backslah backslash begin{{aligned}} or similar environments
632
- - When writing questions involving currency expressed in dollars NEVER use the `$` symbol as it will be interepreted as math mode. ALWAYS write out the word dollars.
633
  * Example: 1000 dollars
634
- - Never use parentheses or brackets around expressions, just use the dollar signs
635
- * WRONG: The student notes that ( x = 0 ) and ( y = 0 )
636
- * Use the LaTeX dollar sign notation instead of ( ) or [ ]
637
  - make sure there are never unmatched dollar signs as that will ruin the LaTeX rendering
638
 
639
  Format your response with clear headers and bullet points."""
 
625
  The complete revised solution if you provide one must show ALL steps and be fully self-contained.
626
 
627
  Important: When writing mathematical expressions, use these formatting rules re LaTeX
628
+ - Use $ around inline math expressions. NEVER use parentheses or brackets
629
+ * CORRECT: The solution shows that $x = 5$ and $y = 3$
630
+ * WRONG: The solution shows that (x = 5) and (y = 3)
631
+ - Display equations get their own lines with $$ $$:
632
+ * CORRECT:
633
+ $$f(x) = x^2 + 2x + 1$$
634
+ $$g(x) = 2x + 3$$
635
+ * WRONG:
636
+ (f(x) = x^2 + 2x + 1)
637
+ [g(x) = 2x + 3]
638
  - Put each solution step on its own line in $$ $$
639
  - DO NOT use backslah backslash begin{{aligned}} or similar environments
640
+ - For currency amounts in dollars, write out the word dollars instead of using $
641
  * Example: 1000 dollars
 
 
 
642
  - make sure there are never unmatched dollar signs as that will ruin the LaTeX rendering
643
 
644
  Format your response with clear headers and bullet points."""