File size: 2,127 Bytes
aac5be7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
---
license: cc-by-4.0
task_categories:
- text-generation
language:
- zh
size_categories:
- n<1K
tags:
  - chinese
  - math-word-problems
  - true-false
  - mathematical-reasoning
modalities:
  - text
libraries: 
  - Datasets
---

## Introduction
MathToF is a Chinese mathematical reasoning dataset introduced in the paper **Teaching-Inspired Integrated Prompting Framework: A Novel Approach for Enhancing Reasoning in Large Language Models.** 

It contains **1,000 Chinese true-or-false math problems**, each annotated with a **binary label (True/False)** and a **detailed rationale**.

## Dataset Structure

### Data Fields
- `qtype`: question type. In MathToF, this is typically `"JUDGE"`.
- `quest_stem`: the main question content.
  - `quest_stem.text`: the problem statement in Chinese.
- `quest_ref`: reference answers and explanations.
  - `quest_ref.texts`: the ground-truth label(s), typically `"True"` or `"False"`.
  - `quest_ref.analyses`: the explanation(s), stored as a list.

### Example

```json
{
    "qtype": "JUDGE",
    "quest_stem": {
        "text": "三位数减三位数差一定是三位数。"
    },
    "quest_ref": {
        "texts": [
            "False"
        ],
        "analyses": [
            "如两个三位数分别为:150,100。则150-100=50,其差50是两位数,故题干描述错误。"
        ]
    }
}
```

### Dataset Statistics

According to the paper, the question-type distribution of MathToF is:

- Arithmetic: 675
- Algebra: 61
- Geometry: 197
- Statistics: 37
- Reasoning: 13
- Others: 17

Total: 1,000 questions.

## Citation

If you use this dataset, please cite the following paper:
```
@inproceedings{tan-etal-2025-teaching,
  title = {Teaching-Inspired Integrated Prompting Framework: A Novel Approach for Enhancing Reasoning in Large Language Models},
  author = {Tan, Wenting and Chen, Dongxiao and Xue, Jieting and Wang, Zihao and Chen, Taijie},
  booktitle = {Proceedings of the 31st International Conference on Computational Linguistics: Industry Track},
  pages = {827--839},
  year = {2025},
  publisher = {Association for Computational Linguistics}
}
```