Spaces:
Sleeping
Sleeping
Update prompts/main_prompt.py
Browse files- prompts/main_prompt.py +6 -9
prompts/main_prompt.py
CHANGED
@@ -8,10 +8,7 @@ Your task is to explore three different problem types foundational to proportion
|
|
8 |
2️⃣ **Numerical Comparison Problems**
|
9 |
3️⃣ **Qualitative Reasoning Problems**
|
10 |
You will solve and compare these problems, **identify their characteristics**, and finally **create your own problems** for each type.
|
11 |
-
|
12 |
-
💡 **You will be encouraged to explain your reasoning.**
|
13 |
-
💡 **If you’re unsure, I will provide hints rather than giving direct answers.**
|
14 |
-
🚀 **Let’s get started! Solve each problem and compare them by analyzing your solution process.**"
|
15 |
|
16 |
---
|
17 |
### **🚀 Solve the Following Three Problems**
|
@@ -40,15 +37,15 @@ PROBLEM_SOLUTIONS_PROMPT = """
|
|
40 |
#### **Problem 1: Missing Value Problem**
|
41 |
We set up the proportion:
|
42 |
$$
|
43 |
-
|
44 |
$$
|
45 |
Cross-multiply:
|
46 |
$$
|
47 |
-
2x = 24
|
48 |
$$
|
49 |
Solve for \( x \):
|
50 |
$$
|
51 |
-
x =
|
52 |
$$
|
53 |
**Conclusion:** *24 cm represents **300 miles**.*
|
54 |
|
@@ -56,10 +53,10 @@ $$
|
|
56 |
#### **Problem 2: Numerical Comparison Problem**
|
57 |
**Calculate unit prices:**
|
58 |
$$
|
59 |
-
|
60 |
$$
|
61 |
$$
|
62 |
-
|
63 |
$$
|
64 |
**Comparison:**
|
65 |
- Ali: **\$0.35** per pencil
|
|
|
8 |
2️⃣ **Numerical Comparison Problems**
|
9 |
3️⃣ **Qualitative Reasoning Problems**
|
10 |
You will solve and compare these problems, **identify their characteristics**, and finally **create your own problems** for each type.
|
11 |
+
🚀 **Let's begin! Solve each problem and analyze your solution process.**"
|
|
|
|
|
|
|
12 |
|
13 |
---
|
14 |
### **🚀 Solve the Following Three Problems**
|
|
|
37 |
#### **Problem 1: Missing Value Problem**
|
38 |
We set up the proportion:
|
39 |
$$
|
40 |
+
\frac{2 \text{ cm}}{25 \text{ miles}} = \frac{24 \text{ cm}}{x \text{ miles}}
|
41 |
$$
|
42 |
Cross-multiply:
|
43 |
$$
|
44 |
+
2x = 24 \times 25
|
45 |
$$
|
46 |
Solve for \( x \):
|
47 |
$$
|
48 |
+
x = \frac{600}{2} = 300
|
49 |
$$
|
50 |
**Conclusion:** *24 cm represents **300 miles**.*
|
51 |
|
|
|
53 |
#### **Problem 2: Numerical Comparison Problem**
|
54 |
**Calculate unit prices:**
|
55 |
$$
|
56 |
+
\text{Cost per pencil for Ali} = \frac{\$3.50}{10 \text{ pencils}} = \$0.35 \text{ per pencil}
|
57 |
$$
|
58 |
$$
|
59 |
+
\text{Cost per pencil for Ahmet} = \frac{\$1.80}{5 \text{ pencils}} = \$0.36 \text{ per pencil}
|
60 |
$$
|
61 |
**Comparison:**
|
62 |
- Ali: **\$0.35** per pencil
|