mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-28 17:29:39 +00:00
8 lines
No EOL
2.4 KiB
JSON
8 lines
No EOL
2.4 KiB
JSON
{
|
|
"question": "Apple High School is holding graduation in their Fine Arts Center this year which has space for 6000 people. After accounting for 950 seats for graduates and 300 seats for faculty attending, how many tickets would each graduate receive to give to their friends and family if the tickets are split equally?",
|
|
"answer": "Add graduate and faculty seats together. 950 + 300 = <<950+300=1250>>1250 seats for faculty and graduates\nMinus seats for faculty and graduates from total seats allowed. 6000 - 1250 = <<6000-1250=4750>>4750 remaining seats.\nDivide amount of graduates by remaining seats. 4750/950 = <<4750/950=5>>5 tickets\n#### 5",
|
|
"id_orig": 1031,
|
|
"id_shuffled": 46,
|
|
"question_annotated": "{school,Apple High School} is holding graduation in its {venue,Fine Arts Center} this year which has space for {total,6000} people. After accounting for {graduates,950} seats for the graduates, {faculty,300} seats for the faculty attending, and reserving {extra,100} seats for the event's staff, how many tickets would each graduate receive to give to their friends and family if the tickets are split equally?\n\n#init:\n- school = sample([\"Oakwood High School\", \"Riverside Academy\", \"Sunnyside High\", \"Greenville High School\"])\n- venue = sample([\"Auditorium\", \"Gymnasium\", \"Sports Arena\", \"Convention Center\"])\n- $total = range(3000, 10000, 100)\n- $graduates = range(500, 1500, 50)\n- $faculty = range(100, 500, 50)\n- $extra = range(50, 101, 10)\n\n#conditions:\n- total > graduates + faculty\n- is_int((total - graduates - faculty-extra) / graduates)\n\n#answer: (total - graduates - faculty-extra) // graduates",
|
|
"answer_annotated": "Add graduate and faculty seats together. {graduates} + {faculty} = <<{graduates}+{faculty}={graduates+faculty}>>{graduates+faculty} seats for faculty and graduates\nMinus seats for faculty and graduates from total seats allowed. {total} - {graduates+faculty} = <<{total}-{graduates+faculty}={total-(graduates+faculty)}>>{total-(graduates+faculty)} remaining seats. We also should reduce {extra} reserved seats: {total-(graduates+faculty)} - {extra} = {total-(graduates+faculty) - extra}\nDivide the remaining seats by the number of graduates: {total-(graduates+faculty+extra)}/{graduates} = <<{total-(graduates+faculty+extra)}/{graduates}={(total-(graduates+faculty+extra))//graduates}>>{(total-(graduates+extra+faculty))//graduates} tickets\n#### {(total-(graduates+faculty-extra))//graduates}"
|
|
} |