mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-28 17:29:39 +00:00
8 lines
No EOL
1.9 KiB
JSON
8 lines
No EOL
1.9 KiB
JSON
{
|
|
"question": "The biggest waterslide at Five Flags is 300 feet long, and people slide down at 60 feet/minute. The second biggest waterslide is 240 feet long, but steeper, so people slide down at 80 feet/minute. How much longer does it take to ride the biggest slide compared to the second biggest slide?",
|
|
"answer": "First find the ride length of the biggest slide: 300 feet / 60 feet/minute = <<300/60=5>>5 minutes\nThen find the ride length of the second biggest slide: 240 feet / 80 feet/minute = <<240/80=3>>3 minutes\nThen subtract the ride length of the second longest slide from the longest slide to find the difference: 5 minutes - 3 minutes = <<5-3=2>>2 minutes\n#### 2",
|
|
"id_orig": 1099,
|
|
"id_shuffled": 87,
|
|
"question_annotated": "The biggest waterslide at {park_name,Five Flags} is {l1,300} {unit,feet} long, and people slide down at {s1,60} {unit,feet}/minute. The second biggest waterslide is {l2,240} {unit,feet} long, but steeper, so people slide down at {s2,80} {unit,feet}/minute. How much longer does it take to ride the biggest slide compared to the second biggest slide?\n\n#init:\n- park_name = sample([\"Splash World\", \"Aqua Adventure\", \"Water Wonderland\", \"Neptunes Kingdom\"])\n- unit = sample(['yards', 'meters'])\n- $l1 = range(250, 401, 10)\n- $l2 = range(200, 301, 10)\n- $s1 = range(20, 81, 5)\n- $s2 = range(20, 101, 5)\n\n#conditions:\n- l1 > l2\n- s2 > s1\n- is_int(l1/s1)\n- is_int(l2/s2)\n- l1/s1 > l2/s2\n\n#answer: l1/s1 - l2/s2",
|
|
"answer_annotated": "First find the ride length of the biggest slide: {l1} {unit} / {s1} {unit}/minute = <<{l1}/{s1}={l1//s1}>>{l1//s1} minutes\nThen find the ride length of the second biggest slide: {l2} {unit} / {s2} {unit}/minute = <<{l2}/{s2}={l2//s2}>>{l2//s2} minutes\nThen subtract the ride length of the second longest slide from the longest slide to find the difference: {l1//s1} minutes - {l2//s2} minutes = <<{l1//s1}-{l2//s2}={l1//s1 - l2//s2}>>{l1//s1 - l2//s2} minutes\n#### {l1//s1 - l2//s2}"
|
|
} |