mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-29 17:35:16 +00:00
Still experimenting
This commit is contained in:
parent
b0e70008ea
commit
b203353751
357 changed files with 2888 additions and 0 deletions
8
reasoning_gym/data/gsm_data/symbolic/0081.json
Normal file
8
reasoning_gym/data/gsm_data/symbolic/0081.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"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,eggs}. The {family,Smith} twins each found {n,30} {item,eggs}. All the other {item,eggs} except {m,10} were found by their friends. How many {item,eggs} 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}"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue