body
stringlengths
5
370
ques
stringlengths
12
166
question
stringlengths
24
413
equation
stringlengths
1
67
answer
float64
-451,929
22.1M
label
class label
2 classes
Tony had $ 20.0 . Tony paid $ 8.0 for a ticket to a baseball game . At the game , Tony bought a hot dog for $ 3.0 .
What amount of money did Tony have then ?
Tony had $ 20.0 . Tony paid $ 8.0 for a ticket to a baseball game . At the game , Tony bought a hot dog for $ 3.0 . What amount of money did Tony have then ?
(20.0 - (8.0 + 3.0))
9
1true
Tony had $ 20.0 . Tony paid $ 8.0 for a ticket to a baseball game . At the game , Tony bought a hot dog for $ 3.0 .
What amount of money did Tony have then ?
Tony had $ 20.0 . Tony paid $ 8.0 for a ticket to a baseball game . At the game , Tony bought a hot dog for $ 3.0 . What amount of money did Tony have then ?
(20.0 + (8.0 - 3.0))
25
0false
The cost of 5.0 feet of chain is 2.0 dollars ,
what length of chain can be purchased with number2 dollars ?
The cost of 5.0 feet of chain is 2.0 dollars , what length of chain can be purchased with 7.5 dollars ?
((7.5 / 2.0) * 5.0)
18.75
1true
The cost of 5.0 feet of chain is 2.0 dollars ,
what length of chain can be purchased with number2 dollars ?
The cost of 5.0 feet of chain is 2.0 dollars , what length of chain can be purchased with 7.5 dollars ?
((7.5 * 2.0) / 5.0)
3
0false
Nancy has saved 4900.0 cents from selling lemonade .
How many dollars does Nancy have ?
Nancy has saved 4900.0 cents from selling lemonade . How many dollars does Nancy have ?
(4900.0 / 100.0)
49
1true
Nancy has saved 4900.0 cents from selling lemonade .
How many dollars does Nancy have ?
Nancy has saved 4900.0 cents from selling lemonade . How many dollars does Nancy have ?
(4900.0 * 100.0)
490,000
0false
Paul made 3.0 dollars mowing lawns and 3.0 dollars weed eating . If he only spent 3.0 dollar a week ,
how long would the money last him ?
Paul made 3.0 dollars mowing lawns and 3.0 dollars weed eating . If he only spent 3.0 dollar a week , how long would the money last him ?
((3.0 + 3.0) / 3.0)
2
1true
Paul made 3.0 dollars mowing lawns and 3.0 dollars weed eating . If he only spent 3.0 dollar a week ,
how long would the money last him ?
Paul made 3.0 dollars mowing lawns and 3.0 dollars weed eating . If he only spent 3.0 dollar a week , how long would the money last him ?
((3.0 - 3.0) * 3.0)
0
0false
Wendy 's old washing machine could only wash 8.0 pieces of clothing at a time . If she had to wash 39.0 shirts and 33.0 sweaters
how many loads would she have to do ?
Wendy 's old washing machine could only wash 8.0 pieces of clothing at a time . If she had to wash 39.0 shirts and 33.0 sweaters how many loads would she have to do ?
((39.0 + 33.0) / 8.0)
9
1true
Wendy 's old washing machine could only wash 8.0 pieces of clothing at a time . If she had to wash 39.0 shirts and 33.0 sweaters
how many loads would she have to do ?
Wendy 's old washing machine could only wash 8.0 pieces of clothing at a time . If she had to wash 39.0 shirts and 33.0 sweaters how many loads would she have to do ?
((39.0 - 33.0) * 8.0)
48
0false
In fourth grade there were 33.0 students at the start of the year . During the year 18.0 students left and 14.0 new students came to school .
How many students were in fourth grade at the end ?
In fourth grade there were 33.0 students at the start of the year . During the year 18.0 students left and 14.0 new students came to school . How many students were in fourth grade at the end ?
((33.0 + 14.0) - 18.0)
29
1true
In fourth grade there were 33.0 students at the start of the year . During the year 18.0 students left and 14.0 new students came to school .
How many students were in fourth grade at the end ?
In fourth grade there were 33.0 students at the start of the year . During the year 18.0 students left and 14.0 new students came to school . How many students were in fourth grade at the end ?
((33.0 - 14.0) + 18.0)
37
0false
A pet store had 78.0 puppies . In one day they sold 30.0 of them and put the rest into cages with 8.0 in each cage .
How many cages did they use ?
A pet store had 78.0 puppies . In one day they sold 30.0 of them and put the rest into cages with 8.0 in each cage . How many cages did they use ?
((78.0 - 30.0) / 8.0)
6
1true
A pet store had 78.0 puppies . In one day they sold 30.0 of them and put the rest into cages with 8.0 in each cage .
How many cages did they use ?
A pet store had 78.0 puppies . In one day they sold 30.0 of them and put the rest into cages with 8.0 in each cage . How many cages did they use ?
((78.0 + 30.0) * 8.0)
864
0false
My car gets 20.0 miles per gallon of gas .
How many miles can I drive on number1 gallons of gas ?
My car gets 20.0 miles per gallon of gas . How many miles can I drive on 5.0 gallons of gas ?
(20.0 * 5.0)
100
1true
My car gets 20.0 miles per gallon of gas .
How many miles can I drive on number1 gallons of gas ?
My car gets 20.0 miles per gallon of gas . How many miles can I drive on 5.0 gallons of gas ?
(20.0 / 5.0)
4
0false
You have collected 7.0 crickets .
How many more crickets do you need to collect to have number1 crickets ?
You have collected 7.0 crickets . How many more crickets do you need to collect to have 11.0 crickets ?
(11.0 - 7.0)
4
1true
You have collected 7.0 crickets .
How many more crickets do you need to collect to have number1 crickets ?
You have collected 7.0 crickets . How many more crickets do you need to collect to have 11.0 crickets ?
(11.0 + 7.0)
18
0false
Lukas averages 12.0 points per game in basketball .
How many points would he score in number1 games ?
Lukas averages 12.0 points per game in basketball . How many points would he score in 5.0 games ?
(12.0 * 5.0)
60
1true
Lukas averages 12.0 points per game in basketball .
How many points would he score in number1 games ?
Lukas averages 12.0 points per game in basketball . How many points would he score in 5.0 games ?
(12.0 / 5.0)
2.4
0false
A restaurant sold 8.0 pies every day for a week .
How many pies were sold during the week ?
A restaurant sold 8.0 pies every day for a week . How many pies were sold during the week ?
(8.0 * 7.0)
56
1true
A restaurant sold 8.0 pies every day for a week .
How many pies were sold during the week ?
A restaurant sold 8.0 pies every day for a week . How many pies were sold during the week ?
(8.0 / 7.0)
1.142857
0false
Kyle jogged 1.125 laps in P.E . class and 2.125 laps during track practice .
How many laps did Kyle jog in all ?
Kyle jogged 1.125 laps in P.E . class and 2.125 laps during track practice . How many laps did Kyle jog in all ?
(1.125 + 2.125)
3.25
1true
Kyle jogged 1.125 laps in P.E . class and 2.125 laps during track practice .
How many laps did Kyle jog in all ?
Kyle jogged 1.125 laps in P.E . class and 2.125 laps during track practice . How many laps did Kyle jog in all ?
(1.125 - 2.125)
-1
0false
Sara grew 4.0 onions , Sally grew 5.0 onions , and Fred grew 9.0 onions .
How many onions did they grow in all ?
Sara grew 4.0 onions , Sally grew 5.0 onions , and Fred grew 9.0 onions . How many onions did they grow in all ?
((4.0 + 5.0) + 9.0)
18
1true
Sara grew 4.0 onions , Sally grew 5.0 onions , and Fred grew 9.0 onions .
How many onions did they grow in all ?
Sara grew 4.0 onions , Sally grew 5.0 onions , and Fred grew 9.0 onions . How many onions did they grow in all ?
((4.0 - 5.0) - 9.0)
-10
0false
While shopping for music online , Faye bought 2.0 country albums and 3.0 pop albums . Each album came with a lyric sheet and had 6.0 songs .
How many songs did Faye buy total ?
While shopping for music online , Faye bought 2.0 country albums and 3.0 pop albums . Each album came with a lyric sheet and had 6.0 songs . How many songs did Faye buy total ?
(6.0 * (2.0 + 3.0))
30
1true
While shopping for music online , Faye bought 2.0 country albums and 3.0 pop albums . Each album came with a lyric sheet and had 6.0 songs .
How many songs did Faye buy total ?
While shopping for music online , Faye bought 2.0 country albums and 3.0 pop albums . Each album came with a lyric sheet and had 6.0 songs . How many songs did Faye buy total ?
(6.0 / (2.0 - 3.0))
-6
0false
Irwin 's family went on a camping trip in the mountains . On the first day , they hiked from their car to the campsite . First , they hiked 0.2 mile from the car to a stream , and 0.4 mile from the stream to a meadow . Then they hiked 0.1 mile from the meadow to the campsite .
How many miles did Irwin 's family hike in all ?
Irwin 's family went on a camping trip in the mountains . On the first day , they hiked from their car to the campsite . First , they hiked 0.2 mile from the car to a stream , and 0.4 mile from the stream to a meadow . Then they hiked 0.1 mile from the meadow to the campsite . How many miles did Irwin 's family hike in...
((0.2 + 0.4) + 0.1)
0.7
1true
Irwin 's family went on a camping trip in the mountains . On the first day , they hiked from their car to the campsite . First , they hiked 0.2 mile from the car to a stream , and 0.4 mile from the stream to a meadow . Then they hiked 0.1 mile from the meadow to the campsite .
How many miles did Irwin 's family hike in all ?
Irwin 's family went on a camping trip in the mountains . On the first day , they hiked from their car to the campsite . First , they hiked 0.2 mile from the car to a stream , and 0.4 mile from the stream to a meadow . Then they hiked 0.1 mile from the meadow to the campsite . How many miles did Irwin 's family hike in...
((0.2 - 0.4) - 0.1)
-0.3
0false
In a video game , each enemy defeated gives you 7.0 points . If a level has 11.0 enemies total and you destroy all but 8.0 of them ,
how many points would you earn ?
In a video game , each enemy defeated gives you 7.0 points . If a level has 11.0 enemies total and you destroy all but 8.0 of them , how many points would you earn ?
(7.0 * (11.0 - 8.0))
21
1true
In a video game , each enemy defeated gives you 7.0 points . If a level has 11.0 enemies total and you destroy all but 8.0 of them ,
how many points would you earn ?
In a video game , each enemy defeated gives you 7.0 points . If a level has 11.0 enemies total and you destroy all but 8.0 of them , how many points would you earn ?
(7.0 / (11.0 + 8.0))
0.368421
0false
Jonah added 0.3 cup of yellow raisins and 0.4 cup of black raisins to a batch of trail mix .
How many cups of raisins did Jonah add in all ?
Jonah added 0.3 cup of yellow raisins and 0.4 cup of black raisins to a batch of trail mix . How many cups of raisins did Jonah add in all ?
(0.3 + 0.4)
0.7
1true
Jonah added 0.3 cup of yellow raisins and 0.4 cup of black raisins to a batch of trail mix .
How many cups of raisins did Jonah add in all ?
Jonah added 0.3 cup of yellow raisins and 0.4 cup of black raisins to a batch of trail mix . How many cups of raisins did Jonah add in all ?
(0.3 - 0.4)
-0.1
0false
Mrs. Hilt uses 2.0 ounces of detergent to wash a pound of clothes .
How many ounces of soap will Mrs. Hilt use to wash number1 pounds of clothes ?
Mrs. Hilt uses 2.0 ounces of detergent to wash a pound of clothes . How many ounces of soap will Mrs. Hilt use to wash 9.0 pounds of clothes ?
(2.0 * 9.0)
18
1true
Mrs. Hilt uses 2.0 ounces of detergent to wash a pound of clothes .
How many ounces of soap will Mrs. Hilt use to wash number1 pounds of clothes ?
Mrs. Hilt uses 2.0 ounces of detergent to wash a pound of clothes . How many ounces of soap will Mrs. Hilt use to wash 9.0 pounds of clothes ?
(2.0 / 9.0)
0.222222
0false
April 's discount flowers was having a sale where each flower was 3.0 dollars . If Robin bought 5.0 roses and 4.0 daisies ,
how much did she spend ?
April 's discount flowers was having a sale where each flower was 3.0 dollars . If Robin bought 5.0 roses and 4.0 daisies , how much did she spend ?
(3.0 * (5.0 + 4.0))
27
1true
April 's discount flowers was having a sale where each flower was 3.0 dollars . If Robin bought 5.0 roses and 4.0 daisies ,
how much did she spend ?
April 's discount flowers was having a sale where each flower was 3.0 dollars . If Robin bought 5.0 roses and 4.0 daisies , how much did she spend ?
(3.0 / (5.0 - 4.0))
3
0false
Brenda wants to split a collection of erasers into groups of 90.0 . Brenda has 270.0 erasers .
How many groups will be created ?
Brenda wants to split a collection of erasers into groups of 90.0 . Brenda has 270.0 erasers . How many groups will be created ?
(270.0 / 90.0)
3
1true
Brenda wants to split a collection of erasers into groups of 90.0 . Brenda has 270.0 erasers .
How many groups will be created ?
Brenda wants to split a collection of erasers into groups of 90.0 . Brenda has 270.0 erasers . How many groups will be created ?
(270.0 * 90.0)
24,300
0false
Alyssa 's dog had puppies . She gave 7.0 to her friends . She now has 5.0 puppies .
How many puppies did she have to start with ?
Alyssa 's dog had puppies . She gave 7.0 to her friends . She now has 5.0 puppies . How many puppies did she have to start with ?
(7.0 + 5.0)
12
1true
Alyssa 's dog had puppies . She gave 7.0 to her friends . She now has 5.0 puppies .
How many puppies did she have to start with ?
Alyssa 's dog had puppies . She gave 7.0 to her friends . She now has 5.0 puppies . How many puppies did she have to start with ?
(7.0 - 5.0)
2
0false
We ordered 21.0 pizzas . Each pizza has 8.0 slices .
How many slices of pizza are there altogether ?
We ordered 21.0 pizzas . Each pizza has 8.0 slices . How many slices of pizza are there altogether ?
(21.0 * 8.0)
168
1true
We ordered 21.0 pizzas . Each pizza has 8.0 slices .
How many slices of pizza are there altogether ?
We ordered 21.0 pizzas . Each pizza has 8.0 slices . How many slices of pizza are there altogether ?
(21.0 / 8.0)
2.625
0false
A car company produced 3884.0 cars in North America and 2871.0 cars in Europe .
How many cars is that in all ?
A car company produced 3884.0 cars in North America and 2871.0 cars in Europe . How many cars is that in all ?
(3884.0 + 2871.0)
6,755
1true
A car company produced 3884.0 cars in North America and 2871.0 cars in Europe .
How many cars is that in all ?
A car company produced 3884.0 cars in North America and 2871.0 cars in Europe . How many cars is that in all ?
(3884.0 - 2871.0)
1,013
0false
The school is planning a field trip . There are 45.0 students and 9.0 seats on each school bus .
How many buses are needed to take the trip ?
The school is planning a field trip . There are 45.0 students and 9.0 seats on each school bus . How many buses are needed to take the trip ?
(45.0 / 9.0)
5
1true
The school is planning a field trip . There are 45.0 students and 9.0 seats on each school bus .
How many buses are needed to take the trip ?
The school is planning a field trip . There are 45.0 students and 9.0 seats on each school bus . How many buses are needed to take the trip ?
(45.0 * 9.0)
405
0false
Sam got 9.0 pennies for washing clothes , and 7.0 quarters for mowing lawns .
How much money does Sam have ?
Sam got 9.0 pennies for washing clothes , and 7.0 quarters for mowing lawns . How much money does Sam have ?
((9.0 * 0.01) + (7.0 * 0.25))
1.84
1true
Sam got 9.0 pennies for washing clothes , and 7.0 quarters for mowing lawns .
How much money does Sam have ?
Sam got 9.0 pennies for washing clothes , and 7.0 quarters for mowing lawns . How much money does Sam have ?
((9.0 / 0.01) - (7.0 / 0.25))
872
0false
Tim has 44.0 books . Sam has 52.0 books .
How many books do they have together ?
Tim has 44.0 books . Sam has 52.0 books . How many books do they have together ?
(44.0 + 52.0)
96
1true
Tim has 44.0 books . Sam has 52.0 books .
How many books do they have together ?
Tim has 44.0 books . Sam has 52.0 books . How many books do they have together ?
(44.0 - 52.0)
-8
0false
The library is divided into different sections for different type of books . The science fiction section has 8.0 books . If each book has 478.0 pages ,
how many pages do all the books have in total ?
The library is divided into different sections for different type of books . The science fiction section has 8.0 books . If each book has 478.0 pages , how many pages do all the books have in total ?
(8.0 * 478.0)
3,824
1true
The library is divided into different sections for different type of books . The science fiction section has 8.0 books . If each book has 478.0 pages ,
how many pages do all the books have in total ?
The library is divided into different sections for different type of books . The science fiction section has 8.0 books . If each book has 478.0 pages , how many pages do all the books have in total ?
(8.0 / 478.0)
0.016736
0false
Warren has 252.0 guests coming to his party . Each table will hold 4.0 guests .
How many tables will he need ?
Warren has 252.0 guests coming to his party . Each table will hold 4.0 guests . How many tables will he need ?
(252.0 / 4.0)
63
1true
Warren has 252.0 guests coming to his party . Each table will hold 4.0 guests .
How many tables will he need ?
Warren has 252.0 guests coming to his party . Each table will hold 4.0 guests . How many tables will he need ?
(252.0 * 4.0)
1,008
0false
Jason had 49.0 quarters in his bank . His dad gave him 25.0 quarters .
How many quarters does he have now ?
Jason had 49.0 quarters in his bank . His dad gave him 25.0 quarters . How many quarters does he have now ?
(49.0 + 25.0)
74
1true
Jason had 49.0 quarters in his bank . His dad gave him 25.0 quarters .
How many quarters does he have now ?
Jason had 49.0 quarters in his bank . His dad gave him 25.0 quarters . How many quarters does he have now ?
(49.0 - 25.0)
24
0false
There are 4.0 marbles . 7.0 marbles more are added .
How many are there total ?
There are 4.0 marbles . 7.0 marbles more are added . How many are there total ?
(4.0 + 7.0)
11
1true
There are 4.0 marbles . 7.0 marbles more are added .
How many are there total ?
There are 4.0 marbles . 7.0 marbles more are added . How many are there total ?
(4.0 - 7.0)
-3
0false
Tom found 15.0 seashells and Fred found 43.0 seashells on the beach . When they cleaned them , they discovered that 29.0 were cracked .
How many seashells did they find together ?
Tom found 15.0 seashells and Fred found 43.0 seashells on the beach . When they cleaned them , they discovered that 29.0 were cracked . How many seashells did they find together ?
(15.0 + 43.0)
58
1true
Tom found 15.0 seashells and Fred found 43.0 seashells on the beach . When they cleaned them , they discovered that 29.0 were cracked .
How many seashells did they find together ?
Tom found 15.0 seashells and Fred found 43.0 seashells on the beach . When they cleaned them , they discovered that 29.0 were cracked . How many seashells did they find together ?
(15.0 - 43.0)
-28
0false
Jessica weighs 49.0 pounds . Thomas weighs 44.0 pounds .
How much heavier is Jessica than Thomas ?
Jessica weighs 49.0 pounds . Thomas weighs 44.0 pounds . How much heavier is Jessica than Thomas ?
(49.0 - 44.0)
5
1true
Jessica weighs 49.0 pounds . Thomas weighs 44.0 pounds .
How much heavier is Jessica than Thomas ?
Jessica weighs 49.0 pounds . Thomas weighs 44.0 pounds . How much heavier is Jessica than Thomas ?
(49.0 + 44.0)
93
0false
At a restaurant each adult meal costs $ 3.0 and kids eat free . If a group of 12.0 people came in and 7.0 were kids ,
how much would it cost for the group to eat ?
At a restaurant each adult meal costs $ 3.0 and kids eat free . If a group of 12.0 people came in and 7.0 were kids , how much would it cost for the group to eat ?
(3.0 * (12.0 - 7.0))
15
1true
At a restaurant each adult meal costs $ 3.0 and kids eat free . If a group of 12.0 people came in and 7.0 were kids ,
how much would it cost for the group to eat ?
At a restaurant each adult meal costs $ 3.0 and kids eat free . If a group of 12.0 people came in and 7.0 were kids , how much would it cost for the group to eat ?
(3.0 / (12.0 + 7.0))
0.157895
0false
Lucy went to the grocery store . She bought 12.0 packs of cookies and 16.0 packs of noodles .
How many packs of groceries did she buy in all ?
Lucy went to the grocery store . She bought 12.0 packs of cookies and 16.0 packs of noodles . How many packs of groceries did she buy in all ?
(12.0 + 16.0)
28
1true
Lucy went to the grocery store . She bought 12.0 packs of cookies and 16.0 packs of noodles .
How many packs of groceries did she buy in all ?
Lucy went to the grocery store . She bought 12.0 packs of cookies and 16.0 packs of noodles . How many packs of groceries did she buy in all ?
(12.0 - 16.0)
-4
0false
Last year at Newberg 's airport , 14507.0 passengers landed on time . Unfortunately , 213.0 passengers landed late . In all ,
how many passengers landed in Newberg last year ?
Last year at Newberg 's airport , 14507.0 passengers landed on time . Unfortunately , 213.0 passengers landed late . In all , how many passengers landed in Newberg last year ?
(14507.0 + 213.0)
14,720
1true
Last year at Newberg 's airport , 14507.0 passengers landed on time . Unfortunately , 213.0 passengers landed late . In all ,
how many passengers landed in Newberg last year ?
Last year at Newberg 's airport , 14507.0 passengers landed on time . Unfortunately , 213.0 passengers landed late . In all , how many passengers landed in Newberg last year ?
(14507.0 - 213.0)
14,294
0false
Rupert and Ronald aced their math test . So their mother bought for them a wonderful trampoline yesterday . Ronald jumped 157.0 times on the trampoline . Rupert jumped 86.0 more times than Ronald .
How many times did they jump altogether ?
Rupert and Ronald aced their math test . So their mother bought for them a wonderful trampoline yesterday . Ronald jumped 157.0 times on the trampoline . Rupert jumped 86.0 more times than Ronald . How many times did they jump altogether ?
(157.0 + 86.0)
243
1true
Rupert and Ronald aced their math test . So their mother bought for them a wonderful trampoline yesterday . Ronald jumped 157.0 times on the trampoline . Rupert jumped 86.0 more times than Ronald .
How many times did they jump altogether ?
Rupert and Ronald aced their math test . So their mother bought for them a wonderful trampoline yesterday . Ronald jumped 157.0 times on the trampoline . Rupert jumped 86.0 more times than Ronald . How many times did they jump altogether ?
(157.0 - 86.0)
71
0false
At the fair Kaleb bought 6.0 tickets . After riding the ferris wheel he had 3.0 tickets left . If each ticket cost 9.0 dollars ,
how much money did Kaleb spend riding the ferris wheel ?
At the fair Kaleb bought 6.0 tickets . After riding the ferris wheel he had 3.0 tickets left . If each ticket cost 9.0 dollars , how much money did Kaleb spend riding the ferris wheel ?
(9.0 * (6.0 - 3.0))
27
1true
At the fair Kaleb bought 6.0 tickets . After riding the ferris wheel he had 3.0 tickets left . If each ticket cost 9.0 dollars ,
how much money did Kaleb spend riding the ferris wheel ?
At the fair Kaleb bought 6.0 tickets . After riding the ferris wheel he had 3.0 tickets left . If each ticket cost 9.0 dollars , how much money did Kaleb spend riding the ferris wheel ?
(9.0 / (6.0 + 3.0))
1
0false
Gino has 63.0 popsicle sticks . I have 50.0 popsicle sticks .
What is the sum of our popsicle sticks ?
Gino has 63.0 popsicle sticks . I have 50.0 popsicle sticks . What is the sum of our popsicle sticks ?
(63.0 + 50.0)
113
1true
Gino has 63.0 popsicle sticks . I have 50.0 popsicle sticks .
What is the sum of our popsicle sticks ?
Gino has 63.0 popsicle sticks . I have 50.0 popsicle sticks . What is the sum of our popsicle sticks ?
(63.0 - 50.0)
13
0false
Albert has 35.0 oranges stored in boxes . If there are 7.0 boxes ,
how many oranges must go in each box ?
Albert has 35.0 oranges stored in boxes . If there are 7.0 boxes , how many oranges must go in each box ?
(35.0 / 7.0)
5
1true
Albert has 35.0 oranges stored in boxes . If there are 7.0 boxes ,
how many oranges must go in each box ?
Albert has 35.0 oranges stored in boxes . If there are 7.0 boxes , how many oranges must go in each box ?
(35.0 * 7.0)
245
0false
There are 30.0 candies in Kathy 's candy collection . If the candies are organized into 10.0 groups ,
how big is each group ?
There are 30.0 candies in Kathy 's candy collection . If the candies are organized into 10.0 groups , how big is each group ?
(30.0 / 10.0)
3
1true
There are 30.0 candies in Kathy 's candy collection . If the candies are organized into 10.0 groups ,
how big is each group ?
There are 30.0 candies in Kathy 's candy collection . If the candies are organized into 10.0 groups , how big is each group ?
(30.0 * 10.0)
300
0false
There were 150.0 book shelves . Each book shelf had 15.0 books .
How many books were on the shelves ?
There were 150.0 book shelves . Each book shelf had 15.0 books . How many books were on the shelves ?
(150.0 * 15.0)
2,250
1true
There were 150.0 book shelves . Each book shelf had 15.0 books .
How many books were on the shelves ?
There were 150.0 book shelves . Each book shelf had 15.0 books . How many books were on the shelves ?
(150.0 / 15.0)
10
0false
Luke had 48.0 dollars in January . By March he had spent 11.0 dollars . If he got another 21.0 dollars from his mom ,
how much money would he have ?
Luke had 48.0 dollars in January . By March he had spent 11.0 dollars . If he got another 21.0 dollars from his mom , how much money would he have ?
((48.0 + 21.0) - 11.0)
58
1true
Luke had 48.0 dollars in January . By March he had spent 11.0 dollars . If he got another 21.0 dollars from his mom ,
how much money would he have ?
Luke had 48.0 dollars in January . By March he had spent 11.0 dollars . If he got another 21.0 dollars from his mom , how much money would he have ?
((48.0 - 21.0) + 11.0)
38
0false
A store had 120.0 coloring books in stock . They ended up putting them on sale and getting rid of 39.0 of them . The put the ones they still had onto shelves with 9.0 on each shelf .
How many shelves did they use ?
A store had 120.0 coloring books in stock . They ended up putting them on sale and getting rid of 39.0 of them . The put the ones they still had onto shelves with 9.0 on each shelf . How many shelves did they use ?
((120.0 - 39.0) / 9.0)
9
1true
A store had 120.0 coloring books in stock . They ended up putting them on sale and getting rid of 39.0 of them . The put the ones they still had onto shelves with 9.0 on each shelf .
How many shelves did they use ?
A store had 120.0 coloring books in stock . They ended up putting them on sale and getting rid of 39.0 of them . The put the ones they still had onto shelves with 9.0 on each shelf . How many shelves did they use ?
((120.0 + 39.0) * 9.0)
1,431
0false
Frank had 11.0 dollars . At the store he spent $ 3.0 on a new game . If he got another 14.0 dollars for his allowance ,
how much money does he have now ?
Frank had 11.0 dollars . At the store he spent $ 3.0 on a new game . If he got another 14.0 dollars for his allowance , how much money does he have now ?
((11.0 + 14.0) - 3.0)
22
1true
Frank had 11.0 dollars . At the store he spent $ 3.0 on a new game . If he got another 14.0 dollars for his allowance ,
how much money does he have now ?
Frank had 11.0 dollars . At the store he spent $ 3.0 on a new game . If he got another 14.0 dollars for his allowance , how much money does he have now ?
((11.0 - 14.0) + 3.0)
0
0false
A new building needed 12.0 windows . The builder had already installed 6.0 of them . If it takes 4.0 hours to install each window ,
how long will it take him to install the rest ?
A new building needed 12.0 windows . The builder had already installed 6.0 of them . If it takes 4.0 hours to install each window , how long will it take him to install the rest ?
(4.0 * (12.0 - 6.0))
24
1true
A new building needed 12.0 windows . The builder had already installed 6.0 of them . If it takes 4.0 hours to install each window ,
how long will it take him to install the rest ?
A new building needed 12.0 windows . The builder had already installed 6.0 of them . If it takes 4.0 hours to install each window , how long will it take him to install the rest ?
(4.0 / (12.0 + 6.0))
0.222222
0false
A waiter had 6.0 tables he was waiting on , with 3.0 women and 5.0 men at each table .
How many customers total did the waiter have ?
A waiter had 6.0 tables he was waiting on , with 3.0 women and 5.0 men at each table . How many customers total did the waiter have ?
(6.0 * (3.0 + 5.0))
48
1true
A waiter had 6.0 tables he was waiting on , with 3.0 women and 5.0 men at each table .
How many customers total did the waiter have ?
A waiter had 6.0 tables he was waiting on , with 3.0 women and 5.0 men at each table . How many customers total did the waiter have ?
(6.0 / (3.0 - 5.0))
-3
0false
Uncle Dave bought 143.0 ice cream sandwiches . If he wants to give them to his 11.0 hungry nieces ,
how many can each niece get ?
Uncle Dave bought 143.0 ice cream sandwiches . If he wants to give them to his 11.0 hungry nieces , how many can each niece get ?
(143.0 / 11.0)
13
1true
Uncle Dave bought 143.0 ice cream sandwiches . If he wants to give them to his 11.0 hungry nieces ,
how many can each niece get ?
Uncle Dave bought 143.0 ice cream sandwiches . If he wants to give them to his 11.0 hungry nieces , how many can each niece get ?
(143.0 * 11.0)
1,573
0false
Connie had some marbles . She gave 73.0 to Juan . Now she has 70.0 marbles left .
How many did she have to start with ?
Connie had some marbles . She gave 73.0 to Juan . Now she has 70.0 marbles left . How many did she have to start with ?
(73.0 + 70.0)
143
1true
Connie had some marbles . She gave 73.0 to Juan . Now she has 70.0 marbles left .
How many did she have to start with ?
Connie had some marbles . She gave 73.0 to Juan . Now she has 70.0 marbles left . How many did she have to start with ?
(73.0 - 70.0)
3
0false
Joe had 50.0 toy cars . If he gets 12.0 more cars ,
how many cars will he have then ?
Joe had 50.0 toy cars . If he gets 12.0 more cars , how many cars will he have then ?
(50.0 + 12.0)
62
1true
Joe had 50.0 toy cars . If he gets 12.0 more cars ,
how many cars will he have then ?
Joe had 50.0 toy cars . If he gets 12.0 more cars , how many cars will he have then ?
(50.0 - 12.0)
38
0false
Sally picked 7.0 lemons and Mary picked 9.0 lemons from the lemon tree .
How many lemons were picked in total ?
Sally picked 7.0 lemons and Mary picked 9.0 lemons from the lemon tree . How many lemons were picked in total ?
(7.0 + 9.0)
16
1true
Sally picked 7.0 lemons and Mary picked 9.0 lemons from the lemon tree .
How many lemons were picked in total ?
Sally picked 7.0 lemons and Mary picked 9.0 lemons from the lemon tree . How many lemons were picked in total ?
(7.0 - 9.0)
-2
0false