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": "A juggler can juggle 16 balls. Half of the balls are golf balls, and half of the golf balls are blue. How many blue golf balls are there?",
|
|
"answer": "Golf Balls:16/2=<<16/2=8>>8\nBlue Golf Balls:8/2=<<8/2=4>>4 balls\n#### 4",
|
|
"id_orig": 269,
|
|
"id_shuffled": 8,
|
|
"question_annotated": "A juggler can juggle {n} balls. {frac_1} of the balls are {ball_type} balls, and {frac_2} of the {ball_type} balls are {color}. How many {color} {ball_type} balls are there?\n\n#init:\n- ball_type = sample([\"golf\", \"tennis\"])\n- color = sample(colors)\n- $frac_1 = sample(fractions)\n- $frac_2 = sample(fractions)\n- $n = range(20, 1000, 20)\n\n#conditions:\n- is_int(n * frac_1)\n- is_int(n * frac_1 * frac_2)\n\n#answer: int(n * frac_1 * frac_2)",
|
|
"answer_annotated": "{ball_type} balls:{n} * {frac_1}=<<{n}*{frac_1}={n*frac_1}>>{int(n*frac_1)}\n{color} {ball_type} balls:{int(n*frac_1)}*{frac_2}=<<{int(n*frac_1)}*{frac_2}={int(n*frac_1*frac_2)}>>{int(n*frac_1*frac_2)} balls\n#### {int(n*frac_1*frac_2)}"
|
|
} |