mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-29 17:35:16 +00:00
8 lines
No EOL
1 KiB
JSON
8 lines
No EOL
1 KiB
JSON
{
|
|
"question": "Brett is 14 years old. In four years his sister Angela will be three times as old as he is now. How old is Angela right now?",
|
|
"answer": "Four years from now Angela will be 14*3=<<14*3=42>>42.\nRight now Angela is 42-4=<<42-4=38>>38 years old.\n#### 38",
|
|
"id_orig": 496,
|
|
"id_shuffled": 29,
|
|
"question_annotated": "{name1,Brett} is {age1,14} years old. In {years,four} years his {relation_type,sister} {name2,Angela} will be {mult,three} times as old as {name1,Brett} is now. How old is {name2,Angela} right now?\n\n#init:\n- name1 = sample(names_male)\n- name2 = sample(names_female)\n- relation_type = sample(['sister', 'cousin'])\n- $age1 = range(8, 25)\n- $years = range(2, 10)\n- $mult = range(2, 5)\n\n#conditions:\n- age1 * mult - years > 0\n\n#answer: age1 * mult - years",
|
|
"answer_annotated": "{years} years from now {name2} will be {age1}*{mult}=<<{age1}*{mult}={age1*mult}>>{age1*mult}.\nRight now {name2} is {age1*mult}-{years}=<<{age1*mult}-{years}={age1*mult-years}>>{age1*mult-years} years old.\n#### {age1*mult-years}"
|
|
} |