File size: 1,872 Bytes
56ce63d
 
 
 
 
 
 
 
 
fcb9cbb
 
 
 
56ce63d
 
 
 
 
c2ba62b
f82643d
 
 
 
 
56ce63d
 
 
c2ba62b
 
 
 
 
 
ba81e0d
 
 
 
c2ba62b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56ce63d
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
---
dataset_info:
  features:
  - name: formula
    dtype: string
  - name: result
    dtype: int64
  splits:
  - name: train
    num_bytes: 31352169
    num_examples: 1000000
  download_size: 22114377
  dataset_size: 31352169
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
license: apache-2.0
tags:
- MATH
pretty_name: MATH 1st Grade
size_categories:
- 1M<n<10M
---
# Dataset Card for "MATH_1GRADE"

# 1st Grade Math Problems Dataset

This dataset, available on Hugging Face, offers a unique collection of math problems tailored for first-grade students. The problems have been synthetically generated using Python scripts and are designed to challenge and enhance the mathematical skills of young learners in an engaging and accessible way. This README provides an overview of the dataset, including its structure, contents, and how to use it for educational purposes or machine learning tasks.

## Dataset Description

- **Domain** Education/Mathematics
- **Grade Level** 1st Grade
- **Contents** The dataset consists of simple arithmetic problems suitable for first graders, involving basic operations such as addition, subtraction, and understanding of negative numbers.
- **Data Format** CSV/JSON

## Data Structure

The dataset is structured as follows:

- `formula`: A string representing the math problem. It includes numbers and operations (addition, subtraction) formatted as text. For example, "140 + 515 - -441 - -34 + 155".
- `result`: The answer to the math problem, represented as a floating-point number for operations resulting in non-integer values, and an integer for whole numbers.

### Example Entry

```json
{
  "formula": "940 + 515 - -441 - -34 + 155",
  "result": 2085
}
```

[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)