File size: 1,155 Bytes
86f3c36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: apache-2.0
---
# Algebra Equations Dataset

## Overview

This dataset contains automatically generated algebra problems with step-by-step solutions.
It is intended for training or testing models that solve equations and show intermediate reasoning steps.

The dataset is stored in **JSON Lines (`.jsonl`) format**, where each line represents one problem and its solution.

---

## File

```
equations_dataset.jsonl
```

Each line contains:

```
{
  "input": "<problem>",
  "output": "<step-by-step solution>"
}
```

---

## Equation Types

The dataset contains randomly generated:

* Linear equations
* Quadratic equations
* Cubic equations
* Systems of two linear equations

---

## Example

```
{
  "input": "Solve 3x - 6 = 0",
  "output": "3x - 6 = 0
3x = 6
x = 6 / 3
x = 2"
}
```

---

## Loading the Dataset

Example Python code:

```python
import json

with open("equations_dataset.jsonl") as f:
    for line in f:
        data = json.loads(line)
        print(data["input"])
        print(data["output"])
```

---

## Notes

* Problems are randomly generated.
* Solutions include clear algebraic steps.
* Fractional values may appear.