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": "Jaime places eggs on the tray. Each tray can hold 24 eggs. If he has 64 eggs and 2 trays, how many eggs won't he be able to place on the tray?",
|
||||
"answer": "Jaime will be able to place a total of 24 x 2 = <<24*2=48>>48.\nTherefore, there are 64 - 48 = <<64-48=16>>16 eggs that he won't be able to place on the tray.\n#### 16",
|
||||
"id_orig": 491,
|
||||
"id_shuffled": 12,
|
||||
"question_annotated": "{name} places {obj}s on some {surface}s. Each {surface} can hold {x} {obj}s. If he has {n} {obj}s and {k} {surface}s, how many {obj}s won't he be able to place on the {surface}?\n\n#init:\n- name = sample(names_male)\n- obj = sample([\"olive\", \"almond\", \"cookie\", \"cracker\", \"banana\"])\n- surface = sample([\"plate\", \"table\", \"bowl\", \"tray\", \"basket\"])\n- $x = range(20, 51)\n- $k = range(7, 30)\n- $n = range(200, 350)\n\n#conditions:\n- k * x < n\n\n#answer: n - k*x",
|
||||
"answer_annotated": "{name} will be able to place a total of {x} x {k} = <<{x}*{k}={x*k}>>{x*k} {obj}s.\nTherefore, there are {n} - {k*x} = <<{n}-{k*x}={n-k*x}>>{n-k*x} {obj}s that he won't be able to place on the {surface}.\n#### {n-k*x}"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue