id
stringlengths 13
16
| question
stringlengths 68
332
| chain
stringlengths 18
171
| result
stringlengths 1
10
| result_float
float64 1
22.1M
| equation
stringlengths 3
31
| problem_type
stringclasses 5
values |
---|---|---|---|---|---|---|
svamp__chal-201 | A grocery store had 4 bottles of diet soda. If they had 79 more bottles of regular soda than diet soda, how many bottles of regular soda did they have? | <gadget id="calculator">4 + 79</gadget>
<output>83</output>
<result>83</result> | 83 | 83 | ( 4.0 + 79.0 ) | Addition |
svamp__chal-202 | During the Arkansas and Texas tech game the Razorback t-shirt shop made $ 60 by selling t-shirts. If they make $ 10 dollars off each t-shirt sold, how many t-shirts did they sell? | <gadget id="calculator">60 / 10</gadget>
<output>6</output>
<result>6</result> | 6 | 6 | ( 60.0 / 10.0 ) | Common-Division |
svamp__chal-203 | Frank was reading through his favorite book. He read 22 pages per day and it took him 569 days to finish the book. How many pages are there in the book? | <gadget id="calculator">22 * 569</gadget>
<output>12_518</output>
<result>12518</result> | 12_518 | 12,518 | ( 22.0 * 569.0 ) | Multiplication |
svamp__chal-204 | Winter is almost here and most animals are migrating to warmer countries. 86 bird families flew away for the winter from near a mountain. If there were 45 bird families living near the mountain initially, how many more bird families flew away for the winter than those that stayed behind? | <gadget id="calculator">45 - 86</gadget>
<output>-41</output>
<gadget id="calculator">86 - (-41)</gadget>
<output>127</output>
<result>127</result> | 127 | 127 | ( 86.0 - ( 45.0 - 86.0 ) ) | Subtraction |
svamp__chal-205 | Allan brought 2 balloons to the park and then bought 3 more balloons there. If Jake brought 6 balloons to the park, how many more balloons did Jake have than Allan in the park? | <gadget id="calculator">2 + 3</gadget>
<output>5</output>
<gadget id="calculator">6 - 5</gadget>
<output>1</output>
<result>1</result> | 1 | 1 | ( 6.0 - ( 2.0 + 3.0 ) ) | Subtraction |
svamp__chal-206 | Bryan took a look at his books and magazines. If he has 9 books and 46 magazines in each of his 10 bookshelves, how many magazines does he have in total? | <gadget id="calculator">46 * 10</gadget>
<output>460</output>
<result>460</result> | 460 | 460 | ( 46.0 * 10.0 ) | Multiplication |
svamp__chal-207 | Rachel had to complete 8 pages of math homework, 7 pages of reading homework and 3 more pages of biology homework. How many pages of math and biology homework did she have to complete? | <gadget id="calculator">8 + 3</gadget>
<output>11</output>
<result>11</result> | 11 | 11 | ( 8.0 + 3.0 ) | Addition |
svamp__chal-208 | Every day Ryan spends 2 hours on learning english, 5 hours on learning chinese and 4 hours on learning spanish. How many more hours does he spend on learning chinese than he does on learning spanish? | <gadget id="calculator">5 - 4</gadget>
<output>1</output>
<result>1</result> | 1 | 1 | ( 5.0 - 4.0 ) | Subtraction |
svamp__chal-209 | 2 birds were sitting on the fence. 5 more birds and 4 more storks came to join them. How many more birds than storks are sitting on the fence? | <gadget id="calculator">2 + 5</gadget>
<output>7</output>
<gadget id="calculator">7 - 4</gadget>
<output>3</output>
<result>3</result> | 3 | 3 | ( ( 2.0 + 5.0 ) - 4.0 ) | Subtraction |
svamp__chal-210 | Paco had 6 cookies. He gave 30 cookies to his friend and ate 23 cookies. How many more cookies did he give to his friend than those he ate? | <gadget id="calculator">30 - 23</gadget>
<output>7</output>
<result>7</result> | 7 | 7 | ( 30.0 - 23.0 ) | Subtraction |
svamp__chal-211 | Baker made 170 cakes. He sold 78 of them and bought 31 new cakes. How many more cakes did baker sell than those he bought? | <gadget id="calculator">78 - 31</gadget>
<output>47</output>
<result>47</result> | 47 | 47 | ( 78.0 - 31.0 ) | Subtraction |
svamp__chal-212 | Shirley sold 25 cases of boxes of trefoils. How many boxes of trefoils does she need to deliver if each case has 14 boxes? | <gadget id="calculator">25 * 14</gadget>
<output>350</output>
<result>350</result> | 350 | 350 | ( 25.0 * 14.0 ) | Multiplication |
svamp__chal-213 | We ordered 17 pizzas. Each pizza has 4 slices. If there are 25 of us, how many slices of pizza are there altogether? | <gadget id="calculator">17 * 4</gadget>
<output>68</output>
<result>68</result> | 68 | 68 | ( 17.0 * 4.0 ) | Multiplication |
svamp__chal-214 | There were 12 roses and 2 orchids in the vase. Jessica cut some more roses and orchids from her flower garden. There are now 10 roses and 21 orchids in the vase. How many orchids did she cut? | <gadget id="calculator">21 - 2</gadget>
<output>19</output>
<result>19</result> | 19 | 19 | ( 21.0 - 2.0 ) | Subtraction |
svamp__chal-215 | White t - shirts can be purchased in packages. If mom buys 66 white t - shirts where each package has 3 white t - shirts. How many packages will she have? | <gadget id="calculator">66 / 3</gadget>
<output>22</output>
<result>22</result> | 22 | 22 | ( 66.0 / 3.0 ) | Common-Division |
svamp__chal-216 | Mary is baking a cake. The recipe calls for 5 cups of flour and 14 cups of sugar. She already put in 10 cups of flour and 2 cups of sugar. How many more cups of sugar does she need to add? | <gadget id="calculator">14 - 2</gadget>
<output>12</output>
<result>12</result> | 12 | 12 | ( 14.0 - 2.0 ) | Subtraction |
svamp__chal-217 | Mom buys 51 white t - shirts. If white t - shirts can be purchased in packages of 3, how many packages will she have? | <gadget id="calculator">51 / 3</gadget>
<output>17</output>
<result>17</result> | 17 | 17 | ( 51.0 / 3.0 ) | Common-Division |
svamp__chal-218 | Adam could fit 8 action figures and 10 cabinets on each shelf in his room. His room has 4 shelves. How many total items could his shelves hold? | <gadget id="calculator">8 + 10</gadget>
<output>18</output>
<gadget id="calculator">18 * 4</gadget>
<output>72</output>
<result>72</result> | 72 | 72 | ( ( 8.0 + 10.0 ) * 4.0 ) | Multiplication |
svamp__chal-219 | We ordered 7 pizzas. Each pizza has the same number of slices. If there were a total of 14 slices, how many slices are there in each pizza? | <gadget id="calculator">14 / 7</gadget>
<output>2</output>
<result>2</result> | 2 | 2 | ( 14.0 / 7.0 ) | Common-Division |
svamp__chal-220 | Baker made 144 cakes. He sold 71 of them. Then he made 111 more cakes. How many more cakes did baker make than those he sold? | <gadget id="calculator">144 + 111</gadget>
<output>255</output>
<gadget id="calculator">255 - 71</gadget>
<output>184</output>
<result>184</result> | 184 | 184 | ( ( 144.0 + 111.0 ) - 71.0 ) | Subtraction |
svamp__chal-221 | Mary is baking a cake. The recipe calls for 12 cups of flour 5 cups of sugar and 49 cups of salt. She already put in 11 cups of flour. How many more cups of flour does she need to add? | <gadget id="calculator">12 - 11</gadget>
<output>1</output>
<result>1</result> | 1 | 1 | ( 12.0 - 11.0 ) | Subtraction |
svamp__chal-222 | The Razorback t-shirt shop makes $ 78 dollars off each t-shirt sold. During the Arkansas game and the Texas tech game they sold a total of 186 t-shirts. If they sold 172 t-shirts during the Arkansas game, how much money did they make from selling the t-shirts during the Texas tech game? | <gadget id="calculator">186 - 172</gadget>
<output>14</output>
<gadget id="calculator">78 * 14</gadget>
<output>1_092</output>
<result>1092</result> | 1_092 | 1,092 | ( 78.0 * ( 186.0 - 172.0 ) ) | Multiplication |
svamp__chal-223 | There are 62 different movies and 19 different books in the ' crazy silly school ' series. If you read 4 of the books and watched 34 of the movies, how many more books do you still have to read? | <gadget id="calculator">19 - 4</gadget>
<output>15</output>
<result>15</result> | 15 | 15 | ( 19.0 - 4.0 ) | Subtraction |
svamp__chal-224 | We ordered some pizzas. Each pizza has 2 slices. If there were a total of 28 slices, how many pizzas did we order? | <gadget id="calculator">28 / 2</gadget>
<output>14</output>
<result>14</result> | 14 | 14 | ( 28.0 / 2.0 ) | Common-Division |
svamp__chal-225 | Rebecca wants to split a collection of eggs into groups of 3. Rebecca has 99 bananas 9 eggs and 27 marbles. How many groups will be created? | <gadget id="calculator">9 / 3</gadget>
<output>3</output>
<result>3</result> | 3 | 3 | ( 9.0 / 3.0 ) | Common-Division |
svamp__chal-226 | 41 children were riding on the bus. At the bus stop some children got off the bus. Then there were 18 children left on the bus. How many more children were on the bus before the bus stop than there are now? | <gadget id="calculator">41 - 18</gadget>
<output>23</output>
<result>23</result> | 23 | 23 | ( 41.0 - 18.0 ) | Subtraction |
svamp__chal-227 | In Haley's class some boys love to play marbles. Haley gives 2 marbles to each boy. If she had 28 marbles, how many boys did she give the marbles to? | <gadget id="calculator">28 / 2</gadget>
<output>14</output>
<result>14</result> | 14 | 14 | ( 28.0 / 2.0 ) | Common-Division |
svamp__chal-228 | Matthew had 14 crackers and 21 cakes. If Matthew gave equal numbers of crackers and cakes to his 7 friends, how many crackers and cakes did each person eat? | <gadget id="calculator">14 + 21</gadget>
<output>35</output>
<gadget id="calculator">35 / 7</gadget>
<output>5</output>
<result>5</result> | 5 | 5 | ( ( 14.0 + 21.0 ) / 7.0 ) | Common-Division |
svamp__chal-229 | Helen the hippo and her friends are preparing for thanksgiving at Helen's house. Helen baked 31 cookies yesterday 270 cookies this morning and 419 cookies the day before yesterday. How many cookies did Helen bake till last night? | <gadget id="calculator">31 + 419</gadget>
<output>450</output>
<result>450</result> | 450 | 450 | ( 31.0 + 419.0 ) | Addition |
svamp__chal-230 | For the walls of the house he would use 4 nails in all to secure large planks of wood. If each plank of wood needs 2 pieces of nails to be secured, how many planks does John need for the house wall? | <gadget id="calculator">4 / 2</gadget>
<output>2</output>
<result>2</result> | 2 | 2 | ( 4.0 / 2.0 ) | Common-Division |
svamp__chal-231 | Danny collects bottle caps and wrappers. He found 30 bottle caps and 14 wrappers at the park. Now he has 7 bottle caps and 86 wrappers in his collection. How many more bottle caps than wrappers did danny find at the park? | <gadget id="calculator">30 - 14</gadget>
<output>16</output>
<result>16</result> | 16 | 16 | ( 30.0 - 14.0 ) | Subtraction |
svamp__chal-232 | He then went to see the oranges being harvested. He found out that they harvest 8 sacks per day and that each sack containes 35 oranges. How many oranges do they harvest per day? | <gadget id="calculator">8 * 35</gadget>
<output>280</output>
<result>280</result> | 280 | 280 | ( 8.0 * 35.0 ) | Multiplication |
svamp__chal-233 | Edward spent $ 16 to buy books and $ 8 to buy pens. Now he has $ 19. How much more did Edward spend on books than pens? | <gadget id="calculator">16 - 8</gadget>
<output>8</output>
<result>8</result> | 8 | 8 | ( 16.0 - 8.0 ) | Subtraction |
svamp__chal-234 | Emily is making bead necklaces for her friends. Each necklace takes 8 beads and she has 16 beads. How many necklaces can Emily make? | <gadget id="calculator">16 / 8</gadget>
<output>2</output>
<result>2</result> | 2 | 2 | ( 16.0 / 8.0 ) | Common-Division |
svamp__chal-235 | Dan has $ 4. He had $ 3 left with him after he bought a candy bar. How much did the candy bar cost? | <gadget id="calculator">4 - 3</gadget>
<output>1</output>
<result>1</result> | 1 | 1 | ( 4.0 - 3.0 ) | Subtraction |
svamp__chal-236 | Paul got a box of 253 crayons for his birthday. By the end of the school year he had either lost or given away 70 of them. How many crayons did he have left by the end of the school year? | <gadget id="calculator">253 - 70</gadget>
<output>183</output>
<result>183</result> | 183 | 183 | ( 253.0 - 70.0 ) | Subtraction |
svamp__chal-237 | Helen the hippo and her friends are preparing for thanksgiving at Helen's house. Helen baked 144 chocolate chip cookies and 397 raisin cookies yesterday. And she baked 85 raisin cookies and 403 chocolate chip cookies this morning. How many raisin cookies did Helen bake? | <gadget id="calculator">397 + 85</gadget>
<output>482</output>
<result>482</result> | 482 | 482 | ( 397.0 + 85.0 ) | Addition |
svamp__chal-238 | Rachel picked 2 ripe apples from her tree. Now the tree has 7 apples still on it. If 6 of those are ripe and the rest are unripe, how many ripe apples did the tree have to begin with? | <gadget id="calculator">2 + 6</gadget>
<output>8</output>
<result>8</result> | 8 | 8 | ( 2.0 + 6.0 ) | Addition |
svamp__chal-239 | An industrial machine made 9 shirts yesterday and 44 shirts today. It can make 3 shirts a minute. How many minutes did the machine work yesterday? | <gadget id="calculator">9 / 3</gadget>
<output>3</output>
<result>3</result> | 3 | 3 | ( 9.0 / 3.0 ) | Common-Division |
svamp__chal-240 | Zachary did 51 push-ups in gym class today. David did 22 more push-ups than Zachary. John did 4 push-ups less than David. How many push-ups did John do? | <gadget id="calculator">51 + 22</gadget>
<output>73</output>
<gadget id="calculator">73 - 4</gadget>
<output>69</output>
<result>69</result> | 69 | 69 | ( ( 51.0 + 22.0 ) - 4.0 ) | Subtraction |
svamp__chal-241 | Helen the hippo and her friends are preparing for thanksgiving at Helen's house. Helen baked 519 chocolate chip cookies and 300 raisin cookies yesterday. And she baked 280 raisin cookies and 359 chocolate chip cookies this morning. How many more raisin cookies did Helen bake yesterday compared to today? | <gadget id="calculator">300 - 280</gadget>
<output>20</output>
<result>20</result> | 20 | 20 | ( 300.0 - 280.0 ) | Subtraction |
svamp__chal-242 | A grocery store had 81 bottles of regular soda, 60 bottles of diet soda and 60 bottles of lite soda. How many more bottles of regular soda did they have than diet soda? | <gadget id="calculator">81 - 60</gadget>
<output>21</output>
<result>21</result> | 21 | 21 | ( 81.0 - 60.0 ) | Subtraction |
svamp__chal-243 | Randy has some blocks. He uses 52 blocks to build a tower. If there are 38 blocks left, how many blocks did he have at the start? | <gadget id="calculator">52 + 38</gadget>
<output>90</output>
<result>90</result> | 90 | 90 | ( 52.0 + 38.0 ) | Addition |
svamp__chal-244 | Edward had $ 13. He spent some money. Now he has $ 3. How much money did Edward spend? | <gadget id="calculator">13 - 3</gadget>
<output>10</output>
<result>10</result> | 10 | 10 | ( 13.0 - 3.0 ) | Subtraction |
svamp__chal-245 | Ed had 19 more marbles than Doug. Ed lost some of his marbles at the playground. Now Ed has 8 more marbles than doug. How many marbles did Ed lose? | <gadget id="calculator">19 - 8</gadget>
<output>11</output>
<result>11</result> | 11 | 11 | ( 19.0 - 8.0 ) | Subtraction |
svamp__chal-246 | They decided to hold the party in their backyard. They have 12 sets of tables and each set has 14 chairs. There are also 6 chairs extra. How many chairs do they have for the guests? | <gadget id="calculator">12 * 14</gadget>
<output>168</output>
<gadget id="calculator">168 + 6</gadget>
<output>174</output>
<result>174</result> | 174 | 174 | ( ( 12.0 * 14.0 ) + 6.0 ) | Addition |
svamp__chal-247 | The Ferris wheel in paradise park has 3 small seats and 7 large seats. Each small seat can hold 16 people and large seat can hold 12 people. How many people can ride the Ferris wheel on large seats? | <gadget id="calculator">7 * 12</gadget>
<output>84</output>
<result>84</result> | 84 | 84 | ( 7.0 * 12.0 ) | Multiplication |
svamp__chal-248 | There are 20 houses in a block. If a mailman has to give 32 pieces of junk mail to each house in each block, how many pieces of junk mail should he give each block? | <gadget id="calculator">32 * 20</gadget>
<output>640</output>
<result>640</result> | 640 | 640 | ( 32.0 * 20.0 ) | Multiplication |
svamp__chal-249 | A grocery store had 72 bottles of regular soda, 32 bottles of diet soda and 78 apples. How many more bottles than apple did they have? | <gadget id="calculator">72 + 32</gadget>
<output>104</output>
<gadget id="calculator">104 - 78</gadget>
<output>26</output>
<result>26</result> | 26 | 26 | ( ( 72.0 + 32.0 ) - 78.0 ) | Subtraction |
svamp__chal-250 | There are 7 baskets of peaches. Each basket has 10 red peaches and 2 green peaches. How many green peaches are in the baskets altogether? | <gadget id="calculator">2 * 7</gadget>
<output>14</output>
<result>14</result> | 14 | 14 | ( 2.0 * 7.0 ) | Multiplication |
svamp__chal-251 | Winter is almost here and most animals are migrating to warmer countries. There are 3 bird families living near the mountain. 26 new bird families came to live near the mountain from the arctic while 2 bird families flew away further south for winter. How many bird families were left near the mountain? | <gadget id="calculator">3 - 2</gadget>
<output>1</output>
<gadget id="calculator">1 + 26</gadget>
<output>27</output>
<result>27</result> | 27 | 27 | ( ( 3.0 - 2.0 ) + 26.0 ) | Addition |
svamp__chal-252 | Because of the decision Sofia asked the students to suggest specific types of food. If 144 students suggested adding mashed potatoes 467 suggested adding bacon to the menu and 79 suggested adding tomatoes, how many more students suggested mashed potatoes than those that suggested tomatoes? | <gadget id="calculator">144 - 79</gadget>
<output>65</output>
<result>65</result> | 65 | 65 | ( 144.0 - 79.0 ) | Subtraction |
svamp__chal-253 | Jesse's rooms are 19 feet long and 18 feet wide. If she has 20 rooms in all, how much carpet does she need to cover the floors of all rooms? | <gadget id="calculator">19 * 18</gadget>
<output>342</output>
<gadget id="calculator">342 * 20</gadget>
<output>6_840</output>
<result>6840</result> | 6_840 | 6,840 | ( ( 19.0 * 18.0 ) * 20.0 ) | Multiplication |
svamp__chal-254 | Rachel had to complete 10 pages of math homework. If she had to complete 3 more pages of reading homework than math homework, how many pages did she have to complete in all? | <gadget id="calculator">10 + 10</gadget>
<output>20</output>
<gadget id="calculator">20 + 3</gadget>
<output>23</output>
<result>23</result> | 23 | 23 | ( ( 10.0 + 10.0 ) + 3.0 ) | Addition |
svamp__chal-255 | In a school there are 700 girls and the rest are boys. If there are 142 more boys than girls, how many pupils are there in that school? | <gadget id="calculator">700 + 700</gadget>
<output>1_400</output>
<gadget id="calculator">1_400 + 142</gadget>
<output>1_542</output>
<result>1542</result> | 1_542 | 1,542 | ( ( 700.0 + 700.0 ) + 142.0 ) | Addition |
svamp__chal-256 | A waiter had 14 customers. 5 customers left. How many customers does he still have? | <gadget id="calculator">14 - 5</gadget>
<output>9</output>
<result>9</result> | 9 | 9 | ( 14.0 - 5.0 ) | Subtraction |
svamp__chal-257 | Lucy went to the grocery store. She bought 2 packs of cookie and 12 packs of cake. In the end she had 56 amount of change remaining. How many packs of groceries did she buy in all? | <gadget id="calculator">2 + 12</gadget>
<output>14</output>
<result>14</result> | 14 | 14 | ( 2.0 + 12.0 ) | Addition |
svamp__chal-258 | Mary is baking a cake. The recipe calls for 11 cups of sugar and 9 cups of flour. She already put in 12 cups of flour and 10 cups of sugar. How many more cups of sugar does she need to add? | <gadget id="calculator">11 - 10</gadget>
<output>1</output>
<result>1</result> | 1 | 1 | ( 11.0 - 10.0 ) | Subtraction |
svamp__chal-259 | Marco and his dad went strawberry picking. His strawberries weighed 8 pounds while his dad's strawberries weighed 32 pounds. Together how much did their strawberries weigh? | <gadget id="calculator">8 + 32</gadget>
<output>40</output>
<result>40</result> | 40 | 40 | ( 8.0 + 32.0 ) | Addition |
svamp__chal-260 | Kelly gives away 91 nintendo games. How many did she have initially if she still has 92 games left? | <gadget id="calculator">91 + 92</gadget>
<output>183</output>
<result>183</result> | 183 | 183 | ( 91.0 + 92.0 ) | Addition |
svamp__chal-261 | The Razorback t-shirt shop makes $ 106 dollars off each t-shirt sold. During the Arkansas game and the Texas tech game they sold a total of 242 t-shirts. If they sold 115 t-shirts during the Arkansas game, how many t-shirts did they sell during the Texas tech game? | <gadget id="calculator">242 - 115</gadget>
<output>127</output>
<result>127</result> | 127 | 127 | ( 242.0 - 115.0 ) | Subtraction |
svamp__chal-262 | The Razorback t-shirt shop makes $ 23 dollars off each t-shirt sold. During the Arkansas and Texas tech game they made $ 230 by selling t-shirts. How many t-shirts did they sell? | <gadget id="calculator">230 / 23</gadget>
<output>10</output>
<result>10</result> | 10 | 10 | ( 230.0 / 23.0 ) | Common-Division |
svamp__chal-263 | Randy has 90 blocks. He uses 89 blocks to build a house and 63 blocks to build a tower. How many more blocks did he use to build the house than he did to build the tower? | <gadget id="calculator">89 - 63</gadget>
<output>26</output>
<result>26</result> | 26 | 26 | ( 89.0 - 63.0 ) | Subtraction |
svamp__chal-264 | Allan brought 2 balloons and Jake brought 3 balloons to the park. How many more balloons did Jake have than Allan in the park? | <gadget id="calculator">3 - 2</gadget>
<output>1</output>
<result>1</result> | 1 | 1 | ( 3.0 - 2.0 ) | Subtraction |
svamp__chal-265 | Every day Ryan spends 7 hours on learning english, 2 hours on learning chinese and 4 hours on learning spanish. How many more hours does he spend on learning english than he does on learning spanish? | <gadget id="calculator">7 - 4</gadget>
<output>3</output>
<result>3</result> | 3 | 3 | ( 7.0 - 4.0 ) | Subtraction |
svamp__chal-266 | Robin has 43 packages of gum. There are 23 pieces in each package. Robin has 8 extra pieces of gum. How many pieces of gum does Robin have? | <gadget id="calculator">43 * 23</gadget>
<output>989</output>
<gadget id="calculator">989 + 8</gadget>
<output>997</output>
<result>997</result> | 997 | 997 | ( ( 43.0 * 23.0 ) + 8.0 ) | Addition |
svamp__chal-267 | Paul had 108 books. After selling some books in a garage sale and giving 35 books to his friend he had 62 books left. How many books did he sell in the garage sale? | <gadget id="calculator">108 - 35</gadget>
<output>73</output>
<gadget id="calculator">73 - 62</gadget>
<output>11</output>
<result>11</result> | 11 | 11 | ( ( 108.0 - 35.0 ) - 62.0 ) | Subtraction |
svamp__chal-268 | For the walls of the house he would use 12 large planks of wood and 17 small planks. If each large plank of wood needs 14 pieces of nails to be secured and each small plank needs 25 nails. How many planks does John need for the house wall? | <gadget id="calculator">12 + 17</gadget>
<output>29</output>
<result>29</result> | 29 | 29 | ( 12.0 + 17.0 ) | Addition |
svamp__chal-269 | Melissa played 3 games and scored a total of 81 points scoring the same for each game. How many points did she score in each game? | <gadget id="calculator">81 / 3</gadget>
<output>27</output>
<result>27</result> | 27 | 27 | ( 81.0 / 3.0 ) | Common-Division |
svamp__chal-270 | Nell collects cards. She had 246 baseball cards and 214 Ace cards. She gave some of her cards to Jeff and now has 404 baseball cards and 495 Ace cards left. How many more Ace cards than baseball cards does Nell have? | <gadget id="calculator">495 - 404</gadget>
<output>91</output>
<result>91</result> | 91 | 91 | ( 495.0 - 404.0 ) | Subtraction |
svamp__chal-271 | Jerry had 8 action figures on a shelf in his room. Later he added 4 more action figures to the shelf and removed 5 old ones. How many action figures were on his shelf in all? | <gadget id="calculator">8 + 4</gadget>
<output>12</output>
<gadget id="calculator">12 - 5</gadget>
<output>7</output>
<result>7</result> | 7 | 7 | ( ( 8.0 + 4.0 ) - 5.0 ) | Subtraction |
svamp__chal-272 | Paige was helping her mom plant flowers and together they planted 45 seeds in 9 flowerbeds. If they put same number of seeds in each flower bed, how many seeds did they plant in each flowerbed? | <gadget id="calculator">45 / 9</gadget>
<output>5</output>
<result>5</result> | 5 | 5 | ( 45.0 / 9.0 ) | Common-Division |
svamp__chal-273 | A mailman has to give 4 pieces of junk mail to each house in each of the 81 blocks. If there are 12 houses in each block, how many pieces of junk mail should he give in each block? | <gadget id="calculator">4 * 12</gadget>
<output>48</output>
<result>48</result> | 48 | 48 | ( 4.0 * 12.0 ) | Multiplication |
svamp__chal-274 | The ring toss game at the carnival made 325 dollars in the first 154 days and 114 dollars in the remaining 57 days. How much did they make per day in the remaining 57 days at the carnival? | <gadget id="calculator">114 / 57</gadget>
<output>2</output>
<result>2</result> | 2 | 2 | ( 114.0 / 57.0 ) | Common-Division |
svamp__chal-275 | Brenda's mother made cookies for 10 guests but 9 guests did not come. If she prepared 18 cookies and each guest had the same number of cookies, how many did each of them have? | <gadget id="calculator">10 - 9</gadget>
<output>1</output>
<gadget id="calculator">18 / 1</gadget>
<output>18</output>
<result>18</result> | 18 | 18 | ( 18.0 / ( 10.0 - 9.0 ) ) | Common-Division |
svamp__chal-276 | Mary is baking a cake. The recipe calls for 9 cups of sugar 7 cups of flour and 4 cups of salt. She already put in 2 cups of flour. How many more cups of flour than cups of salt does she need to add now? | <gadget id="calculator">7 - 2</gadget>
<output>5</output>
<gadget id="calculator">5 - 4</gadget>
<output>1</output>
<result>1</result> | 1 | 1 | ( ( 7.0 - 2.0 ) - 4.0 ) | Subtraction |
svamp__chal-277 | Baker made some cakes. He sold 145 of them. If he still has 72 cakes left, how many cakes did baker make? | <gadget id="calculator">145 + 72</gadget>
<output>217</output>
<result>217</result> | 217 | 217 | ( 145.0 + 72.0 ) | Addition |
svamp__chal-278 | Jesse needs a carpet of size 10 square feet to cover her room. If her room is 2 feet wide, what is the length of her room? | <gadget id="calculator">10 / 2</gadget>
<output>5</output>
<result>5</result> | 5 | 5 | ( 10.0 / 2.0 ) | Common-Division |
svamp__chal-279 | There are some bananas in Philip's banana collection. If the bananas are organized into 140 groups of size 187, how many bananas does he have in his collection? | <gadget id="calculator">140 * 187</gadget>
<output>26_180</output>
<result>26180</result> | 26_180 | 26,180 | ( 140.0 * 187.0 ) | Multiplication |
svamp__chal-280 | Rebecca wants to split a collection of eggs into groups of 6. Rebecca has 18 eggs 72 bananas and 66 marbles. How many groups will be created? | <gadget id="calculator">18 / 6</gadget>
<output>3</output>
<result>3</result> | 3 | 3 | ( 18.0 / 6.0 ) | Common-Division |
svamp__chal-281 | Jessie currently weighs 9 kilograms. After she started to go jogging everyday she lost 62 kilograms in the first week and 140 kilograms in the second week. How much did she weigh before starting to jog? | <gadget id="calculator">9 + 62</gadget>
<output>71</output>
<gadget id="calculator">71 + 140</gadget>
<output>211</output>
<result>211</result> | 211 | 211 | ( ( 9.0 + 62.0 ) + 140.0 ) | Addition |
svamp__chal-282 | The school is planning a field trip. The school has 72 classrooms. There are 3 seats on each school bus. If there are a total of 111 students in the school, how many buses are needed to take the trip? | <gadget id="calculator">111 / 3</gadget>
<output>37</output>
<result>37</result> | 37 | 37 | ( 111.0 / 3.0 ) | Common-Division |
svamp__chal-283 | 13 campers went rowing and 59 campers went hiking in the morning. 21 campers went rowing in the afternoon. How many campers went rowing in all? | <gadget id="calculator">13 + 21</gadget>
<output>34</output>
<result>34</result> | 34 | 34 | ( 13.0 + 21.0 ) | Addition |
svamp__chal-284 | Jerry had 9 action figures on a shelf in his room. Later he added 7 more action figures to the shelf. If he also has 10 books on the shelf, how many more action figures than books were on his shelf? | <gadget id="calculator">9 + 7</gadget>
<output>16</output>
<gadget id="calculator">16 - 10</gadget>
<output>6</output>
<result>6</result> | 6 | 6 | ( ( 9.0 + 7.0 ) - 10.0 ) | Subtraction |
svamp__chal-285 | Josh had 22 marbles in his collection. He found 13 marbles ones while he lost 5 marbles. How many marbles does he have now? | <gadget id="calculator">22 - 5</gadget>
<output>17</output>
<gadget id="calculator">17 + 13</gadget>
<output>30</output>
<result>30</result> | 30 | 30 | ( ( 22.0 - 5.0 ) + 13.0 ) | Addition |
svamp__chal-286 | For the walls of the house he would use 12 large planks of wood and 10 small planks. If large planks together need 15 pieces of nails to be secured and small planks together need 5 nails. How many nails does John need for the house wall? | <gadget id="calculator">15 + 5</gadget>
<output>20</output>
<result>20</result> | 20 | 20 | ( 15.0 + 5.0 ) | Addition |
svamp__chal-287 | Paul got a box of 589 crayons for his birthday. During the school year he gave 571 crayons to his friends while he lost 161 crayons. How many more crayons did he give to his friends than those he lost? | <gadget id="calculator">571 - 161</gadget>
<output>410</output>
<result>410</result> | 410 | 410 | ( 571.0 - 161.0 ) | Subtraction |
svamp__chal-288 | Jack received 9 emails in the morning, 10 emails in the afternoon and 7 emails in the evening. How many more emails did Jack receive in the morning than in the evening? | <gadget id="calculator">9 - 7</gadget>
<output>2</output>
<result>2</result> | 2 | 2 | ( 9.0 - 7.0 ) | Subtraction |
svamp__chal-289 | Jack received 6 emails in the morning and 8 emails in the afternoon. How many more emails did Jack receive in the afternoon than in the morning? | <gadget id="calculator">8 - 6</gadget>
<output>2</output>
<result>2</result> | 2 | 2 | ( 8.0 - 6.0 ) | Subtraction |
svamp__chal-290 | After eating a hearty meal they went to see the Buckingham palace. There were 71 paintings in the Buckingham palace. There, Rachel learned that 557 visitors came to the Buckingham palace that day. If there were 188 visitors the previous day, how many visited the Buckingham palace within 57 days? | <gadget id="calculator">557 + 188</gadget>
<output>745</output>
<result>745</result> | 745 | 745 | ( 557.0 + 188.0 ) | Addition |
svamp__chal-291 | Helen the hippo and her friends are preparing for thanksgiving at Helen's house. Helen baked 197 chocolate chip cookies and 46 raisin cookies yesterday. And she baked 75 raisin cookies and 66 chocolate chip cookies this morning. How many more chocolate chip cookies did Helen bake yesterday compared to today? | <gadget id="calculator">197 - 66</gadget>
<output>131</output>
<result>131</result> | 131 | 131 | ( 197.0 - 66.0 ) | Subtraction |
svamp__chal-292 | Jake has 18 fewer peaches than Steven who has 13 more peaches than Jill. Steven has 19 peaches. How many peaches does Jill have? | <gadget id="calculator">19 - 13</gadget>
<output>6</output>
<result>6</result> | 6 | 6 | ( 19.0 - 13.0 ) | Subtraction |
svamp__chal-293 | Lucy went to the grocery store. She bought 23 packs of cookie and some packs of cake. In total she had 27 packs of grocery, how many packs of cake did she buy in all? | <gadget id="calculator">27 - 23</gadget>
<output>4</output>
<result>4</result> | 4 | 4 | ( 27.0 - 23.0 ) | Subtraction |
svamp__chal-294 | Every day Ryan spends 6 hours on learning english 3 hours on learning chinese and 58 hours on learning spanish. How many more hours does he spend on learning english than he does on learning chinese? | <gadget id="calculator">6 - 3</gadget>
<output>3</output>
<result>3</result> | 3 | 3 | ( 6.0 - 3.0 ) | Subtraction |
svamp__chal-295 | A book has 2 chapters. The first chapter is 48 pages long. The second chapter is 11 pages long. How many more pages does the first chapter have than the second chapter? | <gadget id="calculator">48 - 11</gadget>
<output>37</output>
<result>37</result> | 37 | 37 | ( 48.0 - 11.0 ) | Subtraction |
svamp__chal-296 | 6 green peaches, 60 yellow peaches and 2 red peaches are in the basket. How many more green peaches than red peaches are in the basket? | <gadget id="calculator">6 - 2</gadget>
<output>4</output>
<result>4</result> | 4 | 4 | ( 6.0 - 2.0 ) | Subtraction |
svamp__chal-297 | Debby drinks 6 bottles a day. If she bought a total of 12 water bottles, how many days would they last her? | <gadget id="calculator">12 / 6</gadget>
<output>2</output>
<result>2</result> | 2 | 2 | ( 12.0 / 6.0 ) | Common-Division |
svamp__chal-298 | There were 22 parents in the program and 676 people in total. How many pupils were present in the program? | <gadget id="calculator">676 - 22</gadget>
<output>654</output>
<result>654</result> | 654 | 654 | ( 676.0 - 22.0 ) | Subtraction |
svamp__chal-299 | Julia played tag with 17 kids on monday, 15 kids on tuesday and 2 kids on wednesday. How many kids did she play with altogether? | <gadget id="calculator">17 + 15</gadget>
<output>32</output>
<gadget id="calculator">32 + 2</gadget>
<output>34</output>
<result>34</result> | 34 | 34 | ( ( 17.0 + 15.0 ) + 2.0 ) | Addition |
svamp__chal-300 | The grasshopper, the frog and the mouse had a jumping contest. The grasshopper jumped 25 inches. The frog jumped 18 inches farther than the grasshopper and the mouse jumped 2 inches farther than the frog. How far did the mouse jump? | <gadget id="calculator">25 + 18</gadget>
<output>43</output>
<gadget id="calculator">43 + 2</gadget>
<output>45</output>
<result>45</result> | 45 | 45 | ( ( 25.0 + 18.0 ) + 2.0 ) | Addition |