id int64 1 500 | question stringlengths 92 120 | expression stringlengths 29 57 | think listlengths 5 10 | answer int64 0 755k | settings stringclasses 4
values |
|---|---|---|---|---|---|
1 | Simplify the following expression ((8 + 6) + ((2 * 6 + 5 + 5) + 9)) where + has priority over *. | ((8 + 6) + ((2 * 6 + 5 + 5) + 9)) | [
"8 + 6 = 14",
"6 + 5 = 11",
"11 + 5 = 16",
"2 * 16 = 32",
"32 + 9 = 41",
"14 + 41 = 55"
] | 55 | dp_ 2 -2 |
2 | 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 -2 |
3 | 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 -2 |
4 | 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 -2 |
5 | 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 -2 |
6 | 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 -2 |
7 | Simplify the following expression ((8 * 4) * ((1 * 4 + 7) + 8)) where + has priority over *. | ((8 * 4) * ((1 * 4 + 7) + 8)) | [
"8 * 4 = 32",
"4 + 7 = 11",
"1 * 11 = 11",
"11 + 8 = 19",
"32 * 19 = 608"
] | 608 | dp_ 2 -2 |
8 | Simplify the following expression ((8 * (5 + 2 * 8 * 0)) + (4 + 8)) where + has priority over *. | ((8 * (5 + 2 * 8 * 0)) + (4 + 8)) | [
"5 + 2 = 7",
"7 * 8 = 56",
"56 * 0 = 0",
"8 * 0 = 0",
"4 + 8 = 12",
"0 + 12 = 12"
] | 12 | dp_ 2 -2 |
9 | Simplify the following expression (((7 + 1 + 8 * 8) * 3) + (3 + 9)) where + has priority over *. | (((7 + 1 + 8 * 8) * 3) + (3 + 9)) | [
"7 + 1 = 8",
"8 + 8 = 16",
"16 * 8 = 128",
"128 * 3 = 384",
"3 + 9 = 12",
"384 + 12 = 396"
] | 396 | dp_ 2 -2 |
10 | Simplify the following expression ((8 * (6 * 5 * 1)) + (3 * 8)) where + has priority over *. | ((8 * (6 * 5 * 1)) + (3 * 8)) | [
"6 * 5 = 30",
"30 * 1 = 30",
"8 * 30 = 240",
"3 * 8 = 24",
"240 + 24 = 264"
] | 264 | dp_ 2 -2 |
11 | Simplify the following expression ((1 + (0 + 1 + 0 + 5)) + (9 + 8)) where + has priority over *. | ((1 + (0 + 1 + 0 + 5)) + (9 + 8)) | [
"0 + 1 = 1",
"1 + 0 = 1",
"1 + 5 = 6",
"1 + 6 = 7",
"9 + 8 = 17",
"7 + 17 = 24"
] | 24 | dp_ 2 -2 |
12 | Simplify the following expression ((4 + 7) + (8 + (7 + 6 + 3 * 5))) where + has priority over *. | ((4 + 7) + (8 + (7 + 6 + 3 * 5))) | [
"4 + 7 = 11",
"7 + 6 = 13",
"13 + 3 = 16",
"16 * 5 = 80",
"8 + 80 = 88",
"11 + 88 = 99"
] | 99 | dp_ 2 -2 |
13 | Simplify the following expression ((7 * (3 * 3 + 3 * 2)) * (0 + 6)) where + has priority over *. | ((7 * (3 * 3 + 3 * 2)) * (0 + 6)) | [
"3 + 3 = 6",
"3 * 6 = 18",
"18 * 2 = 36",
"7 * 36 = 252",
"0 + 6 = 6",
"252 * 6 = 1512"
] | 1,512 | dp_ 2 -2 |
14 | Simplify the following expression (((1 * 3 * 2 * 3) * 1) * (8 * 1)) where + has priority over *. | (((1 * 3 * 2 * 3) * 1) * (8 * 1)) | [
"1 * 3 = 3",
"3 * 2 = 6",
"6 * 3 = 18",
"18 * 1 = 18",
"8 * 1 = 8",
"18 * 8 = 144"
] | 144 | dp_ 2 -2 |
15 | Simplify the following expression ((2 + 6) * (6 + (6 * 8 + 3))) where + has priority over *. | ((2 + 6) * (6 + (6 * 8 + 3))) | [
"2 + 6 = 8",
"8 + 3 = 11",
"6 * 11 = 66",
"6 + 66 = 72",
"8 * 72 = 576"
] | 576 | dp_ 2 -2 |
16 | Simplify the following expression (((8 + 8 + 8) + 9) * (5 + 0)) where + has priority over *. | (((8 + 8 + 8) + 9) * (5 + 0)) | [
"8 + 8 = 16",
"16 + 8 = 24",
"24 + 9 = 33",
"5 + 0 = 5",
"33 * 5 = 165"
] | 165 | dp_ 2 -2 |
17 | Simplify the following expression (((9 + 9 * 0 * 4) + 9) + (3 + 6)) where + has priority over *. | (((9 + 9 * 0 * 4) + 9) + (3 + 6)) | [
"9 + 9 = 18",
"18 * 0 = 0",
"0 * 4 = 0",
"0 + 9 = 9",
"3 + 6 = 9",
"9 + 9 = 18"
] | 18 | dp_ 2 -2 |
18 | Simplify the following expression ((3 * (1 * 0 + 1)) + (2 * 4)) where + has priority over *. | ((3 * (1 * 0 + 1)) + (2 * 4)) | [
"0 + 1 = 1",
"1 * 1 = 1",
"3 * 1 = 3",
"2 * 4 = 8",
"3 + 8 = 11"
] | 11 | dp_ 2 -2 |
19 | Simplify the following expression ((2 * 5) + ((7 + 8 * 4 + 2) + 5)) where + has priority over *. | ((2 * 5) + ((7 + 8 * 4 + 2) + 5)) | [
"2 * 5 = 10",
"7 + 8 = 15",
"4 + 2 = 6",
"15 * 6 = 90",
"90 + 5 = 95",
"10 + 95 = 105"
] | 105 | dp_ 2 -2 |
20 | Simplify the following expression ((1 + (3 * 4 * 0)) * (4 + 4)) where + has priority over *. | ((1 + (3 * 4 * 0)) * (4 + 4)) | [
"3 * 4 = 12",
"12 * 0 = 0",
"1 + 0 = 1",
"4 + 4 = 8",
"1 * 8 = 8"
] | 8 | dp_ 2 -2 |
21 | Simplify the following expression ((4 * 0) + ((7 + 8 + 6 + 2) + 2)) where + has priority over *. | ((4 * 0) + ((7 + 8 + 6 + 2) + 2)) | [
"4 * 0 = 0",
"7 + 8 = 15",
"15 + 6 = 21",
"21 + 2 = 23",
"23 + 2 = 25",
"0 + 25 = 25"
] | 25 | dp_ 2 -2 |
22 | Simplify the following expression (((5 * 0 + 3) * 8) + (6 + 2)) where + has priority over *. | (((5 * 0 + 3) * 8) + (6 + 2)) | [
"0 + 3 = 3",
"5 * 3 = 15",
"15 * 8 = 120",
"6 + 2 = 8",
"120 + 8 = 128"
] | 128 | dp_ 2 -2 |
23 | Simplify the following expression ((8 * (0 * 2 * 3)) + (3 + 2)) where + has priority over *. | ((8 * (0 * 2 * 3)) + (3 + 2)) | [
"0 * 2 = 0",
"0 * 3 = 0",
"8 * 0 = 0",
"3 + 2 = 5",
"0 + 5 = 5"
] | 5 | dp_ 2 -2 |
24 | Simplify the following expression ((1 + (5 + 4 + 0)) * (7 + 3)) where + has priority over *. | ((1 + (5 + 4 + 0)) * (7 + 3)) | [
"5 + 4 = 9",
"9 + 0 = 9",
"1 + 9 = 10",
"7 + 3 = 10",
"10 * 10 = 100"
] | 100 | dp_ 2 -2 |
25 | Simplify the following expression (((0 * 1 + 9) * 4) + (4 + 5)) where + has priority over *. | (((0 * 1 + 9) * 4) + (4 + 5)) | [
"1 + 9 = 10",
"0 * 10 = 0",
"0 * 4 = 0",
"4 + 5 = 9",
"0 + 9 = 9"
] | 9 | dp_ 2 -2 |
26 | Simplify the following expression ((1 + 9) * ((6 * 9 + 3 * 0) * 5)) where + has priority over *. | ((1 + 9) * ((6 * 9 + 3 * 0) * 5)) | [
"1 + 9 = 10",
"9 + 3 = 12",
"6 * 12 = 72",
"72 * 0 = 0",
"0 * 5 = 0",
"10 * 0 = 0"
] | 0 | dp_ 2 -2 |
27 | Simplify the following expression (((8 * 4 * 6) * 1) + (9 * 5)) where + has priority over *. | (((8 * 4 * 6) * 1) + (9 * 5)) | [
"8 * 4 = 32",
"32 * 6 = 192",
"192 * 1 = 192",
"9 * 5 = 45",
"192 + 45 = 237"
] | 237 | dp_ 2 -2 |
28 | Simplify the following expression ((3 + 6) * ((8 * 0 * 3) * 9)) where + has priority over *. | ((3 + 6) * ((8 * 0 * 3) * 9)) | [
"3 + 6 = 9",
"8 * 0 = 0",
"0 * 3 = 0",
"0 * 9 = 0",
"9 * 0 = 0"
] | 0 | dp_ 2 -2 |
29 | Simplify the following expression ((7 * 7) * (3 * (1 * 4 + 8 + 4))) where + has priority over *. | ((7 * 7) * (3 * (1 * 4 + 8 + 4))) | [
"7 * 7 = 49",
"4 + 8 = 12",
"12 + 4 = 16",
"1 * 16 = 16",
"3 * 16 = 48",
"49 * 48 = 2352"
] | 2,352 | dp_ 2 -2 |
30 | Simplify the following expression (((6 + 9 * 7) + 0) + (3 + 7)) where + has priority over *. | (((6 + 9 * 7) + 0) + (3 + 7)) | [
"6 + 9 = 15",
"15 * 7 = 105",
"105 + 0 = 105",
"3 + 7 = 10",
"105 + 10 = 115"
] | 115 | dp_ 2 -2 |
31 | Simplify the following expression ((2 + (0 + 8 + 7)) * (6 + 3)) where + has priority over *. | ((2 + (0 + 8 + 7)) * (6 + 3)) | [
"0 + 8 = 8",
"8 + 7 = 15",
"2 + 15 = 17",
"6 + 3 = 9",
"17 * 9 = 153"
] | 153 | dp_ 2 -2 |
32 | Simplify the following expression ((8 * 8) + (7 * (2 * 7 * 3))) where + has priority over *. | ((8 * 8) + (7 * (2 * 7 * 3))) | [
"8 * 8 = 64",
"2 * 7 = 14",
"14 * 3 = 42",
"7 * 42 = 294",
"64 + 294 = 358"
] | 358 | dp_ 2 -2 |
33 | Simplify the following expression ((3 * (5 + 5 + 2)) * (1 * 4)) where + has priority over *. | ((3 * (5 + 5 + 2)) * (1 * 4)) | [
"5 + 5 = 10",
"10 + 2 = 12",
"3 * 12 = 36",
"1 * 4 = 4",
"36 * 4 = 144"
] | 144 | dp_ 2 -2 |
34 | Simplify the following expression ((2 * 3) + ((6 + 0 * 6) + 6)) where + has priority over *. | ((2 * 3) + ((6 + 0 * 6) + 6)) | [
"2 * 3 = 6",
"6 + 0 = 6",
"6 * 6 = 36",
"36 + 6 = 42",
"6 + 42 = 48"
] | 48 | dp_ 2 -2 |
35 | Simplify the following expression ((7 * 0) + (4 * (7 * 3 * 4 + 6))) where + has priority over *. | ((7 * 0) + (4 * (7 * 3 * 4 + 6))) | [
"7 * 0 = 0",
"7 * 3 = 21",
"4 + 6 = 10",
"21 * 10 = 210",
"4 * 210 = 840",
"0 + 840 = 840"
] | 840 | dp_ 2 -2 |
36 | Simplify the following expression (((9 + 9 + 6) * 7) * (9 + 8)) where + has priority over *. | (((9 + 9 + 6) * 7) * (9 + 8)) | [
"9 + 9 = 18",
"18 + 6 = 24",
"24 * 7 = 168",
"9 + 8 = 17",
"168 * 17 = 2856"
] | 2,856 | dp_ 2 -2 |
37 | Simplify the following expression ((2 * (5 * 5 * 6)) + (6 * 5)) where + has priority over *. | ((2 * (5 * 5 * 6)) + (6 * 5)) | [
"5 * 5 = 25",
"25 * 6 = 150",
"2 * 150 = 300",
"6 * 5 = 30",
"300 + 30 = 330"
] | 330 | dp_ 2 -2 |
38 | Simplify the following expression (((0 + 3 + 3 + 2) + 0) * (5 + 3)) where + has priority over *. | (((0 + 3 + 3 + 2) + 0) * (5 + 3)) | [
"0 + 3 = 3",
"3 + 3 = 6",
"6 + 2 = 8",
"8 + 0 = 8",
"5 + 3 = 8",
"8 * 8 = 64"
] | 64 | dp_ 2 -2 |
39 | Simplify the following expression ((9 + (2 + 4 * 1 * 6)) * (4 * 5)) where + has priority over *. | ((9 + (2 + 4 * 1 * 6)) * (4 * 5)) | [
"2 + 4 = 6",
"6 * 1 = 6",
"6 * 6 = 36",
"9 + 36 = 45",
"4 * 5 = 20",
"45 * 20 = 900"
] | 900 | dp_ 2 -2 |
40 | Simplify the following expression (((5 * 8 + 6 * 0) + 3) + (4 + 9)) where + has priority over *. | (((5 * 8 + 6 * 0) + 3) + (4 + 9)) | [
"8 + 6 = 14",
"5 * 14 = 70",
"70 * 0 = 0",
"0 + 3 = 3",
"4 + 9 = 13",
"3 + 13 = 16"
] | 16 | dp_ 2 -2 |
41 | 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 -2 |
42 | Simplify the following expression (((5 * 0 * 2) * 1) * (7 * 3)) where + has priority over *. | (((5 * 0 * 2) * 1) * (7 * 3)) | [
"5 * 0 = 0",
"0 * 2 = 0",
"0 * 1 = 0",
"7 * 3 = 21",
"0 * 21 = 0"
] | 0 | dp_ 2 -2 |
43 | Simplify the following expression ((5 + (8 + 3 * 1 * 8)) * (4 * 9)) where + has priority over *. | ((5 + (8 + 3 * 1 * 8)) * (4 * 9)) | [
"8 + 3 = 11",
"11 * 1 = 11",
"11 * 8 = 88",
"5 + 88 = 93",
"4 * 9 = 36",
"93 * 36 = 3348"
] | 3,348 | dp_ 2 -2 |
44 | Simplify the following expression (((3 * 4 * 8) * 7) + (1 + 4)) where + has priority over *. | (((3 * 4 * 8) * 7) + (1 + 4)) | [
"3 * 4 = 12",
"12 * 8 = 96",
"96 * 7 = 672",
"1 + 4 = 5",
"672 + 5 = 677"
] | 677 | dp_ 2 -2 |
45 | Simplify the following expression ((8 * 5) * ((3 + 1 * 1) * 4)) where + has priority over *. | ((8 * 5) * ((3 + 1 * 1) * 4)) | [
"8 * 5 = 40",
"3 + 1 = 4",
"4 * 1 = 4",
"4 * 4 = 16",
"40 * 16 = 640"
] | 640 | dp_ 2 -2 |
46 | Simplify the following expression ((3 + 7) + ((3 * 4 + 3 * 0) * 8)) where + has priority over *. | ((3 + 7) + ((3 * 4 + 3 * 0) * 8)) | [
"3 + 7 = 10",
"4 + 3 = 7",
"3 * 7 = 21",
"21 * 0 = 0",
"0 * 8 = 0",
"10 + 0 = 10"
] | 10 | dp_ 2 -2 |
47 | Simplify the following expression (((9 * 4 * 7 * 2) * 0) + (2 * 7)) where + has priority over *. | (((9 * 4 * 7 * 2) * 0) + (2 * 7)) | [
"9 * 4 = 36",
"36 * 7 = 252",
"252 * 2 = 504",
"504 * 0 = 0",
"2 * 7 = 14",
"0 + 14 = 14"
] | 14 | dp_ 2 -2 |
48 | Simplify the following expression (((2 * 2 + 9 + 1) * 1) + (6 + 7)) where + has priority over *. | (((2 * 2 + 9 + 1) * 1) + (6 + 7)) | [
"2 + 9 = 11",
"11 + 1 = 12",
"2 * 12 = 24",
"24 * 1 = 24",
"6 + 7 = 13",
"24 + 13 = 37"
] | 37 | dp_ 2 -2 |
49 | Simplify the following expression ((8 + 6) * (7 * (9 + 9 + 3))) where + has priority over *. | ((8 + 6) * (7 * (9 + 9 + 3))) | [
"8 + 6 = 14",
"9 + 9 = 18",
"18 + 3 = 21",
"7 * 21 = 147",
"14 * 147 = 2058"
] | 2,058 | dp_ 2 -2 |
50 | Simplify the following expression (((0 * 6 * 7 + 3) * 2) + (2 + 8)) where + has priority over *. | (((0 * 6 * 7 + 3) * 2) + (2 + 8)) | [
"0 * 6 = 0",
"7 + 3 = 10",
"0 * 10 = 0",
"0 * 2 = 0",
"2 + 8 = 10",
"0 + 10 = 10"
] | 10 | dp_ 2 -2 |
51 | 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 -2 |
52 | 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 -2 |
53 | 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 -2 |
54 | 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 -2 |
55 | 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 -2 |
56 | 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 -2 |
57 | Simplify the following expression (((1 + 3 * 1) + 3) + (4 + 8)) where + has priority over *. | (((1 + 3 * 1) + 3) + (4 + 8)) | [
"1 + 3 = 4",
"4 * 1 = 4",
"4 + 3 = 7",
"4 + 8 = 12",
"7 + 12 = 19"
] | 19 | dp_ 2 -2 |
58 | Simplify the following expression ((4 * 8) + (6 * (7 * 8 + 2 + 1))) where + has priority over *. | ((4 * 8) + (6 * (7 * 8 + 2 + 1))) | [
"4 * 8 = 32",
"8 + 2 = 10",
"10 + 1 = 11",
"7 * 11 = 77",
"6 * 77 = 462",
"32 + 462 = 494"
] | 494 | dp_ 2 -2 |
59 | Simplify the following expression ((5 * 8) * ((2 * 7 * 5) * 4)) where + has priority over *. | ((5 * 8) * ((2 * 7 * 5) * 4)) | [
"5 * 8 = 40",
"2 * 7 = 14",
"14 * 5 = 70",
"70 * 4 = 280",
"40 * 280 = 11200"
] | 11,200 | dp_ 2 -2 |
60 | Simplify the following expression ((5 * (0 * 5 * 6)) * (9 + 6)) where + has priority over *. | ((5 * (0 * 5 * 6)) * (9 + 6)) | [
"0 * 5 = 0",
"0 * 6 = 0",
"5 * 0 = 0",
"9 + 6 = 15",
"0 * 15 = 0"
] | 0 | dp_ 2 -2 |
61 | Simplify the following expression (((0 * 2 + 1) * 2) + (1 * 7)) where + has priority over *. | (((0 * 2 + 1) * 2) + (1 * 7)) | [
"2 + 1 = 3",
"0 * 3 = 0",
"0 * 2 = 0",
"1 * 7 = 7",
"0 + 7 = 7"
] | 7 | dp_ 2 -2 |
62 | Simplify the following expression (((7 + 8 + 3) * 9) * (1 * 5)) where + has priority over *. | (((7 + 8 + 3) * 9) * (1 * 5)) | [
"7 + 8 = 15",
"15 + 3 = 18",
"18 * 9 = 162",
"1 * 5 = 5",
"162 * 5 = 810"
] | 810 | dp_ 2 -2 |
63 | Simplify the following expression ((1 + (0 * 0 + 4)) * (1 + 7)) where + has priority over *. | ((1 + (0 * 0 + 4)) * (1 + 7)) | [
"0 + 4 = 4",
"0 * 4 = 0",
"1 + 0 = 1",
"1 + 7 = 8",
"1 * 8 = 8"
] | 8 | dp_ 2 -2 |
64 | Simplify the following expression ((6 * (2 * 1 + 9 * 9)) * (8 + 6)) where + has priority over *. | ((6 * (2 * 1 + 9 * 9)) * (8 + 6)) | [
"1 + 9 = 10",
"2 * 10 = 20",
"20 * 9 = 180",
"6 * 180 = 1080",
"8 + 6 = 14",
"1080 * 14 = 15120"
] | 15,120 | dp_ 2 -2 |
65 | Simplify the following expression ((7 + 4) + (4 * (8 + 2 * 5))) where + has priority over *. | ((7 + 4) + (4 * (8 + 2 * 5))) | [
"7 + 4 = 11",
"8 + 2 = 10",
"10 * 5 = 50",
"4 * 50 = 200",
"11 + 200 = 211"
] | 211 | dp_ 2 -2 |
66 | Simplify the following expression ((4 * 7) * (3 * (3 * 6 * 9 * 0))) where + has priority over *. | ((4 * 7) * (3 * (3 * 6 * 9 * 0))) | [
"4 * 7 = 28",
"3 * 6 = 18",
"18 * 9 = 162",
"162 * 0 = 0",
"3 * 0 = 0",
"28 * 0 = 0"
] | 0 | dp_ 2 -2 |
67 | 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 -2 |
68 | 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 -2 |
69 | 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 -2 |
70 | 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 -2 |
71 | Simplify the following expression (((4 + 6 + 0) * 9) + (9 * 3)) where + has priority over *. | (((4 + 6 + 0) * 9) + (9 * 3)) | [
"4 + 6 = 10",
"10 + 0 = 10",
"10 * 9 = 90",
"9 * 3 = 27",
"90 + 27 = 117"
] | 117 | dp_ 2 -2 |
72 | Simplify the following expression ((7 * (7 * 5 + 6)) + (3 + 8)) where + has priority over *. | ((7 * (7 * 5 + 6)) + (3 + 8)) | [
"5 + 6 = 11",
"7 * 11 = 77",
"7 * 77 = 539",
"3 + 8 = 11",
"539 + 11 = 550"
] | 550 | dp_ 2 -2 |
73 | Simplify the following expression ((9 * (7 * 3 + 5)) + (0 * 5)) where + has priority over *. | ((9 * (7 * 3 + 5)) + (0 * 5)) | [
"3 + 5 = 8",
"7 * 8 = 56",
"9 * 56 = 504",
"0 * 5 = 0",
"504 + 0 = 504"
] | 504 | dp_ 2 -2 |
74 | Simplify the following expression (((9 * 0 + 0 + 9) + 4) * (1 + 7)) where + has priority over *. | (((9 * 0 + 0 + 9) + 4) * (1 + 7)) | [
"0 + 0 = 0",
"0 + 9 = 9",
"9 * 9 = 81",
"81 + 4 = 85",
"1 + 7 = 8",
"85 * 8 = 680"
] | 680 | dp_ 2 -2 |
75 | Simplify the following expression ((8 + (4 * 2 + 2 + 0)) + (3 + 5)) where + has priority over *. | ((8 + (4 * 2 + 2 + 0)) + (3 + 5)) | [
"2 + 2 = 4",
"4 + 0 = 4",
"4 * 4 = 16",
"8 + 16 = 24",
"3 + 5 = 8",
"24 + 8 = 32"
] | 32 | dp_ 2 -2 |
76 | Simplify the following expression ((5 + 3) + ((2 + 6 + 8 * 7) * 2)) where + has priority over *. | ((5 + 3) + ((2 + 6 + 8 * 7) * 2)) | [
"5 + 3 = 8",
"2 + 6 = 8",
"8 + 8 = 16",
"16 * 7 = 112",
"112 * 2 = 224",
"8 + 224 = 232"
] | 232 | dp_ 2 -2 |
77 | Simplify the following expression ((7 + 8) * ((0 * 0 * 6) + 0)) where + has priority over *. | ((7 + 8) * ((0 * 0 * 6) + 0)) | [
"7 + 8 = 15",
"0 * 0 = 0",
"0 * 6 = 0",
"0 + 0 = 0",
"15 * 0 = 0"
] | 0 | dp_ 2 -2 |
78 | Simplify the following expression ((7 * (2 * 4 * 9 * 7)) + (5 + 9)) where + has priority over *. | ((7 * (2 * 4 * 9 * 7)) + (5 + 9)) | [
"2 * 4 = 8",
"8 * 9 = 72",
"72 * 7 = 504",
"7 * 504 = 3528",
"5 + 9 = 14",
"3528 + 14 = 3542"
] | 3,542 | dp_ 2 -2 |
79 | Simplify the following expression ((1 + (5 * 7 * 1)) * (6 + 7)) where + has priority over *. | ((1 + (5 * 7 * 1)) * (6 + 7)) | [
"5 * 7 = 35",
"35 * 1 = 35",
"1 + 35 = 36",
"6 + 7 = 13",
"36 * 13 = 468"
] | 468 | dp_ 2 -2 |
80 | Simplify the following expression (((1 + 1 * 6 + 8) * 4) * (2 * 7)) where + has priority over *. | (((1 + 1 * 6 + 8) * 4) * (2 * 7)) | [
"1 + 1 = 2",
"6 + 8 = 14",
"2 * 14 = 28",
"28 * 4 = 112",
"2 * 7 = 14",
"112 * 14 = 1568"
] | 1,568 | dp_ 2 -2 |
81 | Simplify the following expression ((1 * (5 + 1 + 7)) + (6 * 0)) where + has priority over *. | ((1 * (5 + 1 + 7)) + (6 * 0)) | [
"5 + 1 = 6",
"6 + 7 = 13",
"1 * 13 = 13",
"6 * 0 = 0",
"13 + 0 = 13"
] | 13 | dp_ 2 -2 |
82 | Simplify the following expression ((5 + (8 + 9 * 0)) + (1 * 4)) where + has priority over *. | ((5 + (8 + 9 * 0)) + (1 * 4)) | [
"8 + 9 = 17",
"17 * 0 = 0",
"5 + 0 = 5",
"1 * 4 = 4",
"5 + 4 = 9"
] | 9 | dp_ 2 -2 |
83 | Simplify the following expression ((4 * (1 + 2 + 8)) + (0 * 2)) where + has priority over *. | ((4 * (1 + 2 + 8)) + (0 * 2)) | [
"1 + 2 = 3",
"3 + 8 = 11",
"4 * 11 = 44",
"0 * 2 = 0",
"44 + 0 = 44"
] | 44 | dp_ 2 -2 |
84 | Simplify the following expression ((6 * 7) + ((9 + 9 + 2) * 5)) where + has priority over *. | ((6 * 7) + ((9 + 9 + 2) * 5)) | [
"6 * 7 = 42",
"9 + 9 = 18",
"18 + 2 = 20",
"20 * 5 = 100",
"42 + 100 = 142"
] | 142 | dp_ 2 -2 |
85 | Simplify the following expression ((1 + 4) + (6 * (4 + 3 * 6))) where + has priority over *. | ((1 + 4) + (6 * (4 + 3 * 6))) | [
"1 + 4 = 5",
"4 + 3 = 7",
"7 * 6 = 42",
"6 * 42 = 252",
"5 + 252 = 257"
] | 257 | dp_ 2 -2 |
86 | Simplify the following expression ((9 * 7) + (0 * (0 + 3 + 4 * 4))) where + has priority over *. | ((9 * 7) + (0 * (0 + 3 + 4 * 4))) | [
"9 * 7 = 63",
"0 + 3 = 3",
"3 + 4 = 7",
"7 * 4 = 28",
"0 * 28 = 0",
"63 + 0 = 63"
] | 63 | dp_ 2 -2 |
87 | Simplify the following expression ((0 + 7) * ((8 + 8 * 5 + 6) * 2)) where + has priority over *. | ((0 + 7) * ((8 + 8 * 5 + 6) * 2)) | [
"0 + 7 = 7",
"8 + 8 = 16",
"5 + 6 = 11",
"16 * 11 = 176",
"176 * 2 = 352",
"7 * 352 = 2464"
] | 2,464 | dp_ 2 -2 |
88 | Simplify the following expression ((1 * 5) + (9 * (1 + 6 * 2))) where + has priority over *. | ((1 * 5) + (9 * (1 + 6 * 2))) | [
"1 * 5 = 5",
"1 + 6 = 7",
"7 * 2 = 14",
"9 * 14 = 126",
"5 + 126 = 131"
] | 131 | dp_ 2 -2 |
89 | Simplify the following expression ((1 * (6 + 4 * 5 + 1)) * (3 + 6)) where + has priority over *. | ((1 * (6 + 4 * 5 + 1)) * (3 + 6)) | [
"6 + 4 = 10",
"5 + 1 = 6",
"10 * 6 = 60",
"1 * 60 = 60",
"3 + 6 = 9",
"60 * 9 = 540"
] | 540 | dp_ 2 -2 |
90 | Simplify the following expression (((3 + 2 + 2) + 5) + (3 + 1)) where + has priority over *. | (((3 + 2 + 2) + 5) + (3 + 1)) | [
"3 + 2 = 5",
"5 + 2 = 7",
"7 + 5 = 12",
"3 + 1 = 4",
"12 + 4 = 16"
] | 16 | dp_ 2 -2 |
91 | Simplify the following expression (((2 + 7 * 7) * 9) * (9 * 9)) where + has priority over *. | (((2 + 7 * 7) * 9) * (9 * 9)) | [
"2 + 7 = 9",
"9 * 7 = 63",
"63 * 9 = 567",
"9 * 9 = 81",
"567 * 81 = 45927"
] | 45,927 | dp_ 2 -2 |
92 | Simplify the following expression ((9 * 0) * ((7 + 0 * 4) * 1)) where + has priority over *. | ((9 * 0) * ((7 + 0 * 4) * 1)) | [
"9 * 0 = 0",
"7 + 0 = 7",
"7 * 4 = 28",
"28 * 1 = 28",
"0 * 28 = 0"
] | 0 | dp_ 2 -2 |
93 | Simplify the following expression (((9 * 3 * 8) + 9) + (7 * 9)) where + has priority over *. | (((9 * 3 * 8) + 9) + (7 * 9)) | [
"9 * 3 = 27",
"27 * 8 = 216",
"216 + 9 = 225",
"7 * 9 = 63",
"225 + 63 = 288"
] | 288 | dp_ 2 -2 |
94 | Simplify the following expression ((7 + (3 + 7 * 7 * 4)) + (1 * 8)) where + has priority over *. | ((7 + (3 + 7 * 7 * 4)) + (1 * 8)) | [
"3 + 7 = 10",
"10 * 7 = 70",
"70 * 4 = 280",
"7 + 280 = 287",
"1 * 8 = 8",
"287 + 8 = 295"
] | 295 | dp_ 2 -2 |
95 | Simplify the following expression (((8 * 6 + 4 * 1) * 9) * (5 + 1)) where + has priority over *. | (((8 * 6 + 4 * 1) * 9) * (5 + 1)) | [
"6 + 4 = 10",
"8 * 10 = 80",
"80 * 1 = 80",
"80 * 9 = 720",
"5 + 1 = 6",
"720 * 6 = 4320"
] | 4,320 | dp_ 2 -2 |
96 | Simplify the following expression ((4 * 6) + ((5 + 2 * 8) + 1)) where + has priority over *. | ((4 * 6) + ((5 + 2 * 8) + 1)) | [
"4 * 6 = 24",
"5 + 2 = 7",
"7 * 8 = 56",
"56 + 1 = 57",
"24 + 57 = 81"
] | 81 | dp_ 2 -2 |
97 | Simplify the following expression (((3 + 2 * 2 + 8) + 4) * (3 + 5)) where + has priority over *. | (((3 + 2 * 2 + 8) + 4) * (3 + 5)) | [
"3 + 2 = 5",
"2 + 8 = 10",
"5 * 10 = 50",
"50 + 4 = 54",
"3 + 5 = 8",
"54 * 8 = 432"
] | 432 | dp_ 2 -2 |
98 | Simplify the following expression ((9 * (7 * 0 + 6 * 9)) + (2 * 2)) where + has priority over *. | ((9 * (7 * 0 + 6 * 9)) + (2 * 2)) | [
"0 + 6 = 6",
"7 * 6 = 42",
"42 * 9 = 378",
"9 * 378 = 3402",
"2 * 2 = 4",
"3402 + 4 = 3406"
] | 3,406 | dp_ 2 -2 |
99 | Simplify the following expression ((3 * (9 * 7 * 6)) * (4 + 7)) where + has priority over *. | ((3 * (9 * 7 * 6)) * (4 + 7)) | [
"9 * 7 = 63",
"63 * 6 = 378",
"3 * 378 = 1134",
"4 + 7 = 11",
"1134 * 11 = 12474"
] | 12,474 | dp_ 2 -2 |
100 | Simplify the following expression ((3 + 9) * (4 + (8 + 1 * 1))) where + has priority over *. | ((3 + 9) * (4 + (8 + 1 * 1))) | [
"3 + 9 = 12",
"8 + 1 = 9",
"9 * 1 = 9",
"4 + 9 = 13",
"12 * 13 = 156"
] | 156 | dp_ 2 -2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.