Datasets:

Question
stringlengths
22
476
Equation
stringlengths
6
103
Answer
stringlengths
1
34
Numbers
stringlengths
3
58
Isabel uploaded N_00 pictures from her phone and N_01 from her camera to Facebook. If she sorted the pics into N_02 different albums with the same amount of pics in each album, how many pictures were in each of the albums?
v0 = ( ( N_00 + N_01 ) / N_02 )
2.0
2.0 4.0 3.0
There are N_00 rose bushes currently in the park. Park workers will plant N_01 more rose bushes today. How many rose bushes will the park have when the workers are finished?
v0 = N_00 + N_01
6.0
2.0 4.0
Sara had N_01 quarters and N_00 dimes in her bank. Her sister borrowed N_01 dimes. How many dimes does Sara have now?
v0 = N_00 - N_01
4
8.0 4.0
If Victor split N_00 Skittles between N_01 people in her class and kept the leftovers, how many Skittles did each classmate get?
v0 = ( N_00 / N_01 )
5.0
25.0 5.0
Sandy bought some toys. She bought a football for $ N_00 and paid $ N_01 on a baseball with a $ N_02 bill. How much change did he receive from the purchase?
v0 = N_02 - N_00 - N_01
4.05
9.14 6.81 20.0
Nancy's old washing machine could only wash N_00 pieces of clothing at a time. If she had to wash N_01 shirts and N_02 sweaters, how many loads would she have to do?
v0 = ( ( N_01 + N_02 ) / N_00 )
3.0
9.0 19.0 8.0
Tom bought N_00 boxes of chocolate candy and gave N_01 to his little brother. If each box has N_02 pieces inside it, how many pieces did Tom still have?
v0 = ( N_02 * ( N_00 - N_01 ) )
18.0
14.0 8.0 3.0
Isabel had N_00 pages of math homework and N_01 pages of reading homework. If each page had N_02 problems on it, how many problems did she have to complete in total?
v0 = ( N_02 * ( N_00 + N_01 ) )
30.0
2.0 4.0 5.0
There are N_00 erasers in the drawer and N_01 erasers on the desk. Alyssa placed N_02 erasers and N_03 rulers on the desk. How many erasers are now there in total?
v0 = N_00 + N_01 + N_02
117
48.0 30.0 39.0 45.0
A farmer started the day with N_00 buckets of seeds. After spending the morning sowing seeds, she now has N_01 buckets left. How many buckets of seeds did the farmer sow?
v0 = N_00 - N_01
2.75
8.75 6.0
There are N_00 books in a library. They are arranged on shelves that hold N_01 books each. How many shelves are in the library?
v0 = ( N_00 / N_01 )
1780.0
14240.0 8.0
If Sally can paint a house in N_00 hours, and John can paint the same house in N_01 hours, how many hours will it take for both of them to paint the house together?
v0 = 1.0 / ( ( 1.0 / N_00 ) + ( 1.0 / N_01 ) )
2.4
4.0 6.0
A pet store has N_00 bird cages. If each cage has N_01 parrots and N_01 parakeets in it, how many birds does the pet store have total?
v0 = ( N_00 * ( N_01 + N_01 ) )
36.0
9.0 2.0
Willie starts with N_00 stickers. He gives N_01 to Emily. How many stickers does Willie end with?
v0 = ( N_00 - N_01 )
29.0
36.0 7.0
Each day, the polar bear at Richmond's zoo eats N_00 buckets of trout and N_01 buckets of salmon. How many buckets of fish does the polar bear eat daily?
v0 = N_00 + N_01
0.6
0.2 0.4
Ned bought N_00 boxes of chocolate candy and gave N_01 to his little brother. If each box has N_02 pieces inside it, how many pieces did Ned still have?
v0 = ( N_02 * ( N_00 - N_01 ) )
42.0
14.0 7.0 6.0
There were N_00 bales of hay in the barn. Tim stacked bales in the barn today. There are now N_01 bales of hay in the barn. How many bales did he store in the barn?
v0 = N_01 - N_00
26
28.0 54.0
Mildred weighs N_00 pounds. Carol weighs N_01 pounds. How much heavier is Mildred than Carol?
v0 = ( N_00 - N_01 )
50.0
59.0 9.0
Sara got fast food for lunch. Sara spent $ N_00 on a hotdog and $ N_01 on a salad. What was the total of the lunch bill?
v0 = N_00 + N_01
10.46
5.36 5.1
At a sale, the cost of a pair of shoes was reduced from N_00 dollars to N_01 dollars. What was the percent of discount?
v0 = ( ( N_00 - N_01 ) / N_00 ) * 100.0
20.0
42.0 33.6
Patrick jogged to Aaron's house. It is N_00 miles from Patrick's house to Aaron's house. It took Patrick N_01 hours to get there. How fast did Patrick go?
v0 = ( N_00 / N_01 )
7.0
14.0 2.0
Maria bought N_00 new chairs and N_00 new tables for her house. If she spent N_01 minutes on each piece of furniture putting it together, how many minutes did it take her to finish?
v0 = ( N_01 * ( N_00 + N_00 ) )
32.0
2.0 8.0
Isabella's hair is N_00 cubes long. If her hair grows N_01 more inches, how long will it be?
v0 = ( N_00 + N_01 )
22.0
18.0 4.0
Oliver had N_00 socks. If he threw away N_01 old ones that didn't fit and bought N_02 new ones, how many socks would he have?
v0 = ( ( N_00 + N_02 ) - N_01 )
33.0
11.0 4.0 26.0
A jeweler has N_00 rings, each weighing N_01 grams, made of an alloy of N_02 silver and N_03 gold. He decides to melt down the rings and add enough silver to reduce the gold content to N_04 . How many grams of pure silver must be added for the mixture to have a gold content of N_04 ?
v0 = ( ( ( ( N_00 * N_01 ) * 90.0 ) * 0.01 ) - ( N_00 * N_01 ) * 75.0 * 0.01 ) / ( 75.0 * 0.01 - 0.01 )
18.0
5.0 18.0 0.1 0.9 0.75
Ralph starts with N_00 peanuts. He loses N_01 . How many peanuts does Ralph end with?
v0 = ( N_00 - N_01 )
15.0
74.0 59.0
A large bag of balls was kept under Haley's bed. Her mom placed the balls in bags for children in foster homes. If every bag can contain N_00 balls and Haley has N_01 balls, how many bags will be used?
v0 = N_01 / N_00
9.0
4.0 36.0
A pet store has N_00 bird cages. If each cage has N_01 parrots and N_02 parakeets in it, how many birds does the pet store have total?
v0 = ( N_00 * ( N_01 + N_02 ) )
72.0
8.0 2.0 7.0
Robin uploaded N_00 pictures from her phone and N_01 from her camera to Facebook. If she sorted the pics into N_02 different albums with the same amount of pics in each album, how many pictures were in each of the albums?
v0 = ( ( N_00 + N_01 ) / N_02 )
4.0
31.0 5.0 9.0
Sam had N_00 pennies and N_01 dimes in his bank. His sister borrowed N_02 dimes. How many dimes does Sam have now?
v0 = N_01 - N_02
4
7.0 8.0 4.0
Jerry made N_00 dollars mowing lawns and N_01 dollars weed eating. If he only spent N_02 dollars a week, how long would the money last him?
v0 = ( ( N_00 + N_01 ) / N_02 )
9.0
14.0 31.0 5.0
Tiffany uploaded N_00 pictures from her phone and N_01 from her camera to Facebook. If she sorted the pics into N_02 different albums with the same amount of pics in each album, how many pictures were in each of the albums?
v0 = ( ( N_00 + N_01 ) / N_02 )
4.0
7.0 13.0 5.0
Paul had N_00 strawberries in his basket. He picked N_01 more strawberries. How many strawberries did he have then?
v0 = ( N_00 + N_01 )
120.0
42.0 78.0
Adam bought N_00 packages of cat food and N_01 packages of dog food. Each package of cat food contained N_02 cans, and each package of dog food contained N_03 cans. How many more cans of cat food than dog food did Adam buy?
v0 = ( N_00 * N_02 ) - ( N_01 * N_03 )
55.0
9.0 7.0 10.0 5.0
There are N_00 short trees and N_01 tall trees currently in the park. Park workers will plant N_02 short trees today. How many short trees will the park have when the workers are finished?
v0 = N_00 + N_02
12
3.0 6.0 9.0
Alyssa picked N_00 plums, and Jason picked N_01 plums. Melanie picked N_02 pears. How many plums were picked in all?
v0 = N_00 + N_01
27
17.0 10.0 35.0
Alyssa spent half of her allowance going to the movies. She washed the family car and earned N_00 dollars. What is her weekly allowance if she ended with N_01 dollars?
v0 = ( N_01 - N_00 ) * 2.0
8.0
8.0 12.0
Luke made N_00 dollars mowing lawns and N_01 dollars weed eating. If he only spent N_02 dollars a week, how long would the money last him?
v0 = ( ( N_00 + N_01 ) / N_02 )
9.0
9.0 18.0 3.0
There are N_00 calories in a candy bar. How many calories are there in N_01 candy bars?
v0 = N_00 * N_01
15.0
3.0 5.0
There were N_00 geese and N_01 ducks in the marsh. How many birds were in the marsh?
v0 = ( N_00 + N_01 )
95.0
58.0 37.0
If I subtract N_00 from a number and then multiply the difference by N_01 , the result is N_02 . What is the number?
v0 = N_02 / N_01 + N_00
15.0
6.0 4.0 36.0
Tom bought N_00 boxes of chocolate candy and gave N_01 to his little brother. If each box has N_02 pieces inside it, how many pieces did Tom still have?
v0 = ( N_02 * ( N_00 - N_01 ) )
30.0
12.0 7.0 6.0
There were a total of N_00 soccer games during the N_01 month season. If the games are equally divided, how many soccer games are played a month?
v0 = N_00 / N_01
9.0
27.0 3.0
Mrs. Hilt bought N_00 hot dogs. Each hot dog costs N_01 cents. How much money did she pay for all of the hot dogs?
v0 = ( N_00 * N_01 )
300.0
6.0 50.0
A cereal box holds N_00 cups of cereal. Each serving is N_01 cups. How many servings are in the whole box?
v0 = ( N_00 / N_01 )
9.0
18.0 2.0
Recently, AT&T offered N_03 long-distance calling plans. The Rate Plus Plan costs N_00 dollars per month plus N_01 cents a minute. Another plan has no monthly fee but costs N_02 cents a minute. For what number of minutes will the N_03 plans cost the same?
v0 = N_00 / ( ( N_02 * 0.01 ) - ( N_01 * 0.01 ) )
165.0
4.95 7.0 10.0 2.0
Roger has N_00 blocks. N_01 are eaten by a hippopotamus. How many blocks will Roger have?
v0 = ( N_00 - N_01 )
90.0
92.0 2.0
Isha's pencil is N_00 cubes long. If she gets another pencil that is N_00 cubes long, how many cubes long are both pencils?
v0 = ( N_00 + N_00 )
24.0
12.0
If the sum of a number and N_00 is multiplied by N_01 , the result is the same as N_02 times the number decreased by N_03 . Find the number.
v0 = ( N_01 * N_00 + N_02 * N_03 ) / ( N_02 - N_01 )
12.0
6.0 5.0 9.0 2.0
A pet store had N_00 puppies. In one day, they sold N_01 of them and put the rest into cages, with N_02 in each cage. How many cages did they use?
v0 = ( ( N_00 - N_01 ) / N_02 )
8.0
56.0 24.0 4.0
There are N_00 scissors in the drawer. Keith placed N_01 scissors in the drawer. How many scissors are now there in all?
v0 = N_00 + N_01
76
54.0 22.0
Jose starts with N_00 bottle caps. He gets N_01 more from Rebecca. How many bottle caps does Jose end with?
v0 = ( N_00 + N_01 )
9.0
7.0 2.0
Alyssa had N_00 cookies. Aiyanna has N_01 . How many more cookies does Aiyanna have than Alyssa?
v0 = ( N_01 - N_00 )
11.0
129.0 140.0
Josh had N_00 pencils. He gave N_01 pencils to Dorothy. How many pencils does Josh have left?
v0 = ( N_00 - N_01 )
111.0
142.0 31.0
Michelle has N_00 boxes of crayons. Each box holds N_01 crayons. How many crayons does Michelle have?
v0 = ( N_00 * N_01 )
35.0
7.0 5.0
For his car, Mike spent $ N_00 on speakers and $ N_01 on new tires. Mike wanted N_02 CDs for $ N_03 but decided not to. In total, how much did Mike spend on car parts?
v0 = N_00 + N_01
224.87
118.54 106.33 3.0 4.58
There are N_00 walnut trees currently in the park. Park workers will plant N_01 walnut trees today. How many walnut trees will the park have when the workers are finished?
v0 = N_00 + N_01
10
4.0 6.0
While playing at the arcade, Edward won N_00 tickets playing 'whack a mole' and N_01 tickets playing 'skee ball.' If he was trying to buy candy that cost N_02 tickets a piece, how many could he buy?
v0 = ( ( N_00 + N_01 ) / N_02 )
2.0
3.0 5.0 4.0
There were N_00 bales of hay in the barn. Jason stacked bales in the barn today. There are now N_01 bales of hay in the barn. How many bales did he store in the barn?
v0 = N_01 - N_00
23
73.0 96.0
Alyssa picked N_00 limes, and Mike picked N_01 limes. Tom picked N_02 plums. How many limes were picked in all?
v0 = N_00 + N_01
57
25.0 32.0 12.0
N_00 birds were sitting in a tree. Some more fly up to the tree. Then there were N_01 birds in the tree. How many more flew up to the tree?
v0 = ( N_01 - N_00 )
81.0
231.0 312.0
There are N_00 pigs in the barn. Some more come to join them. Now there are N_01 pigs. How many pigs came to join them?
v0 = ( N_01 - N_00 )
22.0
64.0 86.0
Jessica, Sandy, and Jason each have N_00 pencils. How many pencils do they have in all?
v0 = 3.0 * N_00
24.0
8.0
A pet shelter had N_00 puppies when another N_00 were brought in. If N_00 puppies a day are adopted, how long would it take for all of them to be adopted?
v0 = ( ( N_00 + N_00 ) / N_00 )
2.0
3.0
Paul made N_00 dollars mowing lawns and N_01 dollars weed eating. If he only spent N_02 dollars a week, how long would the money last him?
v0 = ( ( N_00 + N_01 ) / N_02 )
9.0
68.0 13.0 9.0
The farmer had N_00 apples. He gave N_01 apples to his neighbor. How many apples does he have now?
v0 = ( N_00 - N_01 )
39.0
127.0 88.0
Pamela has N_00 Skittles. She gives N_01 to Karen. How many Skittles will Pamela have?
v0 = ( N_00 - N_01 )
43.0
50.0 7.0
Tiffany was playing a video game and had N_00 lives. In a hard part of the game, she lost N_01 lives. If she got N_02 more lives in the next level, how many lives would she have?
v0 = ( ( N_00 + N_02 ) - N_01 )
56.0
43.0 14.0 27.0
Arthur has N_00 cards. Aaron has N_01 cards. Aaron finds another N_02 . How many cards does Aaron end with?
v0 = ( N_01 + N_02 )
67.0
6.0 5.0 62.0
Janet was playing a video game and had N_00 lives. In a hard part of the game, she lost N_01 lives. If she got N_02 more lives in the next level, how many lives would she have?
v0 = ( ( N_00 + N_02 ) - N_01 )
54.0
38.0 16.0 32.0
There are N_00 orchid bushes currently in the park. Park workers will plant N_01 orchid bushes today. How many orchid bushes will the park have when the workers are finished?
v0 = N_00 + N_01
6
2.0 4.0
Hannah's Vegetarian Restaurant bought N_00 pounds of green peppers and N_00 pounds of red peppers. How many pounds of peppers did Hannah's Vegetarian Restaurant buy in all?
v0 = N_00 + N_00
0.6666666666666666
0.3333333333333333
There were a total of N_00 football games this year. N_01 are played at night. Keith missed N_01 of the games. How many football games did Keith go to in total?
v0 = N_00 - N_01
4
8.0 4.0
A gas station owner has N_00 gallons of gasoline for which he charges N_01 dollars per gallon and some for which he charges N_02 dollars per gallon. How many gallons of the N_02 dollars brand must the owner mix in to produce gasoline that costs N_03 dollars per gallon?
v0 = ( N_03 * N_00 - N_00 * N_01 ) / ( N_02 - N_03 )
16.304
30.0 3.03 3.74 3.28
The school is planning a field trip. There are N_00 students and N_01 seats on each school bus. How many buses are needed to take the trip?
v0 = ( N_00 / N_01 )
7.0
14.0 2.0
A pet store had N_00 puppies. In one day, they sold N_01 of them and put the rest into cages, with N_02 in each cage. How many cages did they use?
v0 = ( ( N_00 - N_01 ) / N_02 )
9.0
64.0 28.0 4.0
Find the number whose double is N_00 greater than its N_01 ?
v0 = N_00 / ( 2.0 - N_01 )
30.0
45.0 0.5
Ellen made smoothies in the blender. She used N_01 cups of strawberries, N_00 cups of yogurt, and N_01 cups of orange juice. How many cups of ingredients did Ellen use for the smoothies?
v0 = N_01 + N_00 + N_01
0.5
0.1 0.2
Nancy goes fishing with Joan. They catch N_00 trout. If they equally split up the trout, how many will each one get?
v0 = N_00 / 2.0
9.0
18.0
A pet store has N_00 bird cages. If each cage has N_01 parrots and N_02 parakeets in it, how many birds does the pet store have total?
v0 = ( N_00 * ( N_01 + N_02 ) )
40.0
4.0 8.0 2.0
For the school bake sale, Katie made pastries. She baked N_00 cupcakes and N_01 cookies. After the sale, she had N_02 to take back home. How many pastries did she sell?
v0 = ( ( N_00 + N_01 ) - N_02 )
4.0
7.0 5.0 8.0