j-js commited on
Commit
d11362c
·
verified ·
1 Parent(s): 042c6a4

Create question_support_bank.jsonl

Browse files
Files changed (1) hide show
  1. data/question_support_bank.jsonl +28 -0
data/question_support_bank.jsonl ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "question_id": "TEST_PERCENT_001",
3
+ "topic": "percent",
4
+ "subtopic": "sequential_change",
5
+
6
+ "first_step": "Let the original value be 100 to simplify percentage calculations.",
7
+
8
+ "hints": [
9
+ "Focus on the fact that the second percentage is applied after the first change.",
10
+ "After a 20% decrease, the value becomes 80% of the original.",
11
+ "Now apply the increase to the new value, not the original."
12
+ ],
13
+
14
+ "walkthrough_steps": [
15
+ "Start by letting the original value be 100.",
16
+ "Apply the first percentage change (decrease).",
17
+ "Take that result and apply the second percentage change.",
18
+ "Compare the final value to the original."
19
+ ],
20
+
21
+ "method_explanation": [
22
+ "Sequential percentage changes must be applied step by step.",
23
+ "Do not combine percentages directly.",
24
+ "Always apply each percentage to the current value, not the original."
25
+ ],
26
+
27
+ "common_trap": "Adding or subtracting the percentages directly instead of applying them sequentially."
28
+ }