File size: 2,740 Bytes
ea345a9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | license: apache-2.0
---
# Dataset Card for Mathematics Dataset (Grade 1-10) π
## Dataset Details
### Dataset Description π
This dataset contains a variety of math problems designed for students in grades 1 to 10. It covers different mathematical concepts including addition, subtraction, multiplication, division, fractions, word problems, geometry, mass, capacity, and data handling. The dataset aims to promote critical thinking and engagement by incorporating real-life scenarios, varying question types, and different cognitive dimensions: Knowledge, Comprehension, Application, Analysis, Synthesis, and Evaluation. It also includes a mix of word problems and numerical calculations to ensure a comprehensive practice.
- **Curated by:** Nexora Learn π
- **Funded by:** Nexora Learn Foundation π°
- **Shared by:** Education | 2.0 π«
- **Language(s) (NLP):** English π¬π§
- **License:** Apache-2.0 π
### Dataset Sources π
- **Repository:** [Nexora Learn Datasets](https://huggingface.co/datasets/MathDataset)
- **Paper:** [Coming Soon]
- **Demo:** [Coming Soon]
## Uses
### Direct Use β
This dataset is suitable for:
- **Training AI models** that assist students in solving math problems at different grade levels (Grades 1-10).
- **Generating interactive quizzes** and **exercises** for personalized learning.
- **Assessing student performance** on mathematical concepts through real-life word problems.
- **Building math tutoring apps** that adapt to learners' cognitive levels.
### Out-of-Scope Use β
This dataset is not intended for:
- Models that process sensitive personal data (e.g., addresses, health data).
- Applications that do not relate to **education or academic purposes**.
- Systems that aim to replace human educators or tutors entirely.
## Dataset Structure π
The dataset consists of multiple math problems, each entry representing a unique question. Each entry contains:
- **Topic** π: The math concept being tested (e.g., subtraction, multiplication, fractions).
- **Grade Level** π«: The grade level appropriate for the problem (e.g., Grade 1, Grade 3, Grade 10).
- **Problem Statement** π£οΈ: The math problem presented to the student.
- **Answer Choices** (optional) π’: Multiple-choice answers, if applicable.
- **Answer** β
: The correct solution to the problem.
- **Cognitive Domain** π§ : The mental skill level required for solving the problem (e.g., Knowledge, Application, Analysis).
### Sample dataset entry:
```json
{
"topic": "subtraction",
"grade": 1,
"problem": "Kamau has 15 apples. He gives 7 to his friend. How many apples does he have left?",
"choices": ["7", "8", "9", "10"],
"answer": "8",
"cognitive_domain": "Application"
}
|