mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-28 17:29:39 +00:00
8 lines
No EOL
1.4 KiB
JSON
8 lines
No EOL
1.4 KiB
JSON
{
|
|
"question": "The Easter egg hunt team hid 100 eggs. The Smith twins each found 30 eggs. All the other eggs except 10 were found by their friends. How many eggs did the friends find?",
|
|
"answer": "The Smith twins found, 30 * 2 = <<30*2=60>>60 eggs.\nThe number that remained hidden was 100 - 60 = <<100-60=40>>40 eggs\nSince 10 eggs were not found, this means the friends found 40 - 10 = 30 eggs\n#### 30",
|
|
"id_orig": 1025,
|
|
"id_shuffled": 81,
|
|
"question_annotated": "The {event} team hid {total} {item}. The {family} twins each found {n} {item}. All the other {item} except {m} were found by their friends. How many {item} did the friends find?\n\n#init:\n- event = sample([\"Halloween candy hunt\", \"Treasure hunt\", \"Scavenger hunt\", \"Charity fundraiser\"])\n- item = sample([\"eggs\", \"treats\", \"toys\", \"coins\", \"tokens\", \"balls\", \"candies\", \"goodies\"])\n- family = sample([\"Johnson\", \"Williams\", \"Mirzakhani\", \"Lopez\", \"Garcia\", \"Lee\", ])\n- $total = range(50, 201, 10)\n- $n = range(10, 51)\n- $m = range(5, 21)\n\n#conditions:\n- 2*n + m < total\n\n#answer: total - 2*n - m",
|
|
"answer_annotated": "The {family} twins found, {n} * 2 = <<{n}*2={2*n}>>{2*n} {item}.\nThe number that remained hidden was {total} - {2*n} = <<{total}-{2*n}={total-2*n}>>{total-2*n} {item}\nSince {m} {item} were not found, this means the friends found {total-2*n} - {m} = {total - 2*n - m} {item}.\n#### {total - 2*n - m}"
|
|
} |