reasoning-gym/reasoning_gym/data/gsm_data/direct_template_symbolic/0012.json
2025-01-30 23:51:31 -06:00

8 lines
No EOL
1.1 KiB
JSON

{
"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}"
}