mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-28 17:29:39 +00:00
8 lines
No EOL
1.8 KiB
JSON
8 lines
No EOL
1.8 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,Easter egg hunt} team hid {total,100} {item,egg}s. The {family,Smith} twins each found {n,30} {item,egg}s. All the remaining {item,egg}s except {m,10} were found by their friends. What percentage of the initially hidden {item,egg}s did the friends find?\n\n#init:\n- event = sample([\"Halloween candy hunt\", \"Treasure hunt\", \"Scavenger hunt\", \"Charity fundraiser\"])\n- item = sample([\"candy\", \"toy\", \"coin\", \"token\", \"ball\"])\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- is_int((total - 2*n - m) / total * 100)\n\n#answer: int((total - 2*n - m)/total*100)",
|
|
"answer_annotated": "The {family} twins found, {n} * 2 = <<{n}*2={2*n}>>{2*n} {item}s.\nThe number that remained hidden was {total} - {2*n} = <<{total}-{2*n}={total-2*n}>>{total-2*n} {item}s.\nSince {m} {item}s were not found, this means the friends found {total-2*n} - {m} = {total - 2*n - m} {item}s.\nTo find the percentage, we calculate {total - 2*n - m} / {total} = {(total - 2*n - m) / total} and then multiply by 100 to get {int((total - 2*n - m) / total * 100)}. So the friends found {int((total - 2*n - m) / total * 100)}% of the hidden {item}s.\n#### {int((total - 2*n - m)/total*100)}"
|
|
} |