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
a3378bd95f
commit
ff13dc6825
357 changed files with 2888 additions and 0 deletions
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"question": "It takes Carmen 10 minutes to finish a crossword puzzle and 5 minutes to finish a sudoku puzzle. Over the weekend she solved 3 crossword puzzles and 8 sudoku puzzles. How much time did she spend playing these games?",
|
||||
"answer": "It takes 10 minutes to complete a crossword puzzle and she completed 3 for a total of 10*3 = <<10*3=30>>30 minutes\nIt takes 5 minutes to complete a sudoku puzzle and she completed 8 for a total of 5*8 = <<5*8=40>>40 minutes\nShe spent 30 minutes on crosswords and 40 minutes on sudoku for a total of 30+40 = <<30+40=70>>70 minutes\n#### 70",
|
||||
"id_orig": 220,
|
||||
"id_shuffled": 68,
|
||||
"question_annotated": "It takes {name} {t1} minutes to finish a {game1} and {t2} minutes to finish a {game2}. Over the {period} she solved {n1} {game1}s and {n2} {game2}s. How much time did she spend playing these games?\n\n#init:\n- name = sample(names_female)\n- game1, game2 = sample([\"word puzzle\", \"jigsaw puzzle\", \"chess puzzle\", \"riddle\", \"brain teaser\"], 2)\n- period = sample([\"weekend\", \"vacation\", \"holiday\", \"day off\", \"free time\"])\n- $t1 = range(5, 30)\n- $t2 = range(3, 20)\n- $n1 = range(2, 10)\n- $n2 = range(4, 15)\n\n#conditions:\n- t1 > t2\n\n#answer: t1*n1 + t2*n2",
|
||||
"answer_annotated": "It takes {t1} minutes to complete a {game1} and she completed {n1} for a total of {t1}*{n1} = <<{t1}*{n1}={t1*n1}>>{t1*n1} minutes\nIt takes {t2} minutes to complete a {game2} and she completed {n2} for a total of {t2}*{n2} = <<{t2}*{n2}={t2*n2}>>{t2*n2} minutes\nShe spent {t1*n1} minutes on {game1}s and {t2*n2} minutes on {game2}s for a total of {t1*n1}+{t2*n2} = <<{t1*n1}+{t2*n2}={t1*n1 + t2*n2}>>{t1*n1 + t2*n2} minutes\n#### {t1*n1 + t2*n2}"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue