Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,127 @@
|
|
1 |
-
---
|
2 |
-
license: cc-by-nc-4.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-nc-4.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
task_categories:
|
6 |
+
- question-answering
|
7 |
+
- text-generation
|
8 |
+
tags:
|
9 |
+
- mathematics
|
10 |
+
- education
|
11 |
+
- word-problems
|
12 |
+
pretty_name: Math Problem Generator Dataset
|
13 |
+
size_categories:
|
14 |
+
- 100K<n<1M
|
15 |
+
---
|
16 |
+
|
17 |
+
# Dataset Card for Math Problem Generator
|
18 |
+
|
19 |
+
|
20 |
+
### Dataset Summary
|
21 |
+
|
22 |
+
This dataset contains 100,000 procedurally generated math word problems covering various mathematical concepts and difficulty levels. The problems were generated using a Java program that creates contextual word problems with solutions and explanations.
|
23 |
+
|
24 |
+
### Supported Tasks and Leaderboards
|
25 |
+
|
26 |
+
This dataset can be used for:
|
27 |
+
- Math word problem solving
|
28 |
+
- Educational AI systems
|
29 |
+
- Math question generation
|
30 |
+
- Automatic explanation generation
|
31 |
+
|
32 |
+
### Languages
|
33 |
+
|
34 |
+
The dataset is in English.
|
35 |
+
|
36 |
+
## Dataset Structure
|
37 |
+
|
38 |
+
### Data Instances
|
39 |
+
|
40 |
+
Each instance contains:
|
41 |
+
- A unique problem ID
|
42 |
+
- Problem category/type
|
43 |
+
- The word problem text
|
44 |
+
- The correct answer
|
45 |
+
- A step-by-step explanation
|
46 |
+
|
47 |
+
Example:
|
48 |
+
Problem ID: abc12345
|
49 |
+
Category: fractions addition
|
50 |
+
Alice has 3/4 of a pizza and finds another 2/5 of the same pizza. How much pizza does Alice have in total?
|
51 |
+
Answer: 23/20
|
52 |
+
Explanation: To add fractions, find a common denominator (20). Convert 3/4 to 15/20 and 2/5 to 8/20. Add the numerators: 15 + 8 = 23. The answer is 23/20.
|
53 |
+
|
54 |
+
text
|
55 |
+
|
56 |
+
### Data Fields
|
57 |
+
|
58 |
+
- `id`: Unique problem identifier
|
59 |
+
- `operation`: Math category (addition, fractions, algebra, etc.)
|
60 |
+
- `problem_text`: The word problem
|
61 |
+
- `answer`: The correct answer (format varies by problem type)
|
62 |
+
- `explanation`: Step-by-step solution
|
63 |
+
|
64 |
+
### Data Splits
|
65 |
+
|
66 |
+
The dataset comes as a single file with all 100,000 problems.
|
67 |
+
|
68 |
+
## Dataset Creation
|
69 |
+
|
70 |
+
### Curation Rationale
|
71 |
+
|
72 |
+
This dataset was created to provide a large, diverse set of math word problems for training educational AI systems. The problems cover fundamental math concepts with varying contexts to improve generalization.
|
73 |
+
|
74 |
+
### Source Data
|
75 |
+
|
76 |
+
The problems are procedurally generated using predefined templates and randomization of:
|
77 |
+
- Mathematical operations
|
78 |
+
- Subjects/objects
|
79 |
+
- Character names
|
80 |
+
- Real-world contexts
|
81 |
+
|
82 |
+
### Annotations
|
83 |
+
|
84 |
+
Each problem includes:
|
85 |
+
- Automatically generated correct answer
|
86 |
+
- Step-by-step explanation
|
87 |
+
- Problem categorization
|
88 |
+
|
89 |
+
### Personal and Sensitive Information
|
90 |
+
|
91 |
+
The dataset uses common first names and generic objects, containing no real personal information.
|
92 |
+
|
93 |
+
## Considerations for Using the Data
|
94 |
+
|
95 |
+
### Social Impact of Dataset
|
96 |
+
|
97 |
+
This dataset can help:
|
98 |
+
- Develop educational tools for math learning
|
99 |
+
- Create AI tutors for students
|
100 |
+
- Generate practice problems at scale
|
101 |
+
|
102 |
+
### Discussion of Biases
|
103 |
+
|
104 |
+
Potential biases include:
|
105 |
+
- Western-centric names and contexts
|
106 |
+
- Limited to elementary/middle school math levels
|
107 |
+
- English language only
|
108 |
+
|
109 |
+
### Other Known Limitations
|
110 |
+
|
111 |
+
- Problems are generated rather than human-written
|
112 |
+
- Limited creative variation in problem structures
|
113 |
+
- Explanations follow standardized formats
|
114 |
+
|
115 |
+
## Additional Information
|
116 |
+
|
117 |
+
### Dataset Curators
|
118 |
+
|
119 |
+
C.J. Jones
|
120 |
+
|
121 |
+
### Licensing Information
|
122 |
+
|
123 |
+
cc-by-nc-4.0
|
124 |
+
|
125 |
+
### Citation Information
|
126 |
+
|
127 |
+
If you use this dataset, please cite it as: Part of the C.J. Jones synthetic data collection. With link back to this page.
|