id
int64 1
500
| question
stringlengths 92
120
| expression
stringlengths 29
57
| think
listlengths 5
10
| answer
int64 0
755k
| settings
stringclasses 4
values |
|---|---|---|---|---|---|
101
|
Simplify the following expression ((7 * (5 * 0 + 6)) + (6 + 1)) where + has priority over *.
|
((7 * (5 * 0 + 6)) + (6 + 1))
|
[
"0 + 6 = 6",
"5 * 6 = 30",
"7 * 30 = 210",
"6 + 1 = 7",
"210 + 7 = 217"
] | 217
|
dp_ 2 -2
|
102
|
Simplify the following expression ((6 + 1) * ((5 + 2 * 2 * 2) * 0)) where + has priority over *.
|
((6 + 1) * ((5 + 2 * 2 * 2) * 0))
|
[
"6 + 1 = 7",
"5 + 2 = 7",
"7 * 2 = 14",
"14 * 2 = 28",
"28 * 0 = 0",
"7 * 0 = 0"
] | 0
|
dp_ 2 -2
|
103
|
Simplify the following expression ((9 * (8 * 9 + 8 * 3)) * (0 + 4)) where + has priority over *.
|
((9 * (8 * 9 + 8 * 3)) * (0 + 4))
|
[
"9 + 8 = 17",
"8 * 17 = 136",
"136 * 3 = 408",
"9 * 408 = 3672",
"0 + 4 = 4",
"3672 * 4 = 14688"
] | 14,688
|
dp_ 2 -2
|
104
|
Simplify the following expression (((7 + 9 + 8 + 4) + 3) * (9 * 7)) where + has priority over *.
|
(((7 + 9 + 8 + 4) + 3) * (9 * 7))
|
[
"7 + 9 = 16",
"16 + 8 = 24",
"24 + 4 = 28",
"28 + 3 = 31",
"9 * 7 = 63",
"31 * 63 = 1953"
] | 1,953
|
dp_ 2 -2
|
105
|
Simplify the following expression ((9 + (8 + 5 * 1 * 0)) * (9 + 6)) where + has priority over *.
|
((9 + (8 + 5 * 1 * 0)) * (9 + 6))
|
[
"8 + 5 = 13",
"13 * 1 = 13",
"13 * 0 = 0",
"9 + 0 = 9",
"9 + 6 = 15",
"9 * 15 = 135"
] | 135
|
dp_ 2 -2
|
106
|
Simplify the following expression ((4 * (9 + 5 * 2 * 2)) * (1 * 5)) where + has priority over *.
|
((4 * (9 + 5 * 2 * 2)) * (1 * 5))
|
[
"9 + 5 = 14",
"14 * 2 = 28",
"28 * 2 = 56",
"4 * 56 = 224",
"1 * 5 = 5",
"224 * 5 = 1120"
] | 1,120
|
dp_ 2 -2
|
107
|
Simplify the following expression ((2 * 2) * ((0 * 3 * 0 * 8) + 0)) where + has priority over *.
|
((2 * 2) * ((0 * 3 * 0 * 8) + 0))
|
[
"2 * 2 = 4",
"0 * 3 = 0",
"0 * 0 = 0",
"0 * 8 = 0",
"0 + 0 = 0",
"4 * 0 = 0"
] | 0
|
dp_ 2 -2
|
108
|
Simplify the following expression ((0 * 3) * ((1 * 5 * 7) * 0)) where + has priority over *.
|
((0 * 3) * ((1 * 5 * 7) * 0))
|
[
"0 * 3 = 0",
"1 * 5 = 5",
"5 * 7 = 35",
"35 * 0 = 0",
"0 * 0 = 0"
] | 0
|
dp_ 2 -2
|
109
|
Simplify the following expression ((2 * 7) * ((6 + 1 * 6 * 1) * 8)) where + has priority over *.
|
((2 * 7) * ((6 + 1 * 6 * 1) * 8))
|
[
"2 * 7 = 14",
"6 + 1 = 7",
"7 * 6 = 42",
"42 * 1 = 42",
"42 * 8 = 336",
"14 * 336 = 4704"
] | 4,704
|
dp_ 2 -2
|
110
|
Simplify the following expression (((5 + 7 * 9) * 4) + (9 * 6)) where + has priority over *.
|
(((5 + 7 * 9) * 4) + (9 * 6))
|
[
"5 + 7 = 12",
"12 * 9 = 108",
"108 * 4 = 432",
"9 * 6 = 54",
"432 + 54 = 486"
] | 486
|
dp_ 2 -2
|
111
|
Simplify the following expression ((0 * (2 + 9 + 7 + 3)) * (5 * 8)) where + has priority over *.
|
((0 * (2 + 9 + 7 + 3)) * (5 * 8))
|
[
"2 + 9 = 11",
"11 + 7 = 18",
"18 + 3 = 21",
"0 * 21 = 0",
"5 * 8 = 40",
"0 * 40 = 0"
] | 0
|
dp_ 2 -2
|
112
|
Simplify the following expression ((6 * 9) * (9 + (5 + 7 + 8))) where + has priority over *.
|
((6 * 9) * (9 + (5 + 7 + 8)))
|
[
"6 * 9 = 54",
"5 + 7 = 12",
"12 + 8 = 20",
"9 + 20 = 29",
"54 * 29 = 1566"
] | 1,566
|
dp_ 2 -2
|
113
|
Simplify the following expression ((5 * (8 + 6 * 4)) * (1 + 0)) where + has priority over *.
|
((5 * (8 + 6 * 4)) * (1 + 0))
|
[
"8 + 6 = 14",
"14 * 4 = 56",
"5 * 56 = 280",
"1 + 0 = 1",
"280 * 1 = 280"
] | 280
|
dp_ 2 -2
|
114
|
Simplify the following expression ((9 + (7 + 2 * 7 * 1)) * (3 * 1)) where + has priority over *.
|
((9 + (7 + 2 * 7 * 1)) * (3 * 1))
|
[
"7 + 2 = 9",
"9 * 7 = 63",
"63 * 1 = 63",
"9 + 63 = 72",
"3 * 1 = 3",
"72 * 3 = 216"
] | 216
|
dp_ 2 -2
|
115
|
Simplify the following expression (((2 + 3 * 7 * 7) * 2) * (8 * 3)) where + has priority over *.
|
(((2 + 3 * 7 * 7) * 2) * (8 * 3))
|
[
"2 + 3 = 5",
"5 * 7 = 35",
"35 * 7 = 245",
"245 * 2 = 490",
"8 * 3 = 24",
"490 * 24 = 11760"
] | 11,760
|
dp_ 2 -2
|
116
|
Simplify the following expression ((1 + 4) + (7 * (9 + 1 * 1))) where + has priority over *.
|
((1 + 4) + (7 * (9 + 1 * 1)))
|
[
"1 + 4 = 5",
"9 + 1 = 10",
"10 * 1 = 10",
"7 * 10 = 70",
"5 + 70 = 75"
] | 75
|
dp_ 2 -2
|
117
|
Simplify the following expression ((8 * (6 + 8 + 0 * 2)) * (8 + 9)) where + has priority over *.
|
((8 * (6 + 8 + 0 * 2)) * (8 + 9))
|
[
"6 + 8 = 14",
"14 + 0 = 14",
"14 * 2 = 28",
"8 * 28 = 224",
"8 + 9 = 17",
"224 * 17 = 3808"
] | 3,808
|
dp_ 2 -2
|
118
|
Simplify the following expression ((3 * (2 + 4 + 9)) + (1 * 4)) where + has priority over *.
|
((3 * (2 + 4 + 9)) + (1 * 4))
|
[
"2 + 4 = 6",
"6 + 9 = 15",
"3 * 15 = 45",
"1 * 4 = 4",
"45 + 4 = 49"
] | 49
|
dp_ 2 -2
|
119
|
Simplify the following expression (((0 + 9 * 4 + 7) + 9) + (9 * 0)) where + has priority over *.
|
(((0 + 9 * 4 + 7) + 9) + (9 * 0))
|
[
"0 + 9 = 9",
"4 + 7 = 11",
"9 * 11 = 99",
"99 + 9 = 108",
"9 * 0 = 0",
"108 + 0 = 108"
] | 108
|
dp_ 2 -2
|
120
|
Simplify the following expression (((2 * 7 * 6 + 5) * 3) * (4 * 7)) where + has priority over *.
|
(((2 * 7 * 6 + 5) * 3) * (4 * 7))
|
[
"2 * 7 = 14",
"6 + 5 = 11",
"14 * 11 = 154",
"154 * 3 = 462",
"4 * 7 = 28",
"462 * 28 = 12936"
] | 12,936
|
dp_ 2 -2
|
121
|
Simplify the following expression (((3 + 7 * 7) * 5) + (2 * 5)) where + has priority over *.
|
(((3 + 7 * 7) * 5) + (2 * 5))
|
[
"3 + 7 = 10",
"10 * 7 = 70",
"70 * 5 = 350",
"2 * 5 = 10",
"350 + 10 = 360"
] | 360
|
dp_ 2 -2
|
122
|
Simplify the following expression ((1 + 0) + (6 * (2 * 5 + 9 + 7))) where + has priority over *.
|
((1 + 0) + (6 * (2 * 5 + 9 + 7)))
|
[
"1 + 0 = 1",
"5 + 9 = 14",
"14 + 7 = 21",
"2 * 21 = 42",
"6 * 42 = 252",
"1 + 252 = 253"
] | 253
|
dp_ 2 -2
|
123
|
Simplify the following expression ((4 * 7) * (1 + (3 + 9 + 5 * 7))) where + has priority over *.
|
((4 * 7) * (1 + (3 + 9 + 5 * 7)))
|
[
"4 * 7 = 28",
"3 + 9 = 12",
"12 + 5 = 17",
"17 * 7 = 119",
"1 + 119 = 120",
"28 * 120 = 3360"
] | 3,360
|
dp_ 2 -2
|
124
|
Simplify the following expression ((8 * 0) * ((6 + 5 * 0) + 2)) where + has priority over *.
|
((8 * 0) * ((6 + 5 * 0) + 2))
|
[
"8 * 0 = 0",
"6 + 5 = 11",
"11 * 0 = 0",
"0 + 2 = 2",
"0 * 2 = 0"
] | 0
|
dp_ 2 -2
|
125
|
Simplify the following expression (((9 + 9 + 1) * 4) + (6 + 8)) where + has priority over *.
|
(((9 + 9 + 1) * 4) + (6 + 8))
|
[
"9 + 9 = 18",
"18 + 1 = 19",
"19 * 4 = 76",
"6 + 8 = 14",
"76 + 14 = 90"
] | 90
|
dp_ 2 -2
|
126
|
Simplify the following expression ((8 + (2 * 6 + 5 + 5)) + (3 * 7)) where + has priority over *.
|
((8 + (2 * 6 + 5 + 5)) + (3 * 7))
|
[
"6 + 5 = 11",
"11 + 5 = 16",
"2 * 16 = 32",
"8 + 32 = 40",
"3 * 7 = 21",
"40 + 21 = 61"
] | 61
|
dp_ 2 -3
|
127
|
Simplify the following expression ((6 + 1) + ((7 * 8 + 1 * 9) * 9)) where + has priority over *.
|
((6 + 1) + ((7 * 8 + 1 * 9) * 9))
|
[
"6 + 1 = 7",
"8 + 1 = 9",
"7 * 9 = 63",
"63 * 9 = 567",
"567 * 9 = 5103",
"7 + 5103 = 5110"
] | 5,110
|
dp_ 2 -3
|
128
|
Simplify the following expression ((1 + (6 * 4 + 7 * 5)) * (4 + 1)) where + has priority over *.
|
((1 + (6 * 4 + 7 * 5)) * (4 + 1))
|
[
"4 + 7 = 11",
"6 * 11 = 66",
"66 * 5 = 330",
"1 + 330 = 331",
"4 + 1 = 5",
"331 * 5 = 1655"
] | 1,655
|
dp_ 2 -3
|
129
|
Simplify the following expression ((1 * (6 + 4 * 0)) + (8 + 3)) where + has priority over *.
|
((1 * (6 + 4 * 0)) + (8 + 3))
|
[
"6 + 4 = 10",
"10 * 0 = 0",
"1 * 0 = 0",
"8 + 3 = 11",
"0 + 11 = 11"
] | 11
|
dp_ 2 -3
|
130
|
Simplify the following expression ((5 + 6) + ((7 + 6 * 7 + 3) * 3)) where + has priority over *.
|
((5 + 6) + ((7 + 6 * 7 + 3) * 3))
|
[
"5 + 6 = 11",
"7 + 6 = 13",
"7 + 3 = 10",
"13 * 10 = 130",
"130 * 3 = 390",
"11 + 390 = 401"
] | 401
|
dp_ 2 -3
|
131
|
Simplify the following expression ((9 * 6) * (3 * (0 + 1 * 2 + 6))) where + has priority over *.
|
((9 * 6) * (3 * (0 + 1 * 2 + 6)))
|
[
"9 * 6 = 54",
"0 + 1 = 1",
"2 + 6 = 8",
"1 * 8 = 8",
"3 * 8 = 24",
"54 * 24 = 1296"
] | 1,296
|
dp_ 2 -3
|
132
|
Simplify the following expression ((8 * 4) * ((5 * 1 * 2) + 8)) where + has priority over *.
|
((8 * 4) * ((5 * 1 * 2) + 8))
|
[
"8 * 4 = 32",
"5 * 1 = 5",
"5 * 2 = 10",
"10 + 8 = 18",
"32 * 18 = 576"
] | 576
|
dp_ 2 -3
|
133
|
Simplify the following expression ((4 + (8 + 9 + 5)) * (8 + 1)) where + has priority over *.
|
((4 + (8 + 9 + 5)) * (8 + 1))
|
[
"8 + 9 = 17",
"17 + 5 = 22",
"4 + 22 = 26",
"8 + 1 = 9",
"26 * 9 = 234"
] | 234
|
dp_ 2 -3
|
134
|
Simplify the following expression ((9 + 5) + ((3 + 0 + 1) * 1)) where + has priority over *.
|
((9 + 5) + ((3 + 0 + 1) * 1))
|
[
"9 + 5 = 14",
"3 + 0 = 3",
"3 + 1 = 4",
"4 * 1 = 4",
"14 + 4 = 18"
] | 18
|
dp_ 2 -3
|
135
|
Simplify the following expression ((8 + (8 * 9 + 8)) * (7 + 8)) where + has priority over *.
|
((8 + (8 * 9 + 8)) * (7 + 8))
|
[
"9 + 8 = 17",
"8 * 17 = 136",
"8 + 136 = 144",
"7 + 8 = 15",
"144 * 15 = 2160"
] | 2,160
|
dp_ 2 -3
|
136
|
Simplify the following expression (((3 + 1 + 5 + 0) * 5) + (8 * 7)) where + has priority over *.
|
(((3 + 1 + 5 + 0) * 5) + (8 * 7))
|
[
"3 + 1 = 4",
"4 + 5 = 9",
"9 + 0 = 9",
"9 * 5 = 45",
"8 * 7 = 56",
"45 + 56 = 101"
] | 101
|
dp_ 2 -3
|
137
|
Simplify the following expression ((3 + (7 + 3 * 3)) + (5 + 1)) where + has priority over *.
|
((3 + (7 + 3 * 3)) + (5 + 1))
|
[
"7 + 3 = 10",
"10 * 3 = 30",
"3 + 30 = 33",
"5 + 1 = 6",
"33 + 6 = 39"
] | 39
|
dp_ 2 -3
|
138
|
Simplify the following expression ((3 * 1) * (6 + (7 + 0 + 6))) where + has priority over *.
|
((3 * 1) * (6 + (7 + 0 + 6)))
|
[
"3 * 1 = 3",
"7 + 0 = 7",
"7 + 6 = 13",
"6 + 13 = 19",
"3 * 19 = 57"
] | 57
|
dp_ 2 -3
|
139
|
Simplify the following expression (((2 * 4 + 1) + 3) * (8 + 7)) where + has priority over *.
|
(((2 * 4 + 1) + 3) * (8 + 7))
|
[
"4 + 1 = 5",
"2 * 5 = 10",
"10 + 3 = 13",
"8 + 7 = 15",
"13 * 15 = 195"
] | 195
|
dp_ 2 -3
|
140
|
Simplify the following expression ((0 + (7 + 7 * 0)) * (1 + 3)) where + has priority over *.
|
((0 + (7 + 7 * 0)) * (1 + 3))
|
[
"7 + 7 = 14",
"14 * 0 = 0",
"0 + 0 = 0",
"1 + 3 = 4",
"0 * 4 = 0"
] | 0
|
dp_ 2 -3
|
141
|
Simplify the following expression ((0 * 6) + (7 * (8 + 7 + 4))) where + has priority over *.
|
((0 * 6) + (7 * (8 + 7 + 4)))
|
[
"0 * 6 = 0",
"8 + 7 = 15",
"15 + 4 = 19",
"7 * 19 = 133",
"0 + 133 = 133"
] | 133
|
dp_ 2 -3
|
142
|
Simplify the following expression (((7 + 8 + 8) + 8) + (5 + 0)) where + has priority over *.
|
(((7 + 8 + 8) + 8) + (5 + 0))
|
[
"7 + 8 = 15",
"15 + 8 = 23",
"23 + 8 = 31",
"5 + 0 = 5",
"31 + 5 = 36"
] | 36
|
dp_ 2 -3
|
143
|
Simplify the following expression (((3 + 9 + 6) + 9) + (3 + 6)) where + has priority over *.
|
(((3 + 9 + 6) + 9) + (3 + 6))
|
[
"3 + 9 = 12",
"12 + 6 = 18",
"18 + 9 = 27",
"3 + 6 = 9",
"27 + 9 = 36"
] | 36
|
dp_ 2 -3
|
144
|
Simplify the following expression ((3 * (4 * 7 + 0)) * (4 + 6)) where + has priority over *.
|
((3 * (4 * 7 + 0)) * (4 + 6))
|
[
"7 + 0 = 7",
"4 * 7 = 28",
"3 * 28 = 84",
"4 + 6 = 10",
"84 * 10 = 840"
] | 840
|
dp_ 2 -3
|
145
|
Simplify the following expression ((1 + (1 * 3 * 2)) * (8 + 4)) where + has priority over *.
|
((1 + (1 * 3 * 2)) * (8 + 4))
|
[
"1 * 3 = 3",
"3 * 2 = 6",
"1 + 6 = 7",
"8 + 4 = 12",
"7 * 12 = 84"
] | 84
|
dp_ 2 -3
|
146
|
Simplify the following expression (((4 + 1 * 1 * 9) * 8) * (8 + 4)) where + has priority over *.
|
(((4 + 1 * 1 * 9) * 8) * (8 + 4))
|
[
"4 + 1 = 5",
"5 * 1 = 5",
"5 * 9 = 45",
"45 * 8 = 360",
"8 + 4 = 12",
"360 * 12 = 4320"
] | 4,320
|
dp_ 2 -3
|
147
|
Simplify the following expression (((6 + 4 + 5) * 4) + (4 * 0)) where + has priority over *.
|
(((6 + 4 + 5) * 4) + (4 * 0))
|
[
"6 + 4 = 10",
"10 + 5 = 15",
"15 * 4 = 60",
"4 * 0 = 0",
"60 + 0 = 60"
] | 60
|
dp_ 2 -3
|
148
|
Simplify the following expression (((2 * 8 + 0 * 2) * 7) + (8 * 0)) where + has priority over *.
|
(((2 * 8 + 0 * 2) * 7) + (8 * 0))
|
[
"8 + 0 = 8",
"2 * 8 = 16",
"16 * 2 = 32",
"32 * 7 = 224",
"8 * 0 = 0",
"224 + 0 = 224"
] | 224
|
dp_ 2 -3
|
149
|
Simplify the following expression (((8 + 6 + 2) * 0) + (3 * 3)) where + has priority over *.
|
(((8 + 6 + 2) * 0) + (3 * 3))
|
[
"8 + 6 = 14",
"14 + 2 = 16",
"16 * 0 = 0",
"3 * 3 = 9",
"0 + 9 = 9"
] | 9
|
dp_ 2 -3
|
150
|
Simplify the following expression ((0 * 2) + ((1 * 6 + 0 + 7) * 3)) where + has priority over *.
|
((0 * 2) + ((1 * 6 + 0 + 7) * 3))
|
[
"0 * 2 = 0",
"6 + 0 = 6",
"6 + 7 = 13",
"1 * 13 = 13",
"13 * 3 = 39",
"0 + 39 = 39"
] | 39
|
dp_ 2 -3
|
151
|
Simplify the following expression (((1 * 4 * 8) * 3) * (3 + 6)) where + has priority over *.
|
(((1 * 4 * 8) * 3) * (3 + 6))
|
[
"1 * 4 = 4",
"4 * 8 = 32",
"32 * 3 = 96",
"3 + 6 = 9",
"96 * 9 = 864"
] | 864
|
dp_ 2 -3
|
152
|
Simplify the following expression (((9 * 6 * 5 + 6) + 4) * (9 + 4)) where + has priority over *.
|
(((9 * 6 * 5 + 6) + 4) * (9 + 4))
|
[
"9 * 6 = 54",
"5 + 6 = 11",
"54 * 11 = 594",
"594 + 4 = 598",
"9 + 4 = 13",
"598 * 13 = 7774"
] | 7,774
|
dp_ 2 -3
|
153
|
Simplify the following expression ((0 * (6 * 1 * 1)) + (8 + 8)) where + has priority over *.
|
((0 * (6 * 1 * 1)) + (8 + 8))
|
[
"6 * 1 = 6",
"6 * 1 = 6",
"0 * 6 = 0",
"8 + 8 = 16",
"0 + 16 = 16"
] | 16
|
dp_ 2 -3
|
154
|
Simplify the following expression ((6 * (6 * 6 * 2 + 4)) * (4 * 8)) where + has priority over *.
|
((6 * (6 * 6 * 2 + 4)) * (4 * 8))
|
[
"6 * 6 = 36",
"2 + 4 = 6",
"36 * 6 = 216",
"6 * 216 = 1296",
"4 * 8 = 32",
"1296 * 32 = 41472"
] | 41,472
|
dp_ 2 -3
|
155
|
Simplify the following expression ((6 + 9) * ((3 * 8 + 1) * 7)) where + has priority over *.
|
((6 + 9) * ((3 * 8 + 1) * 7))
|
[
"6 + 9 = 15",
"8 + 1 = 9",
"3 * 9 = 27",
"27 * 7 = 189",
"15 * 189 = 2835"
] | 2,835
|
dp_ 2 -3
|
156
|
Simplify the following expression ((1 * (0 + 3 * 7 * 9)) * (3 * 3)) where + has priority over *.
|
((1 * (0 + 3 * 7 * 9)) * (3 * 3))
|
[
"0 + 3 = 3",
"3 * 7 = 21",
"21 * 9 = 189",
"1 * 189 = 189",
"3 * 3 = 9",
"189 * 9 = 1701"
] | 1,701
|
dp_ 2 -3
|
157
|
Simplify the following expression (((3 * 2 + 8) * 6) + (2 + 0)) where + has priority over *.
|
(((3 * 2 + 8) * 6) + (2 + 0))
|
[
"2 + 8 = 10",
"3 * 10 = 30",
"30 * 6 = 180",
"2 + 0 = 2",
"180 + 2 = 182"
] | 182
|
dp_ 2 -3
|
158
|
Simplify the following expression ((7 + 2) + ((9 * 8 * 2) * 8)) where + has priority over *.
|
((7 + 2) + ((9 * 8 * 2) * 8))
|
[
"7 + 2 = 9",
"9 * 8 = 72",
"72 * 2 = 144",
"144 * 8 = 1152",
"9 + 1152 = 1161"
] | 1,161
|
dp_ 2 -3
|
159
|
Simplify the following expression ((4 * (7 * 1 + 4)) * (8 * 7)) where + has priority over *.
|
((4 * (7 * 1 + 4)) * (8 * 7))
|
[
"1 + 4 = 5",
"7 * 5 = 35",
"4 * 35 = 140",
"8 * 7 = 56",
"140 * 56 = 7840"
] | 7,840
|
dp_ 2 -3
|
160
|
Simplify the following expression ((8 * 1) * (2 + (2 + 3 * 6))) where + has priority over *.
|
((8 * 1) * (2 + (2 + 3 * 6)))
|
[
"8 * 1 = 8",
"2 + 3 = 5",
"5 * 6 = 30",
"2 + 30 = 32",
"8 * 32 = 256"
] | 256
|
dp_ 2 -3
|
161
|
Simplify the following expression (((6 + 7 * 4) * 0) * (6 + 6)) where + has priority over *.
|
(((6 + 7 * 4) * 0) * (6 + 6))
|
[
"6 + 7 = 13",
"13 * 4 = 52",
"52 * 0 = 0",
"6 + 6 = 12",
"0 * 12 = 0"
] | 0
|
dp_ 2 -3
|
162
|
Simplify the following expression ((8 * 8) * ((7 * 0 * 6) + 3)) where + has priority over *.
|
((8 * 8) * ((7 * 0 * 6) + 3))
|
[
"8 * 8 = 64",
"7 * 0 = 0",
"0 * 6 = 0",
"0 + 3 = 3",
"64 * 3 = 192"
] | 192
|
dp_ 2 -3
|
163
|
Simplify the following expression (((6 + 2 + 7 * 6) * 9) + (6 + 9)) where + has priority over *.
|
(((6 + 2 + 7 * 6) * 9) + (6 + 9))
|
[
"6 + 2 = 8",
"8 + 7 = 15",
"15 * 6 = 90",
"90 * 9 = 810",
"6 + 9 = 15",
"810 + 15 = 825"
] | 825
|
dp_ 2 -3
|
164
|
Simplify the following expression ((7 + 5) * (6 * (1 + 7 + 5))) where + has priority over *.
|
((7 + 5) * (6 * (1 + 7 + 5)))
|
[
"7 + 5 = 12",
"1 + 7 = 8",
"8 + 5 = 13",
"6 * 13 = 78",
"12 * 78 = 936"
] | 936
|
dp_ 2 -3
|
165
|
Simplify the following expression (((2 + 7 * 1 * 5) + 0) + (3 + 0)) where + has priority over *.
|
(((2 + 7 * 1 * 5) + 0) + (3 + 0))
|
[
"2 + 7 = 9",
"9 * 1 = 9",
"9 * 5 = 45",
"45 + 0 = 45",
"3 + 0 = 3",
"45 + 3 = 48"
] | 48
|
dp_ 2 -3
|
166
|
Simplify the following expression ((2 + 4) + ((6 + 6 + 9) + 0)) where + has priority over *.
|
((2 + 4) + ((6 + 6 + 9) + 0))
|
[
"2 + 4 = 6",
"6 + 6 = 12",
"12 + 9 = 21",
"21 + 0 = 21",
"6 + 21 = 27"
] | 27
|
dp_ 2 -3
|
167
|
Simplify the following expression ((4 + (6 + 5 * 0)) + (9 + 0)) where + has priority over *.
|
((4 + (6 + 5 * 0)) + (9 + 0))
|
[
"6 + 5 = 11",
"11 * 0 = 0",
"4 + 0 = 4",
"9 + 0 = 9",
"4 + 9 = 13"
] | 13
|
dp_ 2 -3
|
168
|
Simplify the following expression ((1 * 6) * (7 * (8 * 4 * 9 * 9))) where + has priority over *.
|
((1 * 6) * (7 * (8 * 4 * 9 * 9)))
|
[
"1 * 6 = 6",
"8 * 4 = 32",
"32 * 9 = 288",
"288 * 9 = 2592",
"7 * 2592 = 18144",
"6 * 18144 = 108864"
] | 108,864
|
dp_ 2 -3
|
169
|
Simplify the following expression (((9 * 6 + 7) * 1) * (7 * 3)) where + has priority over *.
|
(((9 * 6 + 7) * 1) * (7 * 3))
|
[
"6 + 7 = 13",
"9 * 13 = 117",
"117 * 1 = 117",
"7 * 3 = 21",
"117 * 21 = 2457"
] | 2,457
|
dp_ 2 -3
|
170
|
Simplify the following expression ((7 + 3) * ((4 + 8 + 1) * 5)) where + has priority over *.
|
((7 + 3) * ((4 + 8 + 1) * 5))
|
[
"7 + 3 = 10",
"4 + 8 = 12",
"12 + 1 = 13",
"13 * 5 = 65",
"10 * 65 = 650"
] | 650
|
dp_ 2 -3
|
171
|
Simplify the following expression (((1 * 4 + 3 * 9) * 8) + (7 + 7)) where + has priority over *.
|
(((1 * 4 + 3 * 9) * 8) + (7 + 7))
|
[
"4 + 3 = 7",
"1 * 7 = 7",
"7 * 9 = 63",
"63 * 8 = 504",
"7 + 7 = 14",
"504 + 14 = 518"
] | 518
|
dp_ 2 -3
|
172
|
Simplify the following expression ((8 * 8) * ((7 * 4 * 3) * 8)) where + has priority over *.
|
((8 * 8) * ((7 * 4 * 3) * 8))
|
[
"8 * 8 = 64",
"7 * 4 = 28",
"28 * 3 = 84",
"84 * 8 = 672",
"64 * 672 = 43008"
] | 43,008
|
dp_ 2 -3
|
173
|
Simplify the following expression ((5 + 1) + ((9 * 8 + 3) + 3)) where + has priority over *.
|
((5 + 1) + ((9 * 8 + 3) + 3))
|
[
"5 + 1 = 6",
"8 + 3 = 11",
"9 * 11 = 99",
"99 + 3 = 102",
"6 + 102 = 108"
] | 108
|
dp_ 2 -3
|
174
|
Simplify the following expression ((5 + (0 * 0 + 7)) * (0 * 8)) where + has priority over *.
|
((5 + (0 * 0 + 7)) * (0 * 8))
|
[
"0 + 7 = 7",
"0 * 7 = 0",
"5 + 0 = 5",
"0 * 8 = 0",
"5 * 0 = 0"
] | 0
|
dp_ 2 -3
|
175
|
Simplify the following expression ((9 + 4) + ((0 + 4 + 7 * 7) * 7)) where + has priority over *.
|
((9 + 4) + ((0 + 4 + 7 * 7) * 7))
|
[
"9 + 4 = 13",
"0 + 4 = 4",
"4 + 7 = 11",
"11 * 7 = 77",
"77 * 7 = 539",
"13 + 539 = 552"
] | 552
|
dp_ 2 -3
|
176
|
Simplify the following expression (((6 + 9 * 7) + 2) + (1 * 3)) where + has priority over *.
|
(((6 + 9 * 7) + 2) + (1 * 3))
|
[
"6 + 9 = 15",
"15 * 7 = 105",
"105 + 2 = 107",
"1 * 3 = 3",
"107 + 3 = 110"
] | 110
|
dp_ 2 -3
|
177
|
Simplify the following expression (((1 + 3 * 1) * 6) * (9 * 9)) where + has priority over *.
|
(((1 + 3 * 1) * 6) * (9 * 9))
|
[
"1 + 3 = 4",
"4 * 1 = 4",
"4 * 6 = 24",
"9 * 9 = 81",
"24 * 81 = 1944"
] | 1,944
|
dp_ 2 -3
|
178
|
Simplify the following expression ((2 + 8) + (2 + (9 * 7 + 3))) where + has priority over *.
|
((2 + 8) + (2 + (9 * 7 + 3)))
|
[
"2 + 8 = 10",
"7 + 3 = 10",
"9 * 10 = 90",
"2 + 90 = 92",
"10 + 92 = 102"
] | 102
|
dp_ 2 -3
|
179
|
Simplify the following expression ((7 * (1 + 8 + 4)) * (4 + 9)) where + has priority over *.
|
((7 * (1 + 8 + 4)) * (4 + 9))
|
[
"1 + 8 = 9",
"9 + 4 = 13",
"7 * 13 = 91",
"4 + 9 = 13",
"91 * 13 = 1183"
] | 1,183
|
dp_ 2 -3
|
180
|
Simplify the following expression ((0 + 2) + ((1 * 7 * 4) * 9)) where + has priority over *.
|
((0 + 2) + ((1 * 7 * 4) * 9))
|
[
"0 + 2 = 2",
"1 * 7 = 7",
"7 * 4 = 28",
"28 * 9 = 252",
"2 + 252 = 254"
] | 254
|
dp_ 2 -3
|
181
|
Simplify the following expression ((1 * 9) * ((1 + 3 * 9 + 2) + 5)) where + has priority over *.
|
((1 * 9) * ((1 + 3 * 9 + 2) + 5))
|
[
"1 * 9 = 9",
"1 + 3 = 4",
"9 + 2 = 11",
"4 * 11 = 44",
"44 + 5 = 49",
"9 * 49 = 441"
] | 441
|
dp_ 2 -3
|
182
|
Simplify the following expression ((4 * 2) * (7 * (6 * 5 + 2))) where + has priority over *.
|
((4 * 2) * (7 * (6 * 5 + 2)))
|
[
"4 * 2 = 8",
"5 + 2 = 7",
"6 * 7 = 42",
"7 * 42 = 294",
"8 * 294 = 2352"
] | 2,352
|
dp_ 2 -3
|
183
|
Simplify the following expression ((7 * 4) * (8 * (5 + 4 * 5 + 8))) where + has priority over *.
|
((7 * 4) * (8 * (5 + 4 * 5 + 8)))
|
[
"7 * 4 = 28",
"5 + 4 = 9",
"5 + 8 = 13",
"9 * 13 = 117",
"8 * 117 = 936",
"28 * 936 = 26208"
] | 26,208
|
dp_ 2 -3
|
184
|
Simplify the following expression ((0 * 3) * (9 * (3 + 4 * 8 * 7))) where + has priority over *.
|
((0 * 3) * (9 * (3 + 4 * 8 * 7)))
|
[
"0 * 3 = 0",
"3 + 4 = 7",
"7 * 8 = 56",
"56 * 7 = 392",
"9 * 392 = 3528",
"0 * 3528 = 0"
] | 0
|
dp_ 2 -3
|
185
|
Simplify the following expression (((6 + 1 + 7) + 3) + (4 + 8)) where + has priority over *.
|
(((6 + 1 + 7) + 3) + (4 + 8))
|
[
"6 + 1 = 7",
"7 + 7 = 14",
"14 + 3 = 17",
"4 + 8 = 12",
"17 + 12 = 29"
] | 29
|
dp_ 2 -3
|
186
|
Simplify the following expression (((7 * 8 + 2 + 1) + 4) + (6 * 7)) where + has priority over *.
|
(((7 * 8 + 2 + 1) + 4) + (6 * 7))
|
[
"8 + 2 = 10",
"10 + 1 = 11",
"7 * 11 = 77",
"77 + 4 = 81",
"6 * 7 = 42",
"81 + 42 = 123"
] | 123
|
dp_ 2 -3
|
187
|
Simplify the following expression ((5 * 8) * ((9 + 7 * 8) * 4)) where + has priority over *.
|
((5 * 8) * ((9 + 7 * 8) * 4))
|
[
"5 * 8 = 40",
"9 + 7 = 16",
"16 * 8 = 128",
"128 * 4 = 512",
"40 * 512 = 20480"
] | 20,480
|
dp_ 2 -3
|
188
|
Simplify the following expression ((5 * (3 * 9 + 6)) * (7 * 5)) where + has priority over *.
|
((5 * (3 * 9 + 6)) * (7 * 5))
|
[
"9 + 6 = 15",
"3 * 15 = 45",
"5 * 45 = 225",
"7 * 5 = 35",
"225 * 35 = 7875"
] | 7,875
|
dp_ 2 -3
|
189
|
Simplify the following expression (((8 + 9 * 5 + 8) * 6) + (2 * 7)) where + has priority over *.
|
(((8 + 9 * 5 + 8) * 6) + (2 * 7))
|
[
"8 + 9 = 17",
"5 + 8 = 13",
"17 * 13 = 221",
"221 * 6 = 1326",
"2 * 7 = 14",
"1326 + 14 = 1340"
] | 1,340
|
dp_ 2 -3
|
190
|
Simplify the following expression ((2 + 6) * ((9 + 6 * 8) + 7)) where + has priority over *.
|
((2 + 6) * ((9 + 6 * 8) + 7))
|
[
"2 + 6 = 8",
"9 + 6 = 15",
"15 * 8 = 120",
"120 + 7 = 127",
"8 * 127 = 1016"
] | 1,016
|
dp_ 2 -3
|
191
|
Simplify the following expression ((7 * (4 + 3 * 1)) * (9 + 1)) where + has priority over *.
|
((7 * (4 + 3 * 1)) * (9 + 1))
|
[
"4 + 3 = 7",
"7 * 1 = 7",
"7 * 7 = 49",
"9 + 1 = 10",
"49 * 10 = 490"
] | 490
|
dp_ 2 -3
|
192
|
Simplify the following expression (((5 * 5 + 3) * 4) + (0 + 5)) where + has priority over *.
|
(((5 * 5 + 3) * 4) + (0 + 5))
|
[
"5 + 3 = 8",
"5 * 8 = 40",
"40 * 4 = 160",
"0 + 5 = 5",
"160 + 5 = 165"
] | 165
|
dp_ 2 -3
|
193
|
Simplify the following expression (((9 + 2 * 4) + 2) * (9 + 6)) where + has priority over *.
|
(((9 + 2 * 4) + 2) * (9 + 6))
|
[
"9 + 2 = 11",
"11 * 4 = 44",
"44 + 2 = 46",
"9 + 6 = 15",
"46 * 15 = 690"
] | 690
|
dp_ 2 -3
|
194
|
Simplify the following expression (((5 * 9 * 4) * 7) * (8 * 2)) where + has priority over *.
|
(((5 * 9 * 4) * 7) * (8 * 2))
|
[
"5 * 9 = 45",
"45 * 4 = 180",
"180 * 7 = 1260",
"8 * 2 = 16",
"1260 * 16 = 20160"
] | 20,160
|
dp_ 2 -3
|
195
|
Simplify the following expression (((5 * 9 * 0) * 6) * (1 * 3)) where + has priority over *.
|
(((5 * 9 * 0) * 6) * (1 * 3))
|
[
"5 * 9 = 45",
"45 * 0 = 0",
"0 * 6 = 0",
"1 * 3 = 3",
"0 * 3 = 0"
] | 0
|
dp_ 2 -3
|
196
|
Simplify the following expression ((0 * (9 + 5 * 3 + 1)) * (9 + 7)) where + has priority over *.
|
((0 * (9 + 5 * 3 + 1)) * (9 + 7))
|
[
"9 + 5 = 14",
"3 + 1 = 4",
"14 * 4 = 56",
"0 * 56 = 0",
"9 + 7 = 16",
"0 * 16 = 0"
] | 0
|
dp_ 2 -3
|
197
|
Simplify the following expression ((7 * 0) + ((6 + 2 + 8) * 1)) where + has priority over *.
|
((7 * 0) + ((6 + 2 + 8) * 1))
|
[
"7 * 0 = 0",
"6 + 2 = 8",
"8 + 8 = 16",
"16 * 1 = 16",
"0 + 16 = 16"
] | 16
|
dp_ 2 -3
|
198
|
Simplify the following expression (((1 + 2 * 8) * 4) * (4 * 5)) where + has priority over *.
|
(((1 + 2 * 8) * 4) * (4 * 5))
|
[
"1 + 2 = 3",
"3 * 8 = 24",
"24 * 4 = 96",
"4 * 5 = 20",
"96 * 20 = 1920"
] | 1,920
|
dp_ 2 -3
|
199
|
Simplify the following expression ((6 + 0) * (8 * (4 * 9 * 1))) where + has priority over *.
|
((6 + 0) * (8 * (4 * 9 * 1)))
|
[
"6 + 0 = 6",
"4 * 9 = 36",
"36 * 1 = 36",
"8 * 36 = 288",
"6 * 288 = 1728"
] | 1,728
|
dp_ 2 -3
|
200
|
Simplify the following expression (((7 * 4 + 2) * 9) + (9 * 3)) where + has priority over *.
|
(((7 * 4 + 2) * 9) + (9 * 3))
|
[
"4 + 2 = 6",
"7 * 6 = 42",
"42 * 9 = 378",
"9 * 3 = 27",
"378 + 27 = 405"
] | 405
|
dp_ 2 -3
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.