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
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"question": "John and Jack have 30 minutes to walk to school together. It takes them 6 minutes to get to the corner where the library is. It takes them another 13 minutes to get to the fire station. How much longer do they have to get to school without being late?",
|
||||
"answer": "John and Jack arrive at the library with 30 - 6 = <<30-6=24>>24 minutes left to reach the fire station.\nThey then arrive at the fire station and have 24 - 13 = <<24-13=11>>11 minutes left to get to school without being late.\n#### 11",
|
||||
"id_orig": 684,
|
||||
"id_shuffled": 14,
|
||||
"question_annotated": "{n1} and {n2} have {t} minutes to walk to the {loc1} together. It takes them {t1} minutes to get to the corner where the {loc2} is. It takes them another {t2} minutes to get to the {loc3}. How much longer do they have to get to {loc1} without being late?\n\n#init:\n- n1, n2 = sample(names, 2)\n- loc1, loc2, loc3 = sample(['cinema', 'mall', 'library', 'park', 'gym', 'bank'], 3)\n- $t1 = range(10, 30)\n- $t2 = range(10, 70)\n- $t = range(50, 140)\n\n#conditions:\n- not divides(t1, 5)\n- not divides(t2, 5)\n- not divides(t, 5)\n- t > t1 + t2\n\n#answer: t - t1 - t2",
|
||||
"answer_annotated": "{n1} and {n2} arrive at the {loc2} with {t} - {t1} = <<{t}-{t1}={t-t1}>>{t-t1} minutes left to reach the {loc1}.\nThey then arrive at the {loc3} and have {t-t1} - {t2} = <<{t-t1}-{t2}={t-t1-t2}>>{t-t1-t2} minutes left to get to {loc1} without being late.\n#### {t-t1-t2}"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue