diff --git "a/all/simuleq.json" "b/all/simuleq.json" new file mode 100644--- /dev/null +++ "b/all/simuleq.json" @@ -0,0 +1,6940 @@ +{ + "Source": "https://aclanthology.org/P14-1026/", + "Categories": [ + { + "Math complexity": 4, + "Language complexity": 7, + "Domain knowledge complexity": 3 + } + ], + "Instances": [ + { + "Input": "The larger of two numbers is 23 less than twice the smaller. The sum of the two numbers is 70. Find the two numbers.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([x-((2.0*y)-23.0),70.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "31" + ], + "split": "train" + }, + { + "Input": "Arthur bought 3 hamburgers and 4 hot dogs for 10 dollars. The next day , he bought 2 hamburgers and 3 hot dogs for 7 dollars. How much does a hot dog cost? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([10.0-((3.0*x)+(4.0*y)),7.0-((2.0*x)+(3.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "The shoe store has twice as many black shoes as it does brown shoes. The total number of shoes is 66. How many brown shoes are there?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2.0*x-(y),66.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": "Nine books are to be bought by a student. Some cost 6 dollars each and the remainder cost 6.50 dollars each. The total amount spent was 56 dollars. How many 6-dollar books were sold? How many 6.50-dollar books were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([56.0-((6.0*x)+(6.5*y)),9.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Tickets for a ballet performance cost 14 dollars for adults and 12 dollars for students. If total receipts from the sale of 605 tickets were 8,390.00 dollars , how many adult tickets were sold? How many student tickets were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([8390.0-((14.0*x)+(12.0*y)),605.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "565" + ], + "split": "train" + }, + { + "Input": "Tony planted a 4 foot tree. The tree grows at a rate of 5 feet every year. How many years will it take to be 29 feet?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([29.0-(4.0+(5.0*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "A garden table and a bench cost 450 dollars combined. The price of the garden table is 2 times the price of the bench. What is the cost of the bench , in dollars? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([450.0-(x+y),2.0*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "150" + ], + "split": "train" + }, + { + "Input": "A furniture dealer has 36 tables. Some tables have 4 legs and some have 3 legs , but she does n't know how many of each kind there are. She has counted 124 legs in total. How many 4 legged tables are there? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([124.0-((4.0*x)+(3.0*y)),36.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "One number is 3 less than twice another. If their sum is 39 , find the numbers. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([39.0-(x+y),(2.0*y)-3.0-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "25" + ], + "split": "train" + }, + { + "Input": "Northwest Molded molds plastic handles which cost 0.60 dollars per handle to mold. The fixed cost to run the molding machine is 7640 dollars per week. If the company sells the handles for 4.60 dollars each , how many handles must be molded and sold weekly to break even? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([7640.0-((4.6*x)-(0.6*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "1910" + ], + "split": "train" + }, + { + "Input": "Two rainstorms occurred in one week in a certain area. In the first storm 30 milliliters of rain fell per hour , and in the second storm 15 milliliters of rain fell per hour. Rain fell that week for a total of 45 hours , for a total rainfall of 975 milliliters. How many hours was the first storm and the second storm. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([975.0-((30.0*x)+(15.0*y)),45.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "train" + }, + { + "Input": "The sum of two numbers is 52 , and their difference is 6. What are the numbers? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([52.0-(x+y),6.0-(x-y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "29" + ], + "split": "train" + }, + { + "Input": "An amusement park sells 2 kinds of tickets. Tickets for children cost 1.50 dollars. Adult tickets cost 4 dollars. On a certain day , 278 people entered the park. On that same day the admission fees collected totaled 792 dollars. How many children were admitted on that day? How many adults were admitted? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([792.0-((1.5*x)+(4.0*y)),278.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "128" + ], + "split": "train" + }, + { + "Input": "In a basketball game , Will scored 26 points , consisting only of 3-point shots and 2-point shots. He made a total of 11 shots. How many 3-point shots did he make? How many 2-point shots did he make? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([26.0-((3.0*x)+(2.0*y)),11.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Flying with the wind , a bird was able to make 150 kilometers per hour. If the wind was 0.5 times as strong and the bird flies against it , it could make only 30 kilometers per hour. Find the velocity of the wind in kilometers per hour. Find the velocity of the bird. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([150.0-(x+y),30.0-(x-(0.5*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "80" + ], + "split": "train" + }, + { + "Input": "The Kings won two less than three times as many games as they lost. They played 82 games. How many wins and losses did the team have? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([82.0-(x+y),(3.0*y)-2.0-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "61" + ], + "split": "train" + }, + { + "Input": "The sum of 2 numbers is 84. One number is 3 times the other. Find the smaller number. Find the larger number.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([84.0-(x+y),3.0*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "17 is 4 less than 8 times a number. Find the number.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([17.0-((8.0*x)-4.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "2.625" + ], + "split": "train" + }, + { + "Input": "Together , Jane and Jill have 32 dolls. Jill has 6 more dolls than Jane does. How many dolls does Jane have? How many does Jill have? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([32.0-(x+y),6.0+x-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "A washer-dryer combination costs 1,200 dollars. If the washer costs 220 dollars more than the dryer , what does the washer cost? How much does the dryer cost? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1200.0-(x+y),220.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "710" + ], + "split": "train" + }, + { + "Input": "An ice skating rink charges 5 dollars for admission and 2.50 dollars to rent skates. Jill can purchase a new pair of skates for 65 dollars. How many times would she need to go the rink to justify buying the skates rather than renting a pair?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([x-(65.0/2.5)],(x))\nprint(answer)" + ], + "Output Answer": [ + "26" + ], + "split": "train" + }, + { + "Input": "You make candles and sell them for 15 dollars each. The material to make up to 20 candles costs 20 dollars. How many candles must you sell to have a profit of 85 dollars?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([(15.0*x)-20.0-(85.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "There are 27 students in an Algebra 1 class. There are 5 fewer girls than boys. How many girls are in the class?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([27.0-(x+y),5.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "In 1 day , a store sold 1.6 as many DVDs as CDs. The total number of DVDs and CDs sold that day was 273. How many DVDs were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([273.0-(x+y),1.6*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "168" + ], + "split": "train" + }, + { + "Input": "Jack collects baseball and football cards. He has 125 cards total. The number of baseball cards he has is five more than three times the number of football cards. How many baseball and football cards does he have? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([125.0-(x+y),5.0+(3.0*y)-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "95" + ], + "split": "train" + }, + { + "Input": "In 1 week , a music store sold 9 guitars for a total of of 3611 dollars. Electric guitars sold for 479 dollars each and acoustic guitars sold for 339 dollars each. How many electric guitars were sold? How many acoustic guitars were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([3611.0-((479.0*x)+(339.0*y)),9.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "In college there are 15 times as many students as professors. If together the students and professors number 40,000 , how many students are there in college? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([x-(15.0*y),40000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "37500" + ], + "split": "train" + }, + { + "Input": "A vendor sold 200 tickets for an upcoming rock concert. Floor seats were 36 dollars and stadium seats were 28 dollars. The vendor sold 6080 dollars in tickets. How many 36-dollar tickets did the vendor sell? How many 28-dollar tickets did the vendor sell? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([6080.0-((36.0*x)+(28.0*y)),200.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "60" + ], + "split": "train" + }, + { + "Input": "A child has 17.55 dollars worth of nickels and dimes in her piggy bank. There are a total of 207 coins. How many nickels does she have? How many dimes does she have?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([17.55-((0.05*x)+(0.1*y)),207.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "train" + }, + { + "Input": "4 pencils and 5 pens cost a total of 2.00 dollars. 3 pencils and 4 pens cost 1.58 dollars. Find the cost of a pencil and a pen in dollars.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2.0-((4.0*x)+(5.0*y)),1.58-((3.0*x)+(4.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "0.1" + ], + "split": "train" + }, + { + "Input": "A 200 seat theater charges 3.00 dollars for adults and 1.50 dollars for children. If all seats were filled and the total ticket income was 510 dollars how many adults and children were in the audience? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([510.0-((3.0*x)+(1.5*y)),200.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "140" + ], + "split": "train" + }, + { + "Input": "One year Walt invested 12,000 dollars. He invested part of the money at 7 % and the rest at 9 %. He made a total of 970 dollars in interest. How much was invested at 7 %? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([970.0-(((7.0*0.01)*x)+((9.0*0.01)*y)),12000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "5500" + ], + "split": "train" + }, + { + "Input": "Max bought 16 pounds of nuts at a party. The total cost was 72 dollars. The peanuts cost 3 dollars per pound and the almounds cost 5 dollars per pound. How many pounds of peanuts did max buy? How many pounds of almounds did Max buy? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([72.0-((3.0*x)+(5.0*y)),16.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "A physician 's assistant measures a child and finds that his height is 41.5 inches. At his last visit to the doctor's office , the child was 38.5 inches tall. How much did the child grow , in inches? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([41.5-38.5-(x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Jackie has coffee that sells for 9 dollars per pound and coffee that sells for 4 dollars per pound. How many pounds of 9 dollars coffee and how many pounds of 4 dollars coffee must be mixed to get 20 pounds of coffee that sells for 8.25 dollars per pound?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([20.0*8.25-((9.0*x)+(4.0*y)),20.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": "The Lakers scored a total of 80 points in a basketball game against the Bulls. The Lakers made a total of 37 baskets , consisting of 2 point baskets and 3 point baskets. How many 2 point baskets did the Lakers make? How many 3 point baskets did the Lakers make? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([80.0-((2.0*x)+(3.0*y)),37.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "31" + ], + "split": "train" + }, + { + "Input": "1 number is 3 less than twice another number. The sum of the 2 numbers is 51. What is the smaller number? What is the larger number?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([51.0-(x+y),(2.0*x)-3.0-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": "A bank teller has 54 5-dollar and 20-dollar bills in her cash drawer. The value of the bills is 780 dollars. How many 5 dollars bills are there?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([780.0-((5.0*x)+(20.0*y)),54.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "train" + }, + { + "Input": "Mario has 5000 pence to invest and decides to invest part of it at 4 % and the rest of it at 6.5 %. If the total interest for the year is 245 pence, how much does Mario has to invest at 4 % rate and how much does she has to invest at 6.5 % rate? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([245.0-(((4.0*0.01)*x)+((6.5*0.01)*y)),5000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "3200" + ], + "split": "train" + }, + { + "Input": "The total cost of a shirt and a sweater is 80.34 dollars. If the price of the shirt is 7.43 dollars less than the sweater , what was the price of the shirt , in dollars? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([80.34-(x+y),y-7.43-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "36.46" + ], + "split": "train" + }, + { + "Input": "The difference between 3 times a number and 1 is the same as twice a number. Find the number.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([2.0*x-((3.0*x)-1.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Best Rentals charges a daily fee plus a mileage fee for renting its cars. Barney was charged 69 dollars for 3 days and 300 miles , while Mary was charged 123 dollars for 5 days and 600 miles. Find the daily fee and find the mileage charge? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([69.0-((3.0*x)+(300.0*y)),123.0-((5.0*x)+(600.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "The school is selling tickets to a performance. They have adult and child tickets. Each adult ticket is 5 dollars and each child ticket is 3 dollars. By the end of the week , there was 178 dollars in sales from 42 tickets sold. How many adult tickets were sold? How many child tickets? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([178.0-((5.0*x)+(3.0*y)),42.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "26" + ], + "split": "train" + }, + { + "Input": "Two mechanics worked on a car. The first mechanic charged 45 dollars per hour , and the second mechanic charged 85 dollars per hour. The mechanics worked for a combined total of 20 hours , and together they charged a total of 1100 dollars. How long did the first mechanic and second mechanic work? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1100.0-((45.0*x)+(85.0*y)),20.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "A truck and trailer together weigh 7,000 pounds. The trailer weighs 200 pounds less than 0.5 as much as the truck. Find the truck 's weight. Find the trailer 's weight. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([7000.0-(x+y),(0.5*x)-200.0-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "4800" + ], + "split": "train" + }, + { + "Input": "A manufacturer produces two models of the same toy , Model A and Model B. Model A takes 4 hours to produce and costs 8 dollars each. Model B takes 3 hours to produce and costs 7 dollars each. If the manufacturer allots a total of 5800 hours and 12,600 dollars for production each week , how many of each model will be produced? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([5800.0-((4.0*x)+(3.0*y)),12600.0-((8.0*x)+(7.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "700" + ], + "split": "train" + }, + { + "Input": "During a sale an automobile dealer sold 69 cars and trucks. If she sold 27 more cars than trucks how many trucks did she sell?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([69.0-(x+y),x-27.0-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "21" + ], + "split": "train" + }, + { + "Input": "The Booster Club voted on where they would go for their annual trip. A majority of the club voted to go to a baseball game. They bought 29 tickets. Some of the tickets cost 7 dollars per ticket and some cost 9 dollars per ticket. All of the tickets cost 225 dollars. How many 7-dollar tickets did they buy? How many 9-dollar tickets did they buy? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([225.0-((7.0*x)+(9.0*y)),29.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": "Latoya purchased a prepaid phone card for 30 dollars. Long distance calls cost 16 cents a minute using this card. Latoya used her card only once to make a long distance call. If the remaining credit on her card is 26.48 dollars , how many minutes did her call last? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([30.0-26.48-(16*.01*x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": "To buy both a new car and a new house , Tina sought two loans totaling 318,338 dollars. The simple interest rate on the first loan was 2.4 % , while the simple interest rate on the second loan was 4.7 %. At the end of the first year , Tina paid a combined interest payment of 14,761.81 dollars. What were the amounts of the two loans? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([14761.81-(((2.4*0.01)*x)+((4.7*0.01)*y)),318338.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "8695.65" + ], + "split": "train" + }, + { + "Input": "The product of 10 and a number is the same as 36 less twice that same number. Find the number.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([(2.0*x)-36.0-(10.0*x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "-4.5" + ], + "split": "train" + }, + { + "Input": "A chemist has two acid solutions. One solution is 20 % pure acid and the other is 60 % pure acid. How much of 20 % pure acid and 60 % pure acid is needed to produce 80 square-centimeters of a solution that is 45 % pure acid?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(45.0*0.01)*80.0-(((20.0*0.01)*x)+((60.0*0.01)*y)),80.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "Suppose you invested 10,000 dollars , part at 6 % annual interest and the rest at 9 % annual interest. If you received 684 dollars in interest after one year , how much did you invest at 6 % annual interest and at 9 % annual interest? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([684.0-((6*.01*x)+(9*.01*y)),10000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "7200" + ], + "split": "train" + }, + { + "Input": "Sunshine Car Rentals rents a basic car at a daily rate of 17.99 dollars plus 0.18 per mile. City Rentals rents a basic car at 18.95 dollars plus 0.16 per mile. For what mileage is the cost the same? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([18.95+(0.16*x)-(17.99+(0.18*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "48" + ], + "split": "train" + }, + { + "Input": "The sum of the numbers of boys and girls in a class is 36. If twice the number of girls exceeds the number of boys by 12 , find the number of girls in the class. Find the number of boys. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([12.0+x-(2.0*y),36.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "Find two numbers whose sum is 14 if one number is 3 times as large as the other number.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([14.0-(x+y),3.0*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "3.5" + ], + "split": "train" + }, + { + "Input": "The admission fee at a small fair is 1.50 dollars for children and 4.00 dollars for adults. On a certain day , 2200 people enter the fair and 5050 dollars is collected. How many children and adults attended? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([5050.0-((1.5*x)+(4.0*y)),2200.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "1500" + ], + "split": "train" + }, + { + "Input": "A direct flight on delta air lines from Atlanta to Paris is 4000 miles and takes approximately 8 hours going East and 10 hours going West. Although the plane averages the same airspeed , there is a headwind while traveling East , resulting in a different air speeds. What is the average air speed of the plane in miles per hour and the average wind speed? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([4000.0-((x+y)*8.0),4000.0-((x-y)*10.0)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "450" + ], + "split": "train" + }, + { + "Input": "2 automobiles start out from two points 600 kilometers apart and travel toward each other.The automobile from the east travels at 10 kilometers faster than the automobile from the west. If they meet after 5 hours , what is the average speed of each automobile? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([600.0-((5.0*x)+(5.0*y)),10.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "55" + ], + "split": "train" + }, + { + "Input": "Your science test is worth 100 points and contains 38 questions. There are two-point and five-point questions on the test. How many two-point questions and five-point questions are on the test?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([100.0-((2.0*x)+(5.0*y)),38.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "Lisa invested 8000 dollars , part at 4 % and the rest at 5 % per year. How much did she invest at 4 % and 5 % if her total return per year on the investments was 380 dollars? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([380.0-(((4.0*0.01)*x)+((5.0*0.01)*y)),8000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "2000" + ], + "split": "train" + }, + { + "Input": "6 ducks and 5 pigs cost 213 dollars , while 2 ducks and 9 pigs cost 269 dollars. Find the cost of a duck and a pig. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([213.0-((6.0*x)+(5.0*y)),269.0-((2.0*x)+(9.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "The sum of two numbers is 73. The second is 7 more than 5 times the first. What is the first number and what is the second one?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([73.0-(x+y),(5.0*x)+7.0-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "A small publishing company is planning to publish a new book. The production costs will include one-time fixed costs and variable costs. The one-time fixed costs will amount to 35,630 dollars. The variable costs will be 11.50 dollars per book. The publisher will sell the finished product to bookstores at a price of 20.25 dollars per book. How many books must the publisher print and sell so that the production costs will equal the money obtained from sales? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([35630.0-((20.25*x)-(11.5*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "4072" + ], + "split": "train" + }, + { + "Input": "For the first performance of a play in a community theater , 50 reserved-seat tickets and 80 general-admission tickets were sold. The total receipts were 980 dollars. For the second performance , 60 reserved-seat tickets and 90 general-admission tickets were sold. The total receipts were 1140 dollars. Find the price of a reserved-set ticket , in dollars. Find the price of a general-admission ticket. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([980.0-((50.0*x)+(80.0*y)),1140.0-((60.0*x)+(90.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "At a movie theater , tickets cost 9.50 dollars for adults and 6.50 dollars for children. A group of 7 moviegoers pays a total of 54.50 dollars. How many adults and children were in the group? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([54.5-((9.5*x)+(6.5*y)),7.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "The sum of two numbers is 62. The greater number exceeds twice the smaller number by 5. What are the two numbers?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([62.0-(x+y),(2.0*x)+5.0-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "19" + ], + "split": "train" + }, + { + "Input": "The sum of two numbers is 18. If twice the smaller number is 6 more than the larger , find the smaller number and the larger number. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([6.0+x-(2.0*y),18.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "There are 21 animals total , all sheep and chickens. If there are 56 legs total , how many of the 21 animals are sheep? How many are chickens? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([56.0-((4.0*x)+(2.0*y)),21.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "A mechanic charged 45 dollars an hour , plus 225 dollars for the parts. If the total bill was 450 dollars , how man hours did the job take? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([450.0-((45.0*x)+225.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "White vinegar is a solution of acetic acid in water. There are two strengths of white vinegar , a 5 % solution and a 10 % solution. How many milliliters of each solution must be mixed to make 50 milliliters of a 9 % vinegar solution? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([9.0*0.01*50.0-(((5.0*0.01)*x)+((10.0*0.01)*y)),50.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "Colored copies cost 10 cents per copy and white copies cost 5 cents per copy. Sandy made 400 copies , some of which were colored and the rest white. Her total bill was 22.50 dollars. How many colored copies and white copies did she make? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([22.5-((10*.01*x)+(5*.01*y)),400.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "50" + ], + "split": "train" + }, + { + "Input": "A total of 366 tickets were sold for the school play. The number of student tickets sold was two times the number of adult tickets sold. How many adult tickets were sold?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([366.0-(x+y),2.0*x-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "122" + ], + "split": "train" + }, + { + "Input": "Anne and Nancy use a metal alloy that is 24.9 % copper to make jewelry. How many ounces of a 20 % alloy must be mixed with a 27 % alloy to form 100 ounces of the desired alloy?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(100.0*24.9)*0.01-(((20.0*0.01)*x)+((27.0*0.01)*y)),100.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "There are 24 kids in Mrs Jones ' class. There are twice as many girls as boys. How many boys and girls are there?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([24.0-(x+y),2.0*x-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Steve purchased tickets to a circus for 7 adults and 2 children. The total cost was 172 dollars. The cost of a child 's ticket was 4 dollars less than the cost of an adult 's ticket. Find the price of an adult 's ticket and a child 's ticket.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([172.0-((7.0*x)+(2.0*y)),x-4.0-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "train" + }, + { + "Input": "The cost of 12 gallons of regular gasoline and 18 gallons of premium gasoline is 44.46 dollars. Premium costs 0.22 dollars more per gallon than regular. What is the cost per gallon of each type of gasoline?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([44.46-((12.0*x)+(18.0*y)),0.22+x-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "1.35" + ], + "split": "train" + }, + { + "Input": "Three times a number is the same as the difference of twice the number and seven. Find the number.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([(2.0*x)-7.0-(3.0*x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "-7" + ], + "split": "train" + }, + { + "Input": "The difference between two numbers is 3. Their sum is 13. Find the numbers. What is the larger number? What is the smaller number?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([13.0-(x+y),3.0-(x-y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "You sell tickets for admission to your school play and collect a total of 104 dollars. Admission prices are 6 dollars for adults and 4 dollars for children. You sold 21 tickets. How many adult tickets did you sell? How many children 's tickets did you sell? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([104.0-((6.0*x)+(4.0*y)),21.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "0.4 of Joe 's income each month goes to taxes. If she pays 848 dollars in taxes each month , what is her monthly income in dollars? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([848.0-(0.4*x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "2120" + ], + "split": "train" + }, + { + "Input": "High school graduating class is made up of 466 students. There are 212 more girls than boys. How many boys are in the class? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([x-(212.0+y),466.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "127" + ], + "split": "train" + }, + { + "Input": "An airplane has a total of 387 seats. The number of coach class seats is 2 more than 4 times the number of first-class seats. How many first class and coach class seats are there on the plane?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([387.0-(x+y),(4.0*y)+2.0-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "77" + ], + "split": "train" + }, + { + "Input": "Find two numbers whose sum is 147 and one is 4 greather than 0.375 of the other.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([147.0-(x+y),(0.375*x)+4.0-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "43" + ], + "split": "train" + }, + { + "Input": "A swim team has 5 times as many girls as boys. There are a total of 96 people on the swim team. How many girls and boys are their on the team?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([96.0-(x+y),5.0*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "80" + ], + "split": "train" + }, + { + "Input": "A discount store sold plastic cups for 3.25 dollars each and ceramic cups for 4.50 dollars each. If 500 cups were sold for a total of 2090 dollars , how many plastic cups and ceramic cups were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2090.0-((3.25*x)+(4.5*y)),500.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "128" + ], + "split": "train" + }, + { + "Input": "A carpenter gave an estimate of 980 dollars to build a cover over a patio. His hourly rate is 28 dollars and he expects to need 560 dollars in materials. How many hours will the job take?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([980.0-((28.0*x)+560.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "A group of students went hiking in a wildlife sanctuary. During the hike a total of 180 ticks and mosquitoes were slapped. Ticks have 8 legs and mosquitoes have 6 legs. If these pests has a total of 1240 legs , how many mosquitoes and how many ticks were slapped during the hike?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(8.0*x)+(6.0*y)-(1240.0),180.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "100" + ], + "split": "train" + }, + { + "Input": "A piggy bank has 50 coins. The coins are either nickels or dimes. The bank has 4.55 dollars in total. How many coins are nickels? How many are dimes?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([4.55-((0.05*x)+(0.1*y)),50.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "You are traveling to your mothers house that is 234 miles away. If you are currently twice as far from your house as you are from your mothers house how far have you traveled? Round to the nearest tenth mile.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([234.0-(x+y),2.0*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "156" + ], + "split": "train" + }, + { + "Input": "If 6 is subtracted from three times a number , the difference is twice the number. What is the number? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([2.0*x-((3.0*x)-6.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Your family goes to a restaurant for dinner. There are 6 people in your family. Some order the chicken dinner for 14.80 dollars and some order the steak dinner for 17.00 dollars. If the total bill was 91.00 dollars , how many people ordered the steak dinner. How many people ordered the chicked dinner? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([91.0-((14.8*x)+(17.0*y)),6.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Jerry Weller received 20,196 more votes than opponent John Pavich. If the total number of votes was 196,554 , find the number of votes for Jerry. Find the number of votes for John. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([196554.0-(x+y),20196.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "108375" + ], + "split": "train" + }, + { + "Input": "For Monday morning 's staff meeting , Jim bought 2 bags of bagels and 3 packages of cream cheese and paid 12.00 dollars. For Friday 's meeting , he bought 4 bags of bagels and 2 packages of cream cheese and paid 14.00 dollars. How much does a bag of bagels and a package of cream cheese cost , in dollars? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([12.0-((2.0*x)+(3.0*y)),14.0-((4.0*x)+(2.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "2.12" + ], + "split": "train" + }, + { + "Input": "A motorist drove 2 hours at one speed and then for 3 hours at another speed. He covered a distance of 252 kilometers. If he had travelled 4 hours at the first speed and 1 hour at the second speed , he would have covered 244 kilometers. Find two speeds? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([252.0-((2.0*x)+(3.0*y)),244.0-((4.0*x)+(1.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "48" + ], + "split": "train" + }, + { + "Input": "You are selling tickets for a high school play. Student tickets cost 4 dollars and general admission tickets cost 6 dollars. You sell 525 tickets and collect 2876 dollars. How many student tickets and general admission tickets did you sell?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2876.0-((4.0*x)+(6.0*y)),525.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "137" + ], + "split": "train" + }, + { + "Input": "An airplane begins a flight with a total of 36.0 gallons of fuel stored in two separate wing tanks. During the flight , 25.0 % of the fuel in one tank is used , and in the other tank , 37.5 % of the fuel is used. If the total fuel used is 11.2 gallons , what are the amounts x and y stored in each tank. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([11.2-(((25.0*0.01)*x)+((37.5*0.01)*y)),36.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "18.4" + ], + "split": "train" + }, + { + "Input": "A dealer has some hard candy worth 2 dollars a pound and some worth 3 dollars a pound. He wishes to make a mixture of 80 pounds that he can sell for 2.20 dollars per pound. How many pounds of each kind should he use?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([80.0*2.2-((2.0*x)+(3.0*y)),80.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "64" + ], + "split": "train" + }, + { + "Input": "Matthew has two different stocks. One of the stocks is worth twice as much per share as the other. He has 14 shares of the more valuable stock and 26 shares of the other stock. His total assets in stocks is 2106 dollars. How much is the more expensive stock per share?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2106.0-((14.0*x)+(26.0*y)),2.0*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "78" + ], + "split": "train" + }, + { + "Input": "254 people go to a zoo. Tickets are 28 dollars for adults and 12 dollars for kids. Total sales are 3,864 dollars. How many adults went to zoo? How many kids? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([3864.0-((28.0*x)+(12.0*y)),254.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "51" + ], + "split": "train" + }, + { + "Input": "1 number is 9 less than twice another , and their sum is 42. Find the two numbers. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([42.0-(x+y),(2.0*y)-9.0-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": "You have space in your garden for 55 small flowering bulbs. Crocus bulbs cost 0.35 dollars each and daffodil bulbs cost 0.65 dollars each. Your budget allows you to spend 29.15 dollars on bulbs. How many crocus bulbs and daffodil bulbs can you buy? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([29.15-((0.35*x)+(0.65*y)),55.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "22" + ], + "split": "train" + }, + { + "Input": "A dealer has some hard candy worth 2.00 dollars a pound and some worth 3.00 dollars a pound. He wishes to make a mixture of 80 pounds that he can sell for 2.20 dollars a pound. How many pounds of 2-dollar candy does he need? How many pounds of 3-dollar candy does he need? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([80.0*2.2-((2.0*x)+(3.0*y)),80.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "64" + ], + "split": "train" + }, + { + "Input": "In 1 week , a music store sold 7 violins for a total of 1600 dollars. 2 different types were sold. One cost 200 dollars and the other cost 300 dollars. How many 200-dollar violins were sold? How many 300-dollar violins were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1600.0-((200.0*x)+(300.0*y)),7.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Red cards are worth 3 credits , while blue cards are worth 5 credits. You need any combination of 20 cards to play a game. With 84 credits to buy cards , how many blue cards will you have when you play? how many red cards will you have when you play? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([84.0-((5.0*x)+(3.0*y)),20.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "Post card stamps are 0.20 dollars each. Letter stamps cost 0.33 dollars each. If you have 50 stamps worth 12.60 dollars , how many post card stamps do you have? How many letter stamps? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([12.6-((0.2*x)+(0.33*y)),50.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "Ilida went to Minewaska Sate Park one day this summer. All of the people at the park were either hiking or bike riding. There were 178 more hikers than bike riders. If there were a total of 676 people at the park , how many were hiking? How many were riding their bikes? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([676.0-(x+y),178.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "427" + ], + "split": "train" + }, + { + "Input": "Tickets for a play at the community theater cost 12 dollars for an adult and 4 dollars for a child. If 130 tickets were sold and the total receipts were 840 dollars , how many adult tickets and child tickets were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([840.0-((12.0*x)+(4.0*y)),130.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "train" + }, + { + "Input": "Twice a number increased by 5 is 17. Find the number.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([17.0-((2.0*x)+5.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Separate 66 into 2 parts so that 0.40 of one part exceeds 0.625 of the other part by 10. What is the smaller part? What is the larger part?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(0.625*x)+10.0-(0.4*y),66.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "Two investments earn an annual income of 575 dollars. One investment earns an annual simple interest rate of 8.5 % , and the other investment earns an annual simple interest rate of 6.4 %. The amount invested is 8000 dollars. How much money is invested in the first investment and second investment respectively? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([575.0-((8.5*.01*x)+(6.4*.01*y)),8000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "3000" + ], + "split": "train" + }, + { + "Input": "A car rents for 30 dollars per day plus 23 cents per mile. You are on a daily budget of 76 dollars. What mileage can you go and stay within your budget?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([76.0-(30.0+(23*0.01*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "200" + ], + "split": "train" + }, + { + "Input": "Mrs.Martin bought 3 cups of coffee and 2 bagels and spent 12.75 dollars. Mr.Martin bought 2 cups of coffee and 5 bagels and spent 14.00 dollars. Find the cost of one cup of coffee and the cost of one bagel.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([12.75-((3.0*x)+(2.0*y)),14.0-((2.0*x)+(5.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "3.25" + ], + "split": "train" + }, + { + "Input": "Soybean meal is 16 % protein ; cornmeal is 8 % protein. How many pounds of each should be mixed together in order to get a 320-pound mixture that is 13 % protein?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(320.0*13.0)*0.01-(((16.0*0.01)*x)+((8.0*0.01)*y)),320.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "200" + ], + "split": "train" + }, + { + "Input": "A woman invested a total of 9,000 dollars in 2 accounts , one earning 6.5 % annual interest and the other earning 8 % annual interest. After 1 year , her combined interest was 678.87 dollars. How much did she invest in the account paying 8 % interest , in dollars? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([678.87-(((6.5*0.01)*x)+((8.0*0.01)*y)),9000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "6258" + ], + "split": "train" + }, + { + "Input": "A water flow restrictor has reduced the flow of water to 2 gallons per minute. This amount is 1 gallon per minute less than 0.6 the original flow rate. Find the original rate in gallons per minute.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([2.0-((0.6*x)-1.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "A bricklayer lays an average of 150 bricks per hour. During a job , he is called away and replaced by a less experienced man , who averages 120 bricks per hour. The two men laid 930 bricks in 7 hours. How long did each work? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([930.0-((150.0*x)+(120.0*y)),7.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "The sum of 2 numbers is 70. The second is 10 more than 3 times the first. Find the smaller number. Find the larger number.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([70.0-(x+y),10.0+(3.0*x)-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "0.5 of a certain number is 10 more than 0.1667 of a number. Find the number.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([(0.1667*x)+10.0-(0.5*x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "A chemist has one solution that is 15 % acid and a second that is 25 % acid. How many liters of each should be mixed together to get 100 liters that is 18 % acid?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([18.0*0.01*100.0-(((15.0*0.01)*x)+((25.0*0.01)*y)),100.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "70" + ], + "split": "train" + }, + { + "Input": "Dave and Sandy fly from Philly to Chicago , it takes 2 hours to go West and 1.5 hours to fly East. The trip is 780 miles one way. If the wind speed is the same on each trip , find the speed of the wind and find the speed of the plane in the still air , in miles per hour. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([780.0-((x+y)*1.5),780.0-((x-y)*2.0)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "65" + ], + "split": "train" + }, + { + "Input": "Your cell phone company offers two text-messaging plans. Plan A costs 0.25 dollars per text message , plus a monthly fee of 9 dollars. The other plan costs 0.40 dollars per text message with no monthly fee. For how many text messages will both plans cost the same amount? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([0.4*x-(9.0+(0.25*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "60" + ], + "split": "train" + }, + { + "Input": "One thousand quarts of milk testing 4 % butterfat are to be reduced to 3 %. How many quarts of cream testing 23 % butterfat must be separated from the milk to produce the required result?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(1000.0*4.0)*0.01-(((3.0*x)*0.01)+((23.0*y)*0.01)),1000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "50" + ], + "split": "train" + }, + { + "Input": "A freight train and an express train leave towns 390 kilometers apart , traveling toward one another. The freight train travels 30 kilometers per hour slower than the express train. They pass one another 3 hours later. How fast is the freight train , in miles per hour? How fast is the express train? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([390.0-((3.0*x)+(3.0*y)),y-30.0-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "50" + ], + "split": "train" + }, + { + "Input": "The ratio of boys to girls is 9 to 4. You know there are 91 total students. How many of them are boys? How many are girls?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([9.0*x-(4.0*y),91.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "train" + }, + { + "Input": "In a class of 35 students the number of girls is 0.4 of the number of boys. Find the number of girls in the class.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([x-(0.4*y),35.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "A jazz concert brought in 191,000 dollars with the sale of 7400 tickets. If tickets were sold for 20 dollars and 30 dollars each , how many 20-dollar tickets were sold? How many 30-dollar tickets? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([191000.0-((20.0*x)+(30.0*y)),7400.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "3100" + ], + "split": "train" + }, + { + "Input": "Tickets for adults are 5.50 dollars and tickets for children are 3.50 dollars. How many adult tickets and children 's tickets were purchased if 21 tickets were bought for 83.50 dollars? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([83.5-((5.5*x)+(3.5*y)),21.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "There are 13 animals in a barn. Some are chickens and some are pigs. There are 40 legs in the barn. How many are pigs are there and how many chicken are there?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([40.0-((2.0*x)+(4.0*y)),13.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "3 Pairs of jeans and 6 shirts costs 104.25 dollars. The cost of 4 jeans and 5 shirts is 112.15 dollars. Find the cost of each pair of jeans and each shirt.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([104.25-((3.0*x)+(6.0*y)),112.15-((4.0*x)+(5.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "16.85" + ], + "split": "train" + }, + { + "Input": "The total cost of a pair of pants and a belt was 70.93 dollars. If the price of the pair of pants was 2.93 dollars less than the belt , what was the price of the pair of pants? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([70.93-(x+y),x-2.93-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "34" + ], + "split": "train" + }, + { + "Input": "The sum of 2 numbers is 27. 0.5 of the first number plus 0.3333 of the second number is 11. Find the smaller and the larger number.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([11.0-(0.5*x+0.3333*y),27.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "Student Council wants to rent a banquet hall for the prom. Caesar 's charges 800 dollars to rent the room and 30 dollars for each meal. Venus Hall charges 500 dollars to rent the room and 35 dollars for each meal. How many guests must attend the prom for the costs of the two halls to be the same?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([500.0+(35.0*x)-(800.0+(30.0*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "60" + ], + "split": "train" + }, + { + "Input": "A mixture of water and antifreeze in a car is 10 % antifreeze. In colder climates this mixture should contain 50 % antifreeze. If the radiator contains 4 gallons of fluid , how many gallons of radiator fluid should be drained and replaced with a mixture containing 80 % antifreeze? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(4.0*50.0)*0.01-(((10.0*0.01)*x)+((80.0*0.01)*y)),4.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "2.2857" + ], + "split": "train" + }, + { + "Input": "A farmer had some chickens and some cows. She counted 40 heads and 126 legs. How many chickens and how many cows did she have?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([126.0-((2.0*x)+(4.0*y)),40.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": "On a test containing 120 questions , the final score is based on 1 point for each correct answer and 0.25 of a point subtracted for each incorrect answer. Allan answered all of the questions and received a final score of 100 points. How many questions did Allan answer correctly? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([100.0-((1.0*x)-(0.25*y)),120.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "104" + ], + "split": "train" + }, + { + "Input": "Find a number so that 10 less than 0.6667 the number is 0.25 the number.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([0.25*x-((0.6667*x)-10.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "24" + ], + "split": "train" + }, + { + "Input": "Trenton sells electronic supplies. Each week he earns 190 dollars plus commission equal to 4 % of his sales. This week his goal is to earn no less than 500 dollars. Write and solve an inequality to find the amount of sales he must make to reach his goal.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([500.0-(190.0+((4.0*0.01)*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "7750" + ], + "split": "train" + }, + { + "Input": "You are taking a test in which multiple choice questions are worth 9 points and essay questions are worth 12 points. You answer 16 questions correctly , and your score was 162 points. Find how many multiple choice questions you got right. How many essay questions did you get right? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([162.0-((9.0*x)+(12.0*y)),16.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "0.6667 of a number increased by 0.75 is 1.6667 , what is the number? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([1.6667-((0.6667*x)+0.75)],(x))\nprint(answer)" + ], + "Output Answer": [ + "1.375" + ], + "split": "train" + }, + { + "Input": "A cashier has a total of 126 bills , made up of 5-dollar bills and 10-dollar bills. The total value of the money is 840 dollars. How many 5-dollar bills does he have? How many 10-dollar bills? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([840.0-((5.0*x)+(10.0*y)),126.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "84" + ], + "split": "train" + }, + { + "Input": "A farmhouse has 15 animals. Some are goats and some are ducks. Altogether there are 48 legs. How many of each animal are there?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([48.0-((4.0*x)+(2.0*y)),15.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "How many liters of a 60 % acid solution must be mixed with a 75 % acid solution to get 20 liters of a 72 % solution?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([72*0.01*20.0-((60*.01*x)+75*0.01*y),20-(x + y )],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "A candy store wishes to mix 2 types of candy to get 5 pounds of 2 dollars per pound candy. If candy A costs 3.20 dollars per pound and candy B costs 1.70 dollars per pound , how many pounds of candy A and candy B should be mixed? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([5.0*2.0-((3.2*x)+(1.7*y)),5.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "The manager of a discount clothing store received 2 shipments of Fall clothing. The cost of the first shipment which contained 10 identical sweaters and 20 identical jackets was 800 dollars. The second shipment at the same prices , contained 5 of the same sweaters and 15 of the same jackets. The second shipment was 550 dollars. Find the cost of 1 jacket , in dollars. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([800.0-((20.0*x)+(10.0*y)),550.0-((15.0*x)+(5.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "You are running a concession stand. You are selling hot dogs and soda. Each hot dog costs 1.50 dollars and each soda costs 0.50 dollars. You made a total of 78.50 dollars. You sold a total of 87 hot dogs and sodas combined. You must report the number of hot dogs and sodas sold. How many hot dogs and sodas were sold?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([78.5-((1.5*x)+(0.5*y)),87.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "35" + ], + "split": "train" + }, + { + "Input": "The value of a sport utility vehicle this year is 16,000 dollars , which is 0.8 of what its value was last year. Find the value of the vehicle last year. ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([x-(16000.0/0.8)],(x))\nprint(answer)" + ], + "Output Answer": [ + "20000" + ], + "split": "train" + }, + { + "Input": "A 20-foot board is cut into 2 pieces. Twice the length of the shorter piece is 4 feet more than the length of the longer piece. Find the length of the shorter piece.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([4.0+x-(2.0*y),20.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "A person wishes to invest 2,400.00 dollars , part at 9 % and part at 6 %. If the total interest desired at the end of the year is 189.00 dollars , how much should be invested at each rate? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([189.0-(((6.0*0.01)*x)+((9.0*0.01)*y)),2400.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "1500" + ], + "split": "train" + }, + { + "Input": "A chemist is mixing a solution that is 32 % sodium and another solution that is 12 % sodium. How many liters of 32 % and 12 % solution should the chemist use to produce 50 liters of the solution that is 20 % sodium?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([20.0*0.01*50.0-(((32.0*0.01)*x)+((12.0*0.01)*y)),50.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "train" + }, + { + "Input": "Admission tickets to a football game were 60 cents for adults and 25 cents for children. Receipts for the day showed that 280 persons attended and 140 dollars was collected. How many adults attended? How many children attended?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([140.0-((60*.01*x)+(25*.01*y)),280.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "200" + ], + "split": "train" + }, + { + "Input": "One unit of whole wheat flour has 13.6 grams of protein and 2.5 grams of fat. One unit of whole milk has 3.4 grams of protein and 3.7 grams of fat. To the nearest tenth , find the number of units of whole wheat flour and whole milk that must be mixed to make dough that has 75 grams of protein and 15 grams of fat. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([75.0-((13.6*x)+(3.4*y)),15.0-((2.5*x)+(3.7*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "5.41" + ], + "split": "train" + }, + { + "Input": "Tickets to a movie were sold at 4.00 dollars per adult and 2.50 dollars per student. If 240 tickets were sold for a total of 765.00 dollars , how many student tickets were sold? How many adult tickets were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([765.0-((2.5*x)+(4.0*y)),240.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "130" + ], + "split": "train" + }, + { + "Input": "A small publishing company has a 1 time product cost for editing and printing of 56,430.00 dollars. Variable cost per book is 8.25 dollars. The publisher is selling the book to the store for 21.75 dollars. How many books must the publisher print and sell so that the production cost will equal the money obtained from sells? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([56430.0-((21.75*x)-(8.25*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "4180" + ], + "split": "train" + }, + { + "Input": "In a family there are 2 cars. The sum of the average miles per gallon obtained by the two cars in a particular week is 45. The first car has consumed 40 gallons during that week , and the second car has consumed 20 gallons , for a total of 1400 miles driven by the two cars combined. What was the average gas mileage obtained by each of the 2 cars that week? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1400.0-((40.0*x)+(20.0*y)),45.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "25" + ], + "split": "train" + }, + { + "Input": "A chemist has two solutions. One has 40 % the other 25 % concentrate. How many liters of each solution must be mixed to obtain 129 liters of 34 % solution?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([34.0*0.01*129.0-(40.0*0.01*x+25.0*0.01*y),129.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "77.4" + ], + "split": "train" + }, + { + "Input": "For a matinee , a movie theater charges 4.50 dollars for children and 6.75 dollars for adults. At today 's matinee , there are 20 more children than adults and the total receipts are 405 dollars. How many children are at today 's matinee? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([405.0-((4.5*x)+(6.75*y)),20.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "48" + ], + "split": "train" + }, + { + "Input": "A math test is worth 100 points and has 30 problems. Each problem is worth either 3 points or 4 points. How many 4 point problems are there?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([100.0-((3.0*x)+(4.0*y)),30.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "2 high speed trains are 380 miles apart and traveling toward each other. They meet in 4 hours. If one train is 15 miles per hour faster than the other , find the speed of the slower train in miles per hour. Find the speed of the faster train. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([380.0-((4.0*x)+(4.0*y)),y-(15.0+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "train" + }, + { + "Input": "A worker gets 60 cents an hour for ordinary time and 90 cents an hour for overtime. If she gets 32.40 dollars for a 50 hour week , how many hours are overtime? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([32.4-(((60.0*0.01)*x)+((90.0*0.01)*y)),50.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "The sum of 2 integers is 30. 2 times the larger integer is 10 less than 5 times the smaller integer. Find the smaller number and larger number.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(5.0*x)-10.0-(2.0*y),30.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "A grain storage warehouse has a total of 30 bins. Some hold 20 tons of grain each. The rest hold 15 tons each. The capacity of the warehouse is 510 tons. How many 20 ton bins are there? How many 15 ton bins? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([510.0-((20.0*x)+(15.0*y)),30.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "An employment agency specializing in temporary construction help pays heavy equipment operators 140 dollars per day and general laborers 90 dollars per day. If 35 people were hired and the payroll was 3950 dollars , how many heavy equipment operators were employed? How many laborers were employed? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([3950.0-((140.0*x)+(90.0*y)),35.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "Juan and Peter both leave a shopping center at the same time going in opposite directions. Juan is on his bike and travels 3 miles per hour faster than Peter who is on his skateboard. After 1.5 hours they are 19.5 miles apart. How fast does Peter travel?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([19.5-((1.5*x)+(1.5*y)),3.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "There are 11 animals in a barnyard. Some are chickens and some are cows. There are 38 legs in all. How many chickens and cows are in the barnyard?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([38.0-((2.0*x)+(4.0*y)),11.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "A plane flies 900 miles with a tail wind in 3 hours. The same plane takes 4 hours to make the return trip against the wind. What is the speed of the plane in still air? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([900.0-((x+y)*3.0),900.0-((x-y)*4.0)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "262.5" + ], + "split": "train" + }, + { + "Input": "Cynthia works at a grocery store. She knows that for every 2 cans of tomato soup she sells , she will sell 4 cans of chili beans. This week she ordered a total of 12 cans. How many cans of chili beans did she order? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2.0*x-(4.0*y),12.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Hockey teams receive 2 points when they win and 1 point when they tie. 1 season , a team won a championship with 60 points. They won 12 games more than they tied. How many wins and ties did the team have? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([60.0-((2.0*x)+(1.0*y)),12.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "24" + ], + "split": "train" + }, + { + "Input": "24 is divided in two parts such that 7 time the first part added to 5 times the second part makes 146. What is the first part?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([146.0-((7.0*x)+(5.0*y)),24.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "The total attendance at a rally was 750 people. Tickets bought before the rally were 2 dollars each , and tickets bought at the door were 2.75 dollars each. How many tickets were bought at the door if the total receipts were 1706.25 dollars? How many tickets were bought before the rally? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1706.25-((2.75*x)+(2.0*y)),750.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "275" + ], + "split": "train" + }, + { + "Input": "On a certain hot summer 's day , 754 people used the public swimming pool. The daily prices are 1.50 dollars for children and 2.25 dollars for adults. The receipts for admission totaled 1422.00 dollars. How many children and adults swam at the public pool that day? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1422.0-((1.5*x)+(2.25*y)),754.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "366" + ], + "split": "train" + }, + { + "Input": "When 4 times the number is added to 7 times the number the result is 55. What is the number?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([55.0-((4.0*x)+(7.0*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "The difference between two numbers is 20 and their sum is 48. Find the numbers.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([48.0-(x+y),20.0-(x-y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "34" + ], + "split": "train" + }, + { + "Input": "Yuri has a board that 98 inches long. He wishes to cut the board into 2 pieces so that one piece will be 10 inches longer than the other. What should the length of the shorter piece be , in inches? What will the length of the longer piece be? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([98.0-(x+y),10.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "44" + ], + "split": "train" + }, + { + "Input": "The number of grocery items on two grocery lists differs by 7. The total number of items is 33. How many items are on each list?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([33.0-(x+y),7.0-(x-y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "It takes a boat 4 hours to travel 24 miles down a river and 6 hours to return upstream to its starting point. What is the rate of the current in the river?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([24.0-((x+y)*4.0),24.0-((x-y)*6.0)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "Old McDonald has 15 goats and chickens on his farm. The animals combined have a total of 34 legs. Assuming there are no physical defects , how many goats are on the farm? How many chickens are on the farm? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([34.0-((2.0*x)+(4.0*y)),15.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "1. Find the 2 numbers whose sum is 108 and whose difference is 24.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([108.0-(x+y),24.0-(x-y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "42" + ], + "split": "train" + }, + { + "Input": "Freeport McMoran projects that in 2010 the world grain supply will be 1800000 metric tons and the supply will be only 0.75 of the world grain demand. What will the world grain demand be in 2010?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([0.75*x-(1800000.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "2400000" + ], + "split": "train" + }, + { + "Input": "The sum of 38 and twice a number is 124. Find the number.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([124.0-(38.0+(2.0*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "43" + ], + "split": "train" + }, + { + "Input": "A student is pricing 2 different picture packages. John 's Photo World charges 2.75 dollars per sheet and a one time sitting fee of 125 dollars. Sam 's Picture Emporium charges 1.50 dollars per sheet and a one time sitting fee of 140 dollars. For how many sheets of pictures do the 2 companies charge the same amount?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([(1.5*x)+140.0-((2.75*x)+125.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "2 similar tables and 6 similar chairs cost 6600 dollars. If the table cost 500 dollars more than a chair , what is the cost , in dollars , of the table? What is the cost of the chair? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([6600.0-((2.0*x)+(6.0*y)),x-(500.0+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "1200" + ], + "split": "train" + }, + { + "Input": "Two planes start from Chicago at the same time and fly in opposite directions , one averaging a speed of 40 miles per hour greater than the other. If they are 2000 miles apart after 5 hours , find their average speeds. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2000.0-((5.0*x)+(5.0*y)),40.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "180" + ], + "split": "train" + }, + { + "Input": "A car rents for 30 dollars per day plus 18 cents per mile. You are on a budget of 75 dollars. What mileage would allow you to stay within your budget?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([75.0-(30.0+(18*0.01*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "250" + ], + "split": "train" + }, + { + "Input": "Harold had a summer lemonade stand where he sold small cups of lemonade for 1.25 dollars and large cups for 2.50 dollars. If Harold sold a total of 155 cups of lemonade and collected a total of 265 dollars , how many small cups and large cups did he sell? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([265.0-((1.25*x)+(2.5*y)),155.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "98" + ], + "split": "train" + }, + { + "Input": "On Monday , Harold picked up three doughnuts and four large coffees for the office staff. He paid 4.91 dollars. On Tuesday Melinda picked up five doughnuts and six large coffees for the office staff. She paid 7.59 dollars. What is the cost of one doughnut? What is the cost of one large coffee? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([4.91-((3.0*x)+(4.0*y)),7.59-((5.0*x)+(6.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "0.45" + ], + "split": "train" + }, + { + "Input": "A theater sells children 's tickets for 4 dollars and adult tickets for 7 dollars. One night 575 tickets worth 3575 dollars were sold. How many adult tickets were sold? How many children 's tickets? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([3575.0-((7.0*x)+(4.0*y)),575.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "425" + ], + "split": "train" + }, + { + "Input": "Customers of a phone company can choose between 2 service plans for long distance calls. The first plan has a 22 dollars monthly fee and charges an additional 0.13 dollars for each minute of calls. The second plan has an 8 dollars monthly fee and charges an additional 0.18 dollars for each minute of calls. For how many minutes of calls will the costs of the two plans be equal?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([8.0+(0.18*x)-(22.0+(0.13*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "280" + ], + "split": "train" + }, + { + "Input": "A local bus tour sold 65 tickets. Senior citizen tickets cost 10 dollars and regular tickets cost 15 dollars. The total sales were 855 dollars. How many senior citizen tickets were sold? How many regular tickets were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([855.0-((10.0*x)+(15.0*y)),65.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "24" + ], + "split": "train" + }, + { + "Input": "A grain-storage warehouse has a total of 30 bins. Some hold 20 tons of grain each. The rest hold 15 tons each. How many of each type of bin are there if the capacity of the warehouse is 510 tons? How many 20 ton bins? How many 15 ton bins? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([510.0-((20.0*x)+(15.0*y)),30.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "You buy 25 boxes of candy and spend 28.00 dollars. A box of peppermint cost 1.00 dollars a box and candy canes cost 1.30 dollars a box. How many boxes of peppermint did you buy? How many boxes of candy canes? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([28.0-((1.0*x)+(1.3*y)),25.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "A garden table and a bench cost 750 combined. The price of the garden table is two times the price of the bench. What is the cost of the bench?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([750.0-(x+y),2.0*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "250" + ], + "split": "train" + }, + { + "Input": "You have 160 dollars and save 7 dollars per week. Your friend has 210 dollars and saves 5 dollars per week. After how many weeks will each of you have saved the same amount of money?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([210.0+(5.0*x)-(160.0+(7.0*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "25" + ], + "split": "train" + }, + { + "Input": "2 teams of scientists leave a university at the same time in special vans to search for tornadoes. the 1st team travel east at 20 miles per hour and the 2nd team travels west at 30 miles per hour. their radios have a range of 125 miles. How much time will pass before the scientists lose radio contact?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([125.0-((20.0*x)+(30.0*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "2.5" + ], + "split": "train" + }, + { + "Input": "E-Chem Testing has a solution that is 80 % base and another that is 30 % base. A technician needs 150 liters of a solution that is 62 % base. The 150 liters will be prepared by mixing the two solutions on hand. How much of the 80 % base and the 30 % base should be used?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([62.0*0.01*150.0-(80.0*0.01*x+30.0*0.01*y),150.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "96" + ], + "split": "train" + }, + { + "Input": "Phyllis invested 39000 dollars , a portion earning a simple interest rate of 4 % per year and the rest earning a rate of 6 % per year. After 1 year the total interest earned on these investments was 1980 dollars. How many dollars did she invest at 4 %? At 6 %? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1980.0-(((4.0*0.01)*x)+((6.0*0.01)*y)),39000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "18000" + ], + "split": "train" + }, + { + "Input": "7 audio cassettes and 3 video cassettes cost rs 1110 , while 5 audio cassettes and 4 video cassettes cost rs 1350. Find the cost of an audio cassette and a video cassette. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1110.0-((7.0*x)+(3.0*y)),1350.0-((5.0*x)+(4.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "The tallest player on the basketball team is 77.75 inches tall. This is 9.5 inches taller than the shortest player. How tall is the shortest player , in inches? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([77.75-9.5-(x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "68.25" + ], + "split": "train" + }, + { + "Input": "Janet invested 31,000 dollars , part at 10 % and part at 1 %. If the total interest at the end of the year is 1,390 dollars , how much did she invest at 10 %? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1390.0-(10.0*0.01*x+1.0*0.01*y),31000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "12000" + ], + "split": "train" + }, + { + "Input": "A theater has 80 seats. On opening night , they sold out , selling adult tickets for 12 dollars each and child tickets for 5 dollars each. If they made a total of 519 dollars , how many child tickets were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([519.0-((12.0*x)+(5.0*y)),80.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "train" + }, + { + "Input": "Ron and Kathy are ticket-sellers , Ron handling student tickets that sell for 2.00 dollars each and Kathy selling adult tickets for 4.50 dollars each. If their total income for 20 tickets was 60.00 dollars , how many did Ron sell? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([60.0-((2.0*x)+(4.5*y)),20.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "An art dealer sold 16 etchings for 630 dollars. He sold some of them at 35 dollars each and the rest at 45 dollars each. How many etchings did he sell at 35 dollars? How many etchings did he sell at 45 dollars? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([630.0-((35.0*x)+(45.0*y)),16.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "The grocer has peanuts for 3.75 dollars a pound and walnuts for 2.75 dollars a pound. How many pounds of peanuts and walnuts must we mix to get 40 pounds of mixture to sell for 3.00 dollars per pound. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([3.0*40.0-((3.75*x)+(2.75*y)),40.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "A department store held a sale to sell all of the 214 winter jackets that remained after the season ended. Until noon , each jacket in the store was priced at 31.95 dollars. At noon , the price of the jackets was further reduced to 18.95 dollars. After the last jacket was sold , the total receipts for the clearance sale were 5108.30 dollars. How many jackets were sold before noon and how many jackets were sold after noon? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([5108.3-((31.95*x)+(18.95*y)),214.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "81" + ], + "split": "train" + }, + { + "Input": "Wal-Mart sells thermometers for 2 dollars, and hot-water bottles for 6 dollars. Total sales for these 2 items during the month of January was 1,200 dollars. There were 7 times as many thermometers as hot-water bottles sold. How many thermometers were sold? How many hot-water bottles? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1200.0-((2.0*x)+(6.0*y)),7.0*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "420" + ], + "split": "train" + }, + { + "Input": "Soybean meal is 16 % protein and cornmeal is 8 %. How many pounds of each should be mixed together in order to get a 320 pound mixture that is 15 % protein?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(320.0*15.0)*0.01-(((16.0*0.01)*x)+((8.0*0.01)*y)),320.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "280" + ], + "split": "train" + }, + { + "Input": "1.3333 of a number is 4.82 , what is the number? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([4.82-(1.3333*x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "3.615" + ], + "split": "train" + }, + { + "Input": "To make a weak solution of 24 liters of 4 % acid , a lab technician will use some premixed solutions : one is 2 % acid and the other is 5 % acid. How many liters of each , respectively , should he use to obtain the desired solution? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([4.0*0.01*24.0-(2.0*0.01*x+5.0*0.01*y),24.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "Joey makes 100 pounds of a coffee mix. Columbian coffee selling for 8.75 dollars per pound is mixed with Brazilian coffee selling for 3.75 dollars per pound. The final mix sells for 6.35 dollars per pound. How much of each type of coffee is used in the mix?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([100.0*6.35-((8.75*x)+(3.75*y)),100.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "52" + ], + "split": "train" + }, + { + "Input": "An employment agency specializing in temporary help pays heavy operators 129 dollars per day and general laborers 82 dollars per day. If 31 people were hired and the payroll was 3952 dollars , how many heavy operators were employed? How many laborers? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([3952.0-((129.0*x)+(82.0*y)),31.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "With a tail wind , a jet flew 2000 miles in 4 hours. The jet 's return trip against the same wind required 5 hours. Find the jet 's speed and the wind speed. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2000.0-((x+y)*4.0),2000.0-((x-y)*5.0)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "450" + ], + "split": "train" + }, + { + "Input": "Twice a number equals 25 less than triple the same number. What is the number?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([(3.0*x)-25.0-(2.0*x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "25" + ], + "split": "train" + }, + { + "Input": "There are 3 more girls than boys in Tom 's class , and the sum of girls and boys is 41. How many boys are in the class? How many girls are in the class? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([41.0-(x+y),3.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "19" + ], + "split": "train" + }, + { + "Input": "Rita received a 70 dollars gift card for a coffee store. She used it in buying some coffee that cost 8.58 dollars per pound. After buying the coffee , she had 35.68 dollars left on her card. How many pounds of coffee did she buy? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([35.68-(70.0-(8.58*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Find the number whose double is 45 greater than its half?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([45.0+0.5*x-(2.0*x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "train" + }, + { + "Input": "If 4 apples and 2 oranges equals 1 dollars and 2 apples and 3 orange equals 0.70 dollars , how much does each apple and each orange cost?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1.0-((4.0*x)+(2.0*y)),0.7-((2.0*x)+(3.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "0.2" + ], + "split": "train" + }, + { + "Input": "Tickets cost 4 dollars for students , and 6 dollars for general admission. You sell 525 tickets and collect 2876 dollars. How many student tickets did you sell , and how many general admission tickets did you sell? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2876.0-((4.0*x)+(6.0*y)),525.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "137" + ], + "split": "train" + }, + { + "Input": "Eldora and Finn went to an office supply store together. Eldora bought 15 boxes of paper clips and 7 packages of index cards for a total cost of 55.40 dollars. Finn bought 12 boxes of paper clips and 10 packages of index cards for a total cost of 61.70 dollars. Find the cost of one box of paper clips and the cost of one package of index cards.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([55.4-((15.0*x)+(7.0*y)),61.7-((12.0*x)+(10.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "1.85" + ], + "split": "train" + }, + { + "Input": "A student works 2 part-time jobs. He earns 8.00 dollars an hour working at the college library and 15.00 dollars and hour for construction work. To save time for study , be limits his work to 25 hours a week. If he enjoys the work at the library more , how many hours can he work at the library and still earn at 300 dollars a week? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([300.0-((8.0*x)+(15.0*y)),25.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "David bought 3 hamburgers and 2 servings of french fries at Diane 's Drive Up for 6.25 dollars. If a serving of fries costs 0.25 cents more then a hamburger , what is the cost of a hamburger and what is the cost of a serving of french fries? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([6.25-((3.0*x)+(2.0*y)),0.25+x-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "1.15" + ], + "split": "train" + }, + { + "Input": "A plane is using fuel at the rate of 9.5 gallons per hour and it has 6.3333 gallons left in its tank. How long can the plane continue to fly?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([6.3333-(9.5*x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "0.6667" + ], + "split": "train" + }, + { + "Input": "You are making 10 tons of concrete that is 62 % cement by mixing a 20 % cement mixture with a 80 % cement mixture. How much of the 80 % cement mixture must you use? Answer in units of tons.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(10.0*62.0)*0.01-(((20.0*0.01)*x)+((80.0*0.01)*y)),10.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "a grocer wants to mix nuts which sell for rs 4 per kilo with nuts which sell for rs 7 per kilo in order to make a mixture which could sell for rs 5 per kilo. How many kilos of each should he mix to get a mixture of 42 kilos?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([42.0*5.0-((4.0*x)+(7.0*y)),42.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "28" + ], + "split": "train" + }, + { + "Input": "One solution contains 50 % alcohol and another solution contains 80 % alcohol. How many liters of 50 % alcohol and 80 % alcohol should be mixed to produce 10.5 liters of a 70 % alcohol solution?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([70.0*0.01*10.5-(((50.0*0.01)*x)+((80.0*0.01)*y)),10.5-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "3.5" + ], + "split": "train" + }, + { + "Input": "The difference of 3 times a number and 5 is 40. Find the number.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([40.0-((3.0*x)-5.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "3 times a number is added to 5 times a number to get 54. The second number is 2 less than the first. What is the smaller number? What is the larger number?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([54.0-((3.0*x)+(5.0*y)),x-2.0-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "1 blend of coffee sells for 9.00 dollars per pound and another blend sells for 8.00 dollars per pound. You want to make a 20 pound blend that sells for 8.40 dollars per pound. How many pounds of the 8 dollars per pound coffee do you need? How many pounds of the 9 dollars per pound coffee do you need?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([20.0*8.4-((8.0*x)+(9.0*y)),20.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "The St. Mark 's Community Barbecue served 250 dinners. A child 's plate cost 3.50 dollars and an adult 's plate cost 7.00 dollars. A total of 1347.50 dollars was collected. How many child 's plates were served? How many adult 's plates were served? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1347.5-((3.5*x)+(7.0*y)),250.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "115" + ], + "split": "train" + }, + { + "Input": "Tickets to the school 's dinner theatre cost 6 dollars for children and 9 dollars for adults. 225 tickets were sold for a total of 1875 dollars. How many children attended? How many adults attended? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1875.0-((6.0*x)+(9.0*y)),225.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "50" + ], + "split": "train" + }, + { + "Input": "Hockey teams receive 2 points for a win and 1 point for a tie. The wild cats once won a championship with 60 points. They won 9 more games than they tied. How many wins and how many ties did the Wildcats have?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([60.0-((2.0*x)+(1.0*y)),9.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "23" + ], + "split": "train" + }, + { + "Input": "A chemist has a solution that is 18 % alcohol and one that is 50 % alcohol. He wants to make 80 liters of a 30 % solution. How many liters of the 18 % solution should he add? How many liters of the 30 % solution should he add? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([30*0.01*80.0-((18*.01*x)+(50*.01*y)),80.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "50" + ], + "split": "train" + }, + { + "Input": "Suppose you invest 1,500 dollars in equipment to put pictures on T-shirts. You buy each T-shirt for 3 dollars. After you have placed the pictures on a shirt , you sell it for 20 dollars. How many T-shirts must you sell to break even? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([20.0*x-(1500.0+(3.0*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "83" + ], + "split": "train" + }, + { + "Input": "If your gross pay is 450 dollars , while your net pay is 315 dollars , how much do you pay in taxes? Assume that all tax dollars are not included in net pay. ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([450.0-315.0-(x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "135" + ], + "split": "train" + }, + { + "Input": "Jason earns 4.00 dollars per hour working after school and he earns 6.00 dollars per hour working on Saturday. If he works 18 hours in a week and earned 88.00 dollars , how many hours did he work on Saturday? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([88.0-((6.0*x)+(4.0*y)),18.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "train" + }, + { + "Input": "A 40 % sugar solution is added to an 85 % sugar solution to create 1800 milliliters of a 60 % solution. How many milliliters of the 40 % solution should be used? How many millileters of the 85 % solution?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([60*0.01*(1800)-(((40.0*0.01)*x)+((85.0*0.01)*y)),1800.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "1000" + ], + "split": "train" + }, + { + "Input": "A cashier at Apex Parts received a check for 2380 dollars for 59 parts. Some parts cost 20 dollars per part and other parts cost 50 dollars per part. How many 20-dollar parts are in the order? How many 50-dollar parts are in the order? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2380.0-((20.0*x)+(50.0*y)),59.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "19" + ], + "split": "train" + }, + { + "Input": "A chemistry lab can be used by 38 students at one time. The lab has 16 work-stations. Some set up for 2 students and the others set up for 3 students. How many work-stations accommodate 2 students? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([38.0-((2.0*x)+(3.0*y)),16.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "Lakota bought 6 new compact disks and 2 used compact disks for 127.92 dollars. At the same prices , Mackenzie bought 3 new compact disks and 8 used compact disks for 133.89 dollars. Find the cost of buying a single used compact disk. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([127.92-((6.0*x)+(2.0*y)),133.89-((3.0*x)+(8.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "9.99" + ], + "split": "train" + }, + { + "Input": "A student inherited 5000 dollars. She invested part of it at 10 % and the rest at 8 %. If her total interest amounted to 460 dollars , how much did she invest at 10 %? At 8 %? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([460.0-(((10.0*0.01)*x)+((8.0*0.01)*y)),5000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "3000" + ], + "split": "train" + }, + { + "Input": "Soybean meal is 18 % protein , cornmeal is 9 % protein. How many pounds of each Soybean meal and how many pounds of cornmeal should be mixed together in order to get 360-pound mixture that is 17 % protein? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(360.0*17.0)*0.01-(((18.0*0.01)*x)+((9.0*0.01)*y)),360.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "320" + ], + "split": "train" + }, + { + "Input": "A plane travels due East at 325 miles per hour and another plane travels due west at 275 miles per hour. If they leave at the same time , and from the same place , in how many hours will they be 2100 miles apart? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([2100.0-((325.0*x)+(275.0*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "3.5" + ], + "split": "train" + }, + { + "Input": "Seven times a number is the same as 12 more than 3 times the number. Find the number.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([12.0+(3.0*x)-(7.0*x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "A woman is paid 20 dollars for each day she works and forfeits 5 dollars for each day she is idle. At the end of 25 days she nets 450 dollars. How many days did she work?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([450.0-((20.0*x)-(5.0*y)),25.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "23" + ], + "split": "train" + }, + { + "Input": "A 68-foot pipe is cut into 2 pieces , one of which is 12 feet less than the other. What is the length of the shorter piece in feet? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([68.0-(x+y),x-(y-12.0)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "28" + ], + "split": "dev" + }, + { + "Input": "There are 850 douglas fir and ponderosa pine trees in a section of the forest bought by Sawz logging company. The company paid an average of 300 dollars for each douglas fir and 250 dollars for each ponderosa pine. if the company paid 217,500 dollars for the trees , how many firs and pines did they buy? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([217500.0-((300.0*x)+(250.0*y)),850.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "100" + ], + "split": "dev" + }, + { + "Input": "Cashews sell for 5.00 dollars a pound and peanuts sell for 2.00 dollars a pound. How many pounds of peanuts and cashews would you use to make 25 pounds of a mixure that sells for 92 dollars? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([92.0-((5.0*x)+(2.0*y)),25.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "14" + ], + "split": "dev" + }, + { + "Input": "Jerome bought 12 CDs. Some cost 7.50 ea. and the rest cost 6.50 each. How many CDs were bought at each price if he spent 82 dollars?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([82.0-((6.5*x)+(7.5*y)),12.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": "A chemist needs to make 30 ounces of a 25 % alcohol solution by mixing together a 15 % alcohol solution with a 40 % alcohol solution. How many ounces of the 15 % solution should he use? How many ounces of the 40 % solution?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([25.0*0.01*30.0-(((15.0*0.01)*x)+((40.0*0.01)*y)),30.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "dev" + }, + { + "Input": "Snookers Lumber can convert logs into either lumber or plywood. In a given day , the mill turns out three times as many units of plywood as lumber. It makes a profit of 30 dollars on a unit of lumber and 50 dollars on a unit of plywood. Snookers lumber must produce and sell ___ units of lumber and ___ units of plywood to make a profit of 18360 dollars? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([18360.0-((30.0*x)+(50.0*y)),3.0*x-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "102" + ], + "split": "dev" + }, + { + "Input": "A girl saves 1-dollar coins and 2-dollar coins. She takes it to a bank , she has 180 coins in total that equals 260 dollars. How many 1-dollar coins are there? How many 2-dollar coins are there? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([260.0-((1.0*x)+(2.0*y)),180.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "100" + ], + "split": "dev" + }, + { + "Input": "An athlete can burn 10 calories per minute while running and 4 calories per minute while walking. If the athlete burns 450 calories in 60 minutes , how many minutes are spent running? How many minutes are spent walking? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([450.0-((10.0*x)+(4.0*y)),60.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "35" + ], + "split": "dev" + }, + { + "Input": "At the carnival , tickets for the rides are 0.75 dollars each , or you can buy an armband for 15 dollars and ride unlimited for one night. At how many rides does the armband cost the same as buying individual tickets? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([15.0-(0.75*x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "dev" + }, + { + "Input": "Adult tickets for a play cost 8 dollars and child tickets cost 1 dollars. If there were 22 people at a performance and the theater collected 50 dollars from ticket sales , how many children attended the play? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([50.0-((8.0*x)+(1.0*y)),22.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "dev" + }, + { + "Input": "The Rocket Coaster has 15 cars , some that hold 4 people and some that hold 6 people. There is room for 72 people altogether. How many 4 passenger cars are there? How many 6 passenger cars are there? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([72.0-((4.0*x)+(6.0*y)),15.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "Input": "A concert sells out a 20,000 seat arena. Main seat tickets cost 55 dollars , and back seat tickets for 45 dollars. The concert made 955,000 dollars. How many main seat tickets and back seat tickets were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([955000.0-((55.0*x)+(45.0*y)),20000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "5500" + ], + "split": "dev" + }, + { + "Input": "The Drama Club sold 1,500 tickets for the end-of-year-performance. Admission prices were 12 dollars for adults and 6 dollars for students. The total amount collected at the box office was 16,200 dollars. How many students attended the play? How many adult attended the play? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([16200.0-((6.0*x)+(12.0*y)),1500.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "300" + ], + "split": "dev" + }, + { + "Input": "A movie theater charges 7 dollars for an adult and 4 dollars for a child 's ticket. One night , 900 tickets were sold for a total of 5,100 dollars. How many adult tickets were sold? How many child 's tickets were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([5100.0-((7.0*x)+(4.0*y)),900.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "500" + ], + "split": "dev" + }, + { + "Input": "A washer and a dryer cost 600 dollars combined. The price of the washer is 3 times the price of the dryer. What is the cost of the dryer?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([600.0-(x+y),3.0*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "150" + ], + "split": "dev" + }, + { + "Input": "Sam has 30 nickels and dimes worth 2.40 dollars. How many nickels does he have?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2.4-((0.05*x)+(0.1*y)),30.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "dev" + }, + { + "Input": "Student tickets cost 4 dollars and general admission tickets cost 6 dollars. You sell 525 tickets and collect 2876 dollars. How many student tickets did you sell? How many general admission tickets did you sell? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2876.0-((4.0*x)+(6.0*y)),525.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "137" + ], + "split": "dev" + }, + { + "Input": "The sum of 20 and a number is 30. ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([30.0-(20.0+x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "dev" + }, + { + "Input": "Mary can purchase roses and daisies from a flower shop. She can buy four roses and five daisies for 7.90 dollars or two roses and six daisies for 5.70 dollars. What is the individual cost for each rose and daisy?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([7.9-((4.0*x)+(5.0*y)),5.7-((2.0*x)+(6.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "1.35" + ], + "split": "dev" + }, + { + "Input": "At a hotel one night , 260 rooms were booked. Some were single rooms and some were double rooms. The single rooms cost 35 dollars each and the double rooms cost 60 dollars. The hotel made 14000 dollars that night. How many single rooms and double rooms were booked? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([14000.0-((35.0*x)+(60.0*y)),260.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "64" + ], + "split": "dev" + }, + { + "Input": "Class A and class B donated their class fund totaling 127 dollars to an orphanage. If the amount donated by class A is 7 dollars short of 0.6667 of the amount donated by class B. How much did Class A Donate? How much to class B donate?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([127.0-(x+y),(0.6667*y)-7.0-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "46.61607" + ], + "split": "dev" + }, + { + "Input": "7 less than 4 times a number equals 13. What is the number?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([13.0-((4.0*x)-7.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "dev" + }, + { + "Input": "There were 42 people. There were twice as many children as adults. How many children attended?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([x-(2.0*y),42.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "28" + ], + "split": "dev" + }, + { + "Input": "0.5 of a number is 2 more than 0.25 of the number. Find the number.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([2.0+(0.25*x)-(0.5*x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "dev" + }, + { + "Input": "Two airplanes left the same airport traveling in opposite directions. If one airplane averages 400 miles per hour and the other 250 miles per hour , how many hours will it take for the distance between them be 1625 miles? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([1625.0-((250.0*x)+(400.0*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "2.5" + ], + "split": "dev" + }, + { + "Input": "A total of 32,000 dollars is invested in 2 municipal bonds that pay 5.75 % and 6.25 % simple interest. The investor wants an annual interest income of 1900 dollars from the investments. What amount should be invested in the 5.75 % bond? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1900.0-(((5.75*0.01)*x)+((6.25*0.01)*y)),32000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "20000" + ], + "split": "dev" + }, + { + "Input": "Joe sold 30 peaches from his tree for a total of 7.50 dollars. He sold the small ones for 20 cents each and the large ones for 35 cents each. How many small ones did he sell? How many large ones did he sell?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([7.5-((20*.01*x)+(35*.01*y)),30.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "dev" + }, + { + "Input": "A semi truck travels on a paved road for 2 hours at an average speed of 20 miles per hour faster than it travels on a dirt road. The time spent on the dirt is 3 hours. If the entire trip is 200 miles , how fast is the truck traveling on the dirt road? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([200.0-((2.0*x)+(3.0*y)),20.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "32" + ], + "split": "dev" + }, + { + "Input": "Find 2 numbers whose sum is 64 and whose difference is 4. What is the smaller number? What is the larger number?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([64.0-(x+y),4.0-(x-y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "dev" + }, + { + "Input": "A theater sold 900 tickets to a play. Floor seats cost 12 dollars each and balcony seats 10 dollars each. Total receipts were 9,780 dollars. How many floor seats were sold? How many balcony seats were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([9780.0-((12.0*x)+(10.0*y)),900.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "390" + ], + "split": "dev" + }, + { + "Input": "A baseball player has a batting average of 0.320 with 192 hits in 600 bats. His average against left-handed pitching is 0.250. Against right-handed pitching it is 0.350. How many times did he bat against left-handers? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([192.0-((0.25*x)+(0.35*y)),600.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "180" + ], + "split": "dev" + }, + { + "Input": "The sum of 2 numbers is 10. 3 times one of them is more than 4 times the second by 2. Find the smaller number. Find the larger number.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(4.0*x)+2.0-(3.0*y),10.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": "Lane invested 22,000 dollars , part at 8 % and part at 7 %. If the total interest at the end of the year is 1,710 dollars , how much did she invest at 8 %? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1710.0-(((8.0*0.01)*x)+((7.0*0.01)*y)),22000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "17000" + ], + "split": "dev" + }, + { + "Input": "The difference between two numbers is 6. If you double both numbers , the sum is 36. Find the two numbers. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([36.0-((2.0*x)+(2.0*y)),6.0-(x-y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "dev" + }, + { + "Input": "An auditorium has 500 balcony seats and 1800 main-level seats. If tickets for balcony seats will cost 15 dollars less than tickets for main-level seats , what should the prices be for the main-level seats and prices for the balcony seats , so that the total revenue from a sellout performance will be 84,500? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([84500.0-((500.0*x)+(1800.0*y)),y-15.0-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "dev" + }, + { + "Input": "Your teacher is giving you a test worth 100 points and containing 40 questions. There are 2 point and 4 point questions on the test. How many two point questions are there? How many 4 point questions? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([100.0-((2.0*x)+(4.0*y)),40.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "dev" + }, + { + "Input": "If 530 pesos can buy 4 kilograms of fish and 2 kilograms of pork while 875 pesos can buy 7 kilograms of fish and 3 kilograms of pork , how much does a kilogram of fish cost? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([530.0-((4.0*x)+(2.0*y)),875.0-((7.0*x)+(3.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "80" + ], + "split": "dev" + }, + { + "Input": "Colombian coffee beans cost 5.50 dollars per pound, while Peruvian coffee beans cost 4.25 dollars per pound. We want to mix the beans together so as to produce a 40-pound bag , costing 4.60 dollars per pound. How many pounds of Columbian beans and how many pounds of Peruvian beans should be used? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([40.0*4.6-((5.5*x)+(4.25*y)),40.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "11.2" + ], + "split": "dev" + }, + { + "Input": "Adult tickets for a show cost 5.50 dollars while children 's tickets cost 2.50 dollars. If there were twice as many adults as children and the total receipts for the show were 1026 dollars. How many adults were at the show?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1026.0-((5.5*x)+(2.5*y)),2.0*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "152" + ], + "split": "dev" + }, + { + "Input": "Bob invested 6100 dollars in 2 funds , which pay 7 % and 6 % simple interest respectively. The combined interest he earned for both funds was 405 dollars for one year. How many dollars was invested at 7 %? How much was invested at 6 %? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([405.0-((7*0.01*x)+(6*0.01*y)),6100.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "3900" + ], + "split": "dev" + }, + { + "Input": "kevin bought 3 muffins and a bottle of juice that cost 1.45 dollars. He paid a total of 3.70 dollars. How much did each muffin cost?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([3.7-((3.0*x)+1.45)],(x))\nprint(answer)" + ], + "Output Answer": [ + "0.75" + ], + "split": "dev" + }, + { + "Input": "Mrs. Naidu bought 155 dollars in groceries. She paid her bill with 5-dollar notes and 20-dollar notes using a total of 13 notes. How many 5-dollar notes were used? How many 20-dollar notes were used? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([155.0-((5.0*x)+(20.0*y)),13.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": "Sara and Jim both decided to save some money each week. Sara has already saved 4100 dollars , and she plans to save 10 dollars a week. Jim plans to save 15 dollars a week. In how many weeks will Jim and Sara have saved the same amount? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([15.0*x-(4100.0+(10.0*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "820" + ], + "split": "dev" + }, + { + "Input": "There are 41 animals on a farm , each of which is either a pig or a chicken. There are 100 legs altogether. How many pigs are there? How many chickens? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([100.0-((4.0*x)+(2.0*y)),41.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "Input": "In the 2000-2001 baseball season , the Seattle Mariners tied a league record set by the 1906 Chicago Cubs for most wins in a season. The Mainers won 24 more than twice as many games as they lost. They played 162 regular season games. How many wins and losses did the mariners have? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([162.0-(x+y),(2.0*y)+24.0-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "116" + ], + "split": "dev" + }, + { + "Input": "Safety Rent-a-Car rents an intermediate-size car at a daily rate of 21.95 dollars plus 0.19 per mile. City Rentals rent an intermediate-size car for 18.95 dollars plus 0.21 per mile. For what milage is the cost the same? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([18.95+(0.21*x)-(21.95+(0.19*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "150" + ], + "split": "dev" + }, + { + "Input": "A high school sold gift wrap. The gift wrap in solid colors sold for 4.00 dollars per roll and the print gift wrap sold for 6.00 dollars per roll. The total number of rolls sold was 480 rolls , and the total amount of money collected was 2,340.00 dollars. How many solid rolls were sold? How many print rolls were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2340.0-((4.0*x)+(6.0*y)),480.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "270" + ], + "split": "dev" + }, + { + "Input": "Riza was 25 when her first son was born. Today the sum of their ages is 105. How old is Riza and her son now?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([105.0-(x+y),25.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "65" + ], + "split": "dev" + }, + { + "Input": "Your teacher is giving you a test worth 100 points containing 40 questions. There are 2-point and 4-point questions on the test. How many questions are worth two points? How many questions are worth four points? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([100.0-((2.0*x)+(4.0*y)),40.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "dev" + }, + { + "Input": "The sum of two numbers is 104. The larger number is 1 less than twice the smaller number. Find the numbers.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([104.0-(x+y),(2.0*x)-1.0-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "35" + ], + "split": "dev" + }, + { + "Input": "A recipe calls for 2 cups of sugar. You find that you only have 0.3333 cups of sugar left. What fraction of the recipe can you make?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([0.3333/2.0-(x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "0.165" + ], + "split": "dev" + }, + { + "Input": "On a canoe trip , Rita paddled upstream at an average speed of 2 miles per hour relative to the riverbank. On the return trip downstream, her average speed was 3 miles per hour. Find Rita 's paddling speed in still water and the speed of the river 's current. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([3.0-(x+y),2.0-(x-y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "2.5" + ], + "split": "dev" + }, + { + "Input": "A total of 10,000 dollars is invested in 2 funds paying 5 % and 7 % annual interest. The combined annual interest is 630 dollars. How much of the 10,000 dollars is invested at 5 %? How much at 7 %? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([630.0-((5*0.01*x)+(7*0.01*y)),10000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "3500" + ], + "split": "dev" + }, + { + "Input": "The difference between 0.75 of a line and 0.4 of the same line is 28 centimeters. Find the length of the line.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([28.0-((0.75*x)-(0.4*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "80" + ], + "split": "dev" + }, + { + "Input": "Each unit of grain A contains 2 grams of fat and 80 calories , and unit B has 3 grams of fat and 60 calories. If the final product is to provide 18 grams of fat and 480 calories , how much of grain A and how much of grain B should be used. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([18.0-((2.0*x)+(3.0*y)),480.0-((80.0*x)+(60.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": "A car traveled 715 kilometers in 11 hours. What was its average speed?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([715.0/11.0-(x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "65" + ], + "split": "dev" + }, + { + "Input": "In a family there are two cars. In a given week , the first car gets an average of 25 miles per gallon , and the second car gets 40 miles per gallon. The two cars combined drives a total of 1825 miles in that one week , for a total gas consumption of 55 gallons. How many gallons were consumed by the 25 mile per gallon car and how many gallons were consumed by the 40 mile per gallon car that week? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1825.0-((25.0*x)+(40.0*y)),55.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "25" + ], + "split": "dev" + }, + { + "Input": "You had 6,800.00 dollars to spend and purchased 250 sets of dishes. If you spent everything , how many 20.00 dollars sets did you purchase? How many 45.00 dollars sets did you purchase? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([6800.0-((20.0*x)+(45.0*y)),250.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "178" + ], + "split": "dev" + }, + { + "Input": "University Theater sold 510 tickets for a play. Tickets cost 21 dollars per adult and 15 dollars per senior citizen. If total receipts were 8748 dollars , how many senior citizen tickets were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([8748.0-((21.0*x)+(15.0*y)),510.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "327" + ], + "split": "dev" + }, + { + "Input": "Wal-Mart sells thermometers for 2 dollars and hot-water bottles for 6 dollars . In December , Wal-Mart 's total sales for these two items was 1200 dollars. Customers bought 7 times as many thermometers as hot-water bottles. How many thermometers did Wal-Mart sell? How many hot-water bottles? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1200.0-((2.0*x)+(6.0*y)),7.0*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "420" + ], + "split": "dev" + }, + { + "Input": "John is writing an article. The article is limited to 48,000 words. He decides to use two types of font. Large font is 1,800 words per page , small font is 2,400 words per page. He is allowed 21 pages for this article. How many pages are in small font? How many pages are in large font? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([21.0-(x+y),48000.0-((2400.0*x)+(1800.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "17" + ], + "split": "dev" + }, + { + "Input": "Bob invested 22,000 dollars , part at 18 % and part at 14 %. If the total interest at the end of the year is 3,360 dollars , how much did he invest at 18 %? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([3360.0-(18.0*0.01*x+14.0*0.01*y),22000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "7000" + ], + "split": "dev" + }, + { + "Input": "A car rents for 50 dollars a day plus 20 cents a mile. You are on a daily budget of 88 dollars. What maximum mileage will allow you to stay within your budget?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([88.0-(50.0+((20.0*0.01)*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "190" + ], + "split": "dev" + }, + { + "Input": "The sum of two numbers is 32 and the difference is 14. Find the two numbers.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([32.0-(x+y),14.0-(x-y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "23" + ], + "split": "dev" + }, + { + "Input": "Stan invested 17,000 dollars , part at 18 % and part at 4 %. If the total interest at the end of the year is 1,380 dollars , how much did he invest at 18 %? How much at 4 %? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1380.0-(((4.0*0.01)*x)+((18.0*0.01)*y)),17000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "5000" + ], + "split": "dev" + }, + { + "Input": "The Lakers scored 43 points on a combination of 20 two point baskets and three point baskets. How many shots of two point baskets and how many shots of three point baskets were made?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([43.0-((2.0*x)+(3.0*y)),20.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "17" + ], + "split": "dev" + }, + { + "Input": "The first agency charges 20.25 dollars per day and 0.14 dollars per mile. The second agency charges 18.25 dollars per day and 0.22 dollars per mile. How many miles would you have to drive before the first agency is less expensive than the second?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([18.25+(0.22*x)-(20.25+(0.14*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "25" + ], + "split": "dev" + }, + { + "Input": "The admission fee at an amusement park is 1.5 dollars for children and 4 dollars for adults. On a certain day 315 people entered the park , and the admission fees collected 810 dollars. How many children and adults were admitted? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([810.0-((1.5*x)+(4.0*y)),315.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "180" + ], + "split": "dev" + }, + { + "Input": "A 12 ounce can of cranberry juice sells for 84 cents. Give the unit cost in cents per ounce.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([84.0/12.0-(x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": "Kay spends 250 minutes per week exercising. Her ratio of time spent on aerobics to time spent on weight training is 3 to 2. How many minutes per week does she spend on aerobics? How many minutes per week does she spend on weight training?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([3.0*x-(2.0*y),250.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "150" + ], + "split": "dev" + }, + { + "Input": "2 trains leave simultaneously traveling on the same track in opposite directions at speeds of 50 and 64 miles per hour. How many hours will it take before they are 285 miles apart?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([285.0-((50.0*x)+(64.0*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "2.5" + ], + "split": "dev" + }, + { + "Input": "River Joes 's Seafood Diner charges 6.00 dollars for a catfish dinner and 3.50 dollars for an order of popcorn shrimp. After filling 26 orders , River Joe had collected 133.50 dollars. How many orders of popcorn shrimp and catfish dinners did they sell? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([133.5-((3.5*x)+(6.0*y)),26.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "Input": "Stefans school is selling tickets to a choral performance. On the first day of ticket sales the school sold 4 senior citizen tickets and 3 student tickets for 79 dollars. The school took 246 dollars on the second day by selling 12 senior citizen tickets and 10 student tickets. Find the price of a senior citizen ticket and the price of a student ticket.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([79.0-((4.0*x)+(3.0*y)),246.0-((12.0*x)+(10.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "13" + ], + "split": "dev" + }, + { + "Input": "2 investments are made totaling 8800 dollars. For a certain year , these investments yield 1326 dollars in simple interest. Part of the 8800 dollars is invested at 16 % and part at 14 %. Find the amount invested at 16 % and 14 %. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1326.0-(((16.0*0.01)*x)+((14.0*0.01)*y)),8800.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "4700" + ], + "split": "dev" + }, + { + "Input": "A farmer grows only sunflowers and flax on his 240 acre farm. This year he wants to plant 80 more acres of sunflowers than flax. How many acres of sunflowers does the farmer need to plant? How many acres of flax?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([240.0-(x+y),80.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "160" + ], + "split": "dev" + }, + { + "Input": "If the product of 5 and a number is increased by 4 , the result is 19. What is the number? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([19.0-((5.0*x)+4.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "dev" + }, + { + "Input": "24 is divided into two parts such that 7 times the first part added to 5 times the second part makes 146. Find each part.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([146.0-((7.0*x)+(5.0*y)),24.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "13" + ], + "split": "dev" + }, + { + "Input": "A petroleum company has two different sources of crude oil. The first source provides crude oil that is 25 % hydrocarbons and the second one provides crude oil that is 75 % hydrocarbons. In order to obtain 50 gallons of crude oil that is 55 % hydrocarbons , how many gallons of crude oil must be used from each of the two sources? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(50.0*55.0)*0.01-(((25.0*0.01)*x)+((75.0*0.01)*y)),50.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "dev" + }, + { + "Input": "There are 7066 known nesting pairs of bald eagles in the lower 48 states today. This is 6649 more pairs than in 1963. How many nesting pairs of bald eagles were there in the lower 48 states in 1963?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([7066.0-(6649.0+x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "417" + ], + "split": "dev" + }, + { + "Input": "Cole 's student loans totaled 31,000 dollars. One of his loans was at 2.8 % simple interest and the other at 4.5 %. After one year , Cole owed 1024.40 dollars in interest. What was the amount of each loan? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1024.4-(((2.8*0.01)*x)+((4.5*0.01)*y)),31000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "21800" + ], + "split": "dev" + }, + { + "Input": "A teacher gives out a test of 30 problems. Each computation problem is worth 3 points. Each word problem is worth 5 points. The total points you can receive on the test is 110 points. How many computation problems are there?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([110.0-((3.0*x)+(5.0*y)),30.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "dev" + }, + { + "Input": "For a special event at the TCR spring fest , the cost of 3 adult tickets and 4 student tickets was 84 dollars and the cost of 4 adult tickets and 2 student tickets was 62 dollars. Find the admission price for an adult ticket and for a student ticket at the spring fest , in dollars. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([84.0-((3.0*x)+(4.0*y)),62.0-((4.0*x)+(2.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "dev" + }, + { + "Input": "Trinidad has 2.35 dollars in nickels and dimes. If she has 33 coins in all , how many nickels does she have? How many dimes does she have? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2.35-((0.05*x)+(0.1*y)),33.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "19" + ], + "split": "dev" + }, + { + "Input": "A company 's profit for the first half of the year is 2,750,000 dollars greater than the profit for the second half. If the total annual profit is 3,635,000 dollars , find the profit for the first half-year and the second half-year. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([3635000.0-(x+y),2750000.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "3192500" + ], + "split": "dev" + }, + { + "Input": "The sum of 2 numbers is 24. Seven times the smaller number is the same as 5 times the larger number. Find the smaller number. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([5.0*x-(7.0*y),24.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "dev" + }, + { + "Input": "Michael rented a truck for one day. There was a rental fee of 20.99 dollars , and there also was a charge of 25 cents for each mile. Michael paid 95.74 dollars when he returned the truck. For how many miles did he drive the truck? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([95.74-(20.99+((25.0*0.01)*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "299" + ], + "split": "dev" + }, + { + "Input": "Six apples and three oranges cost 1.77 dollars. Two apples and five oranges cost 1.27 dollars. Find the cost of each apple and the cost of an orange. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1.77-((6.0*x)+(3.0*y)),1.27-((2.0*x)+(5.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "0.21" + ], + "split": "dev" + }, + { + "Input": "The difference between 2 times a number and -8 is -12. Find the number.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([(-12.0)-((2.0*x)-(-8.0))],(x))\nprint(answer)" + ], + "Output Answer": [ + "-10" + ], + "split": "dev" + }, + { + "Input": "Mary began walking home from school , heading south at a rate of 4 miles per hour. Sharon left school at the same time heading north at 6 miles per hour. How long will it take for them to be 3 miles apart? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([3.0-((4.0*x)+(6.0*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "0.3" + ], + "split": "dev" + }, + { + "Input": "Pedro goes to the market and buys a total of 32 plums and peaches for 52 dollars. A plum costs 2 dollars and a peach costs 1 dollars. How many plums did Pedro buy?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([52.0-((2.0*x)+(1.0*y)),32.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "dev" + }, + { + "Input": "A self-employed contractor nearing retirement made two investments totaling 15,000 dollars. In one year , these investments yielded 1023 dollars in simple interest. Part of the money was invested at 6 % and the rest at 7.5 %. How much was invested at each rate? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1023.0-(7.5*0.01*x+6.0*0.01*y),15000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "8200" + ], + "split": "dev" + }, + { + "Input": "A plumber contractor decides to field-test two new pumps. One is rated at 180 gallons per hour and the other at 250 gallons per hour. Over a period of 6 hours , she pumps a total of 1325 gallons. How many hours were used by the 180 gallons per hour pump? How many hours were used by the 250 gallons per hour pump? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1325.0-((180.0*x)+(250.0*y)),6.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "2.5" + ], + "split": "dev" + }, + { + "Input": "Terry did all 25 problems on his test and got an 85. Scores are computed by giving 4 points for each right answer and subtracting one point for each wrong answer. How many problems did terry get right and wrong?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([85.0-((4.0*x)-(1.0*y)),25.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "22" + ], + "split": "dev" + }, + { + "Input": "Kerry asked a bank teller to cash a 390 dollars check using 20-dollar bills and 50-dollar bills. If the teller gave her a total of 15 bills , how many 20-dollar bills did she get? How many 50-dollar bills? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([390.0-((20.0*x)+(50.0*y)),15.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "dev" + }, + { + "Input": "The sum of 5 and a number is 20. Find the number.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([20.0-(5.0+x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "dev" + }, + { + "Input": "Tickets to a local movie were sold at 4 dollars for adults and 2.50 dollars for students. If 59 tickets were sold for a total of 222.50 dollars , how many student tickets were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([222.5-((4.0*x)+(2.5*y)),59.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "dev" + }, + { + "Input": "The Rhapsody Theater sold 800 total tickets. An advanced ticket costs 14.50 dollars and a ticket at the door costs 22.00 dollars. In all , 16,640 dollars was taken in. How many tickets were sold at the door? How many advanced tickets were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([16640.0-((22.0*x)+(14.5*y)),800.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "672" + ], + "split": "dev" + }, + { + "Input": "A bricklayer and an electrician together spend 90 hours working on a new house. If the bricklayer earns 12 dollars per hour , the electrician earns 16 dollars an hour , and the owner pays them a total of 1350 dollars for their work , how many hours does the bricklayer work? How many hours does the electrician work? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1350.0-((12.0*x)+(16.0*y)),90.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "22.5" + ], + "split": "dev" + }, + { + "Input": "At Al 's Rent-a-Center , it costs 30 dollars more per month to rent a leather couch than it does to rent a microfiber couch. Pauline rented a leather couch for 8 months and then exchanged it for a microfiber couch , which she rented for 12 months. She paid a total of 1620 dollars to rent these couches. Solve this system of equations to find the monthly rental charge for the leather couch , in dollars. Find the monthly rental charge for the microfiber couch. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1620.0-((8.0*x)+(12.0*y)),30.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "99" + ], + "split": "test" + }, + { + "Input": "Arianne is mixing a solution for Chemistry class. She has a 25 % copper solution and a 50 % copper solution. How many milliliters of the 25 % solution and 50 % solution should she mix to make 1000 milliliters of a 45 % solution?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([45.0*0.01*1000.0-(((25.0*0.01)*x)+((50.0*0.01)*y)),1000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "200" + ], + "split": "test" + }, + { + "Input": "The number of boys in eighth grade is 16 less than twice the number of girls. There are 68 students in eighth grade. How many are girls?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([x-((2.0*y)-16.0),68.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "28" + ], + "split": "test" + }, + { + "Input": "Think of a number , half it and the result is 9. Find the number. ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([9.0-(0.5*x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "test" + }, + { + "Input": "Mitch is buying candy bars for his friends. He wants to give 2 bars to each friend , and he wants to have 10 spare bars. He can afford to buy 24 candy bars. How many friends can he treat? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([24.0-((2.0*x)+10.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "test" + }, + { + "Input": "Jordan 's salary is 1250 dollars a month plus a 5 % commission on all of his sales. What must the amount of his sales be , in dollars , for him to earn at least 1500 dollars each month? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([1500.0-(1250.0+(5*0.01*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "5000" + ], + "split": "test" + }, + { + "Input": "Rowan can row 26 kilometers downstream in 2 hours. Returning upstream it takes 4 hours to complete the trip. Find his rate in still water in kilometers per hour and the rate of the current.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([26.0-((x+y)*2.0),26.0-((x-y)*4.0)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "9.75" + ], + "split": "test" + }, + { + "Input": "The total number of Democrats and Republicans in the House of Representatives was 434. There were 30 more Republicans then Democrats. How many Democrats and Republicans were there in the Senate?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([434.0-(x+y),y-30.0-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "202" + ], + "split": "test" + }, + { + "Input": "Maria added a white vinegar solution of acetic acid in water. There are 2 strengths of white vinegar, a 5 % solution and a 10 % solution. How many milliliters of the 5 % solution and the 10% solution must she mix to make 50 milliliters of a 9 % vinegar solution?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([9.0*0.01*50.0-(((5.0*0.01)*x)+((10.0*0.01)*y)),50.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": "An investor will invest a total of 15000 dollars in 2 accounts , one paying 4 % annual simple interest and the other 3 %. If he wants to earn 550 dollars annual interest , how much should he invest at 4 %? How much at 3 %? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([550.0-(((3.0*0.01)*x)+((4.0*0.01)*y)),15000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "10000" + ], + "split": "test" + }, + { + "Input": "Purses cost 7 dollars each. Scarves cost 8 dollars each. 17 combined items sold costing 130 dollars total. How many purses were sold? How many scarves were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([130.0-((7.0*x)+(8.0*y)),17.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "test" + }, + { + "Input": "Your teacher is giving a test worth 200 points. There is a total of 30 5-point and 10-point questions. How many 5-point questions are on the test?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([200.0-((5.0*x)+(10.0*y)),30.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": "The sum of 2 numbers is 70. The larger number is 2 more than 3 times the smaller number. Find the smaller number. Find the larger number.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([70.0-(x+y),(3.0*x)+2.0-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "17" + ], + "split": "test" + }, + { + "Input": "A merchant wants to combine peanuts selling 2.40 dollars per pound and cashews selling for 6.00 dollars per pound to form 60 pounds which will sell at 3.00 dollars per pound. What amount of peanuts and what amount of cashews must be used?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([60.0*3.0-((2.4*x)+(6.0*y)),60.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "50" + ], + "split": "test" + }, + { + "Input": "One number is 3 more than twice a second number. Their sum is 27. Find the smaller number. Find the larger number.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([27.0-(x+y),(2.0*y)+3.0-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": "A 40 % acid solution and a 55 % acid solution must be mixed to produce 60 liters of a 45 % acid solution. How many liters of 40 % acid solution should be used? How many liters of 55 % acid solution should be used?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([45.0*0.01*60-(((40.0*0.01)*x)+((55.0*0.01)*y)),60.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "test" + }, + { + "Input": "The sum of 2 numbers is 138. If three times the smaller number is subtracted from the larger number , the result is 22. Find the two numbers. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([138.0-(x+y),22.0-(y-(3.0*x))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "29" + ], + "split": "test" + }, + { + "Input": "A building with 12 units consists of 1 bedrooms costing 360 dollars and 2 bedrooms costing 450 dollars respectively. When all units are full the total is 4950 dollars. How many 2 bedroom units are there?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([4950.0-((360.0*x)+(450.0*y)),12.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "test" + }, + { + "Input": "A piece of rope 60 meters long is cut into two pieces so that the longest piece is twice as long as the shorter piece. How long are the two pieces? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([x-(2.0*y),60.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": "In a family there are two cars. The sum of the average miles per gallon obtained by the two cars in a particular week is 75 miles per gallon. The first car has consumed 25 gallons during that week , and the second has consumed 35 gallons , for a total of 2275 miles driven by the two cars combined. What was the average gas mileage obtained by the first car that week? What was the average gas mileage obtained by the second car that week? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2275.0-((25.0*x)+(35.0*y)),75.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "35" + ], + "split": "test" + }, + { + "Input": "A special tea blend is made from two varieties of herbal tea , one that costs 4.00 dollars per kilogram and another that costs 2.00 dollars per kilogram. How many kilograms of each type are needed to make 20 kilograms of a blend worth 2.50 dollars per kilogram? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([20.0*2.5-((2.0*x)+(4.0*y)),20.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": "The sum of 0.75 of a number and two is eight. Find the number. ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([8.0-((0.75*x)+2.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": "Maggie has a job working in an office for 10 dollars an hour and another job driving a tractor for 12 dollars an hour. One week she works in the office twice as long as she drives the tractor. Her total income for that week is 416 dollars. How many hours did she spend at the office? How many hours driving the tractor?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([416.0-((10.0*x)+(12.0*y)),2.0*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "26" + ], + "split": "test" + }, + { + "Input": ".833 of a number is -60. What is the number?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([(-60.0)-(0.833*x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "-72" + ], + "split": "test" + }, + { + "Input": "Find two numbers whose sum is 55 and whose difference is 15.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([55.0-(x+y),15.0-(x-y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": "Goran will rent a car for the weekend. He can choose 1 of 2 plans. The first plan has an initial fee of 65 dollars and costs an additional 0.40 dollars per mile driven. The second plan has no initial fee but costs 0.60 dollars per mile driven. How many miles would Goran need to drive for the 2 plans to cost the same?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([0.6*x-(65.0+(0.4*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "325" + ], + "split": "test" + }, + { + "Input": "El Segundo High School put on their annual musical. The students sold 650 tickets for a value of 4375 dollars. If orchestra seats cost 7.50 dollars and balcony seats cost 3.50 dollars , how many orchestra seats were sold , and how many balcony seats were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([4375.0-((7.5*x)+(3.5*y)),650.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "525" + ], + "split": "test" + }, + { + "Input": "Marco has 150 coins , all nickels and dimes. He has 12 more dimes than nickels. How many nickels and how many dimes does he have? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([x-(12.0+y),150.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "69" + ], + "split": "test" + }, + { + "Input": "During 2005 major league baseball season , the Chicago White Sox played 162 games. They won 36 more than they lost. How many games did they win , and how many did they lose? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([162.0-(x+y),36.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "99" + ], + "split": "test" + }, + { + "Input": "They charged 7 dollars for adults and 5 dollars for children. 127 adults and children attended , and 839 dollars was made from ticket sales. How many children and adults went to the film premiere? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([839.0-((5.0*x)+(7.0*y)),127.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "25" + ], + "split": "test" + }, + { + "Input": "The second number is 3 less than twice the first number. Their sum is 57. Find the second number.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(2.0*x)-3.0-(y),57.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "37" + ], + "split": "test" + }, + { + "Input": "At its Grand Opening , the Guthrie Market distributed two different types of souvenirs. One type cost 20 cents each , and the other type cost 25 cents each. One thousand souvenirs were distributed in all. If the cost of these souvenirs was 220 dollars. How many of 20 cents and 25 cents souveniers were distributed? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([220.0-((20*.01*x)+(25*.01*y)),1000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "600" + ], + "split": "test" + }, + { + "Input": "A movie theater charges 7.50 dollars for adults and 4.50 dollars for children. The receipts for a showing of a movie were 540 dollars. If 80 tickets were sold , find how many adult tickets were sold. Find how many child tickets were sold. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([540.0-((7.5*x)+(4.5*y)),80.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "60" + ], + "split": "test" + }, + { + "Input": "During a 4th of July weekend , 32 vehicles became trapped on the Sunshine Skyway Bridge while it was being repaved. A recent city ordinance decreed that only cars with 4 wheels and trucks with six wheels could be on the bridge at any given time. If there were 148 tires that needed to be replaced to due to damage , how many cars and trucks were involved in the incident? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([148.0-((4.0*x)+(6.0*y)),32.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "22" + ], + "split": "test" + }, + { + "Input": "The sum of 2 numbers is 15. 3 times one of the numbers is 11 less than 5 times the other. What is the smaller number? What is the larger number?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(5.0*x)-11.0-(3.0*y),15.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "test" + }, + { + "Input": "2 teachers are going to a conference for a few days. Mrs. Jerrerson plans on spending 502 dollars on 14 meals and 4 nights in a hotel. Mrs. Lloyd plans on spending 370 dollars on 10 meals and 3 nights in a hotel. How much are they planning on spending per meal and per night for a hotel?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([502.0-((14.0*x)+(4.0*y)),370.0-((10.0*x)+(3.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "13" + ], + "split": "test" + }, + { + "Input": "A grocer bought 12 bushels of Baldwin and McInotosh apples. Baldwins costs 95 cents a bushel , but McIntosh cost only 90 cents a bushel. If he paid 11.00 dollars for the lot , how many bushels of Baldwins did he get? How many bushels of McIntosh? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([11.0-((95*.01*x)+(90*.01*y)),12.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": "It took me 6 minutes to walk 500 meters. How fast was I travelling?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([500.0/6.0-(x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "83.33" + ], + "split": "test" + }, + { + "Input": "One number exceeds another by 10 and their sum is 34. Find the larger number.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([34.0-(x+y),10.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "22" + ], + "split": "test" + }, + { + "Input": "For his long distance phone calls , John pays a 5 dollars monthly fee plus 25 cents per minute. Last month , John 's long distance bill was 12.02 dollars. For how many minutes was John billed? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([12.02-(5.0+((25.0*0.01)*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "28.08" + ], + "split": "test" + }, + { + "Input": "Find the amount of 6 percent acid solution and the amount of a 14 percent acid solution that Pat should combine to prepare 50 cubic-centimeters of 12 percent solution.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([12.0*0.01*50.0-(((6.0*0.01)*x)+((14.0*0.01)*y)),50.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "12.5" + ], + "split": "test" + }, + { + "Input": "The state market has 27 more apples than oranges. There are 301 apples and oranges all together. How many apples are in the market?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([301.0-(x+y),27.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "164" + ], + "split": "test" + }, + { + "Input": "Steve has 36 coins consisting of dimes and nickels. If the value of the coins is 3.10 dollars , then how many dimes does he have? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([3.1-((0.05*x)+(0.1*y)),36.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "26" + ], + "split": "test" + }, + { + "Input": "Manuel opened a savings account with an initial deposit of 177 dollars. If he wants to save 500 dollars during the next 19 weeks , how much must he save each week , in dollars? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([500.0-(177.0+(19.0*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "17" + ], + "split": "test" + }, + { + "Input": "The owner of the Most Amazing Circus was counting the money from one day 's ticket sales. He knew that a total of 522 tickets were sold. Adult tickets cost 15 dollars each and children 's tickets cost 8 dollars each. If the total receipts for the day were 5086.00 dollars , how many adult tickets were sold? How many children 's tickets? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([5086.0-((15.0*x)+(8.0*y)),522.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "130" + ], + "split": "test" + }, + { + "Input": "The second of two numbers is 4 more than the first. The sum is 56. Find the first and second numbers. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([x-(4.0+y),56.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "26" + ], + "split": "test" + }, + { + "Input": "During the 1998-1999 Little League season , the Tigers played 57 games. They lost 21 more games than they won. They did n't tie any. How many games did they win that season? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([57.0-(x+y),21.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "test" + }, + { + "Input": "To make 10 kilograms of aluminum alloy with 60 % aluminum , a scientist wants to use 2 metals with 45 % and 70 % aluminum content respectively. How many kilograms of 45 % aluminum and how many kilograms of 70 % aluminum should she mix?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(10.0*60.0)*0.01-(((45.0*0.01)*x)+((70.0*0.01)*y)),10.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": "A farmer has cows and chickens. He only sees 50 legs and 18 heads. How many are cows and how many are chickens?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([50.0-((4.0*x)+(2.0*y)),18.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "test" + }, + { + "Input": "Walt made an extra 9000 dollars last year from a part-time job. He invested part of the money at 9 % and the rest at 8 %. He made a total of 770 dollars in interest. How much was invested at 8 %?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([770.0-(((9.0*0.01)*x)+((8.0*0.01)*y)),9000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "4000" + ], + "split": "test" + }, + { + "Input": "A 69 inch board is cut into 2 pieces. One piece is 2 times the length of the other. What is the length of the shorter piece , in inches? What is the length of the longer piece? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([69.0-(x+y),2.0*x-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "23" + ], + "split": "test" + }, + { + "Input": "Find a number such that 1 more than 0.6667 the number is 0.75 the number.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([0.75*x-(1.0+0.6667*x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "test" + }, + { + "Input": "A cosmetologist has a bottle of 7 % hydrogen peroxide solution and a bottle of 4 % hydrogen peroxide solution. The cosmetologist needs 300 milliliters of a 5 % hydrogen peroxide solution. Find how many milliliters of each solution the cosmetologist needs to mix together.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([5.0*0.01*300.0-(((7.0*0.01)*x)+((4.0*0.01)*y)),300.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "100" + ], + "split": "test" + }, + { + "Input": "The greater of two numbers is 8 times the lesser and their sum is 180. Find the numbers.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([180.0-(x+y),8.0*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": "Honda day shift produced 4 times as much as second shift. The total production for the month was 5,500 cars. How many did the day shift produce? How many did the second shift produce? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([5500.0-(x+y),4.0*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "4400" + ], + "split": "test" + }, + { + "Input": "The Coffee Counter charges 9.00 dollars per pound for Kenyan French Roast coffee and 8.00 dollars per pound for Sumatran coffee. How many pounds of Kenyan French Roast and Sumatran should be used to make a 20-pound blend that sells for 8.40 dollars per pound?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([20.0*8.4-((9.0*x)+(8.0*y)),20.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": "Two cars leave the same point , traveling in opposite directions. If one travels at a constant speed of 52 miles per hour and the other travels at a constant speed of 58 miles per hour. In how many hours will they be 385 miles apart? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([385.0-((52.0*x)+(58.0*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "3.5" + ], + "split": "test" + }, + { + "Input": "A peach and a apple cost 70 cents. The peach is more expensive than the apple by 60 cents. What is the cost a peach , in cents? What is the cost of an apple , in cents? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([70.0-(x+y),60.0-(x-y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "65" + ], + "split": "test" + }, + { + "Input": "Donna invested her 33,000 dollars bonus and received a total of 970 dollars in interest after one year. If part of the money returned 4 % and the remainder 2.25 % then how much did she invest at each rate? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([970.0-(((2.25*0.01)*x)+((4.0*0.01)*y)),33000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "13000" + ], + "split": "test" + }, + { + "Input": "Amber has 30 coins in nickels and dimes. In all she has 2.10 dollars. How many nickels and dimes does she have?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2.1-((0.05*x)+(0.1*y)),30.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "test" + }, + { + "Input": "Tim and Judy mix two kinds of feed for pedigreed dogs. They wish to make 35 pounds of feed worth 0.36 dollars per pound by mixing one kind worth 0.18 dollars per pound with another worth 0.53 dollars per pound. How many pounds of the cheaper kind should they use in the mix?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([35.0*0.36-((0.18*x)+(0.53*y)),35.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "17" + ], + "split": "test" + }, + { + "Input": "A catering company is setting up tables for a big event that will host 764 people. When they set up the tables they need 2 forks for each child and 5 forks for each adult. If the company ordered a total of 2992 forks , how many adults and how many children will be attending the event? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2992.0-((5.0*x)+(2.0*y)),764.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "488" + ], + "split": "test" + }, + { + "Input": "You have exactly 537 dollars to spend on party gifts for your rich uncle 's birthday party. You decide to get watches for the ladies at 27.98 dollars each , and beepers for the men at 23.46 dollars each. You know that the number of watches required will be 3 times as much as the number of beepers. How many watches do you buy? How many beepers do you buy? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([537.0-((27.98*x)+(23.46*y)),3.0*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "test" + }, + { + "Input": "Paul has 30 postcards. He has 4 times as many large postcards as small postcards. How many small postcards does he have? How many large postcards?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([30.0-(x+y),4.0*x-(y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "test" + }, + { + "Input": "X pounds of candy valued at 3.50 dollars per pound is mixed with Y pounds of candy valued at 4.30 dollars per pound to produce 10 pounds of a mixture selling for 4 dollars per pound. Find X and Y , the number of pounds of each type. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([10.0*4.0-((3.5*x)+(4.3*y)),10.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "3.75" + ], + "split": "test" + }, + { + "Input": "The Willey Farm Collective , farmed by several branches of the Willeys , has 4500 acres of land available for raising corn and wheat. The cost of raising corn is 42 dollars an acre , while the cost of wheat is 35 dollars an acre. The Collective 's available capital is 165,200 dollars. How many acres of corn should the Collective plant? How many acres of wheat should the collective plant? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([165200.0-((42.0*x)+(35.0*y)),4500.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "1100" + ], + "split": "test" + }, + { + "Input": "There are 30 legs and 13 heads of goats and chicken , so how may goats and chicken are there? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([30.0-((4.0*x)+(2.0*y)),13.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "test" + }, + { + "Input": "Soft drinks are on sale at the grocery store for 2.99 dollars for a 12 pack. How much would each can of soft drink cost if purchased individually , in dollars? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([2.99/12.0-(x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "0.25" + ], + "split": "test" + }, + { + "Input": "Suzy has a piggy bank consisting of nickels and dimes. If there are 30 coins worth 1.90 dollars , how many nickels and dimes are in the bank? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1.9-(0.05*x+0.1*y),30.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "22" + ], + "split": "test" + }, + { + "Input": "0.20 of a number decreased by 4 is equal to 6. Find the number.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([6.0-((0.2*x)-4.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "50" + ], + "split": "test" + }, + { + "Input": "A store is selling compact discs for 10.50 dollars and 8.50 dollars. You buy 10 discs and spend a total of 93 dollars. How many compact discs did you buy that cost 10.50 dollars? How many did you buy that cost 8.50 dollars? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([93.0-((10.5*x)+(8.5*y)),10.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": "There are 22 chickens and cows on a farm. Together they have 60 legs. How many chickens are there? How many cows?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([60.0-((2.0*x)+(4.0*y)),22.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "14" + ], + "split": "test" + }, + { + "Input": "A bottle of wine with a cork cost 2.10 dollars. A bottle of wine without a cork costs 2.00 dollars more than the cork. What is the price of the cork?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2.1-(x+y),2.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "0.05" + ], + "split": "test" + }, + { + "Input": "A car rented for 29 dollars per day plus 0.08 dollars per mile. Julia paid 46.12 dollars for a 1-day rental. How far did she drive , in miles? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([46.12-(29.0+(0.08*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "214" + ], + "split": "test" + }, + { + "Input": "The Johnson Farm has 500 acres of land allotted for cultivating corn and wheat. The cost of cultivating corn and wheat is 42 dollars for corn and 30 dollars for wheat. Mr.Johnson has 18,600 dollars available for cultivating these crops. If he used all the land and entire budget , how many acres of corn and how many acres of wheat should he plant? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([18600.0-((42.0*x)+(30.0*y)),500.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "300" + ], + "split": "test" + }, + { + "Input": "Three times a number minus a second number is 20. The sum of the two numbers is 48. Find the two numbers.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([20.0-((3.0*x)-y),48.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "17" + ], + "split": "test" + }, + { + "Input": "A hotel purchased 38 bath towels and 61 washcloths for a total cost of 791.50 dollars. A second purchase of 54 bath towels and 50 washcloths , at the same prices , cost 923 dollars. Find the individual prices of the bath towels and washcloths. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([791.5-((38.0*x)+(61.0*y)),923.0-((54.0*x)+(50.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "test" + }, + { + "Input": "In a given week , the first car gets an average of 30 miles per gallon , and the second car gets 25 miles per gallon. The two cars combined drive a total of 1700 miles in that week , for a total gas consumption of 60 gallons. How many gallons were consumed by the first car that week? How many gallons were consumed by the second car that week? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1700.0-((30.0*x)+(25.0*y)),60.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "test" + }, + { + "Input": "Two rainstorms occurred in one week in a certain area. The first storm lasted 20 hours , and the second storm lasted 40 hours , for a total 1800 milliliters of rain. What was the rate of rainfall in milliliters per hour for the first and second storms if the sum of the two rates was 55 milliliters per hour? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1800.0-((20.0*x)+(40.0*y)),55.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": "Jane has a dress shop. She has space for 200 dresses. She sells only red and blue dresses. After reading several fashion magazines she decides to stock her shelves with 34 more blue dresses than red dresses. How many blue dresses and red dresses should she stock?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([34.0+x-(y),200.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "117" + ], + "split": "test" + }, + { + "Input": "Pat invested a total of 3,000 dollars. Part of the money yields 10 percent interest per year and the rest yields 8 percent interest per year. If the total yearly interest from this investment is 256 dollars , how much did Pat invest at 10 percent and how much at 8 percent? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([256.0-(((8.0*0.01)*x)+((10.0*0.01)*y)),3000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "800" + ], + "split": "test" + }, + { + "Input": "Admission to an amusement park is 8 dollars for adults and 5 dollars for children. If 201 dollars was paid for 33 tickets , how many adult tickets were purchased? How many children 's tickets were purchased? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([201.0-((8.0*x)+(5.0*y)),33.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "test" + }, + { + "Input": "The world 's oldest bride was 19 yr older than her groom. Together , their ages totaled 185 years. How old was the bride? How old was the groom? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([185.0-(x+y),19.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "102" + ], + "split": "test" + }, + { + "Input": "You and a friend go to a Mexican restaurant. You order 2 tacos and 3 enchiladas , and your friend orders 3 tacos and 5 enchiladas. Your bill is 7.80 dollars plus tax , and your friend 's bill is 12.70 dollars plus tax. How much , in dollars , does each taco cost? How much does each enchilada cost? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([7.8-((2.0*x)+(3.0*y)),12.7-((3.0*x)+(5.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "0.9" + ], + "split": "test" + }, + { + "Input": "There are some 2-dollar coins and some 5-dollar coins. There are 40 coins , which give a total amount of 125 dollars. How many 2-dollar coins are there? How many 5-dollar coins are there? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([125.0-((2.0*x)+(5.0*y)),40.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "25" + ], + "split": "test" + }, + { + "Input": "A boat travels 45 miles upstream in 5 hours. The boat travels the same distance downstream in 3 hours. What is the speed of the boat in still water in miles per hour? What is the speed of the current in miles per hour? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([45.0-((x+y)*3.0),45.0-((x-y)*5.0)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "test" + }, + { + "Input": "The sum of two numbers is 40 , one number is 8 more than the other. Find the numbers. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([40.0-(x+y),8.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "test" + }, + { + "Input": "How many milliliters of a 10 % HCL solution should be combined with a 60 % HCL solution in order to get 50 milliliters of a 30 % HCL solution?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([30.0*0.01*50.0-(10.0*0.01*x+60.0*0.01*y),50.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "test" + }, + { + "Input": "The sum of 2 numbers is 64 and their difference is 18. What is the first number? What is the second number?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([64.0-(x+y),18.0-(x-y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "41" + ], + "split": "test" + }, + { + "Input": "A rancher raises 5 times as many cows as horses. If he has 168 animals , how many cows does he have? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([168.0-(x+y),5.0*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "140" + ], + "split": "test" + }, + { + "Input": "You have 30 total items that consist of hats and boots. The total cost is 190.00 dollars. Boots cost 9.00 dollars and hats cost 5.00 dollars. How many boots are there? How many hats?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([190.0-((9.0*x)+(5.0*y)),30.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": "Didi invested a total of 12,000 dollars in two accounts paying 7.5 % and 6 % simple interest. If her total return at the end of the first year was 840 dollars , how much did she invest in each account? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([840.0-(7.5*0.01*x+6.0*0.01*y),12000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "8000" + ], + "split": "test" + }, + { + "Input": "3 footballs and 1 soccer ball cost 155 dollars. 2 footballs and 3 soccer balls cost 220 dollars. Determine the cost of 1 football and the cost of one soccer ball , in dollars. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([155.0-((3.0*x)+(1.0*y)),220.0-((2.0*x)+(3.0*y))],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "35" + ], + "split": "test" + }, + { + "Input": "There are 2 numbers whose sum is 65 , such that one is 4 times as large as the other. What is the smaller number? What is the larger number? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([x-(4.0*y),65.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "13" + ], + "split": "test" + }, + { + "Input": "A high school graduating class is made up of 485 students. There are 69 more girls than boys. How many boys are in the class?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([485.0-(x+y),y-69.0-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "208" + ], + "split": "test" + }, + { + "Input": "36 more than the product of three and x is the same as 48. Solve for x.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([48.0-((3.0*x)+36.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": "An embossing shop etches metal with acid solutions. The owner is discussing a certain job with the job supervisor , and they decide to use 30 ounces of a 40 % solution. Upon checking the acid solution supplies , the supervisor has found some 25 % acid solution and some 50 % acid solution , but there is no 40 % acid solution. The owner explains to the supervisor how the two existing solutions can be mixed to obtain a 40 % acid solution. How much of each solution is needed? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([40.0*0.01*30.0-(((25.0*0.01)*x)+((50.0*0.01)*y)),30.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "test" + }, + { + "Input": "The sum of two numbers is 48. The difference between three times the smaller number and the larger number is 16. Find the smaller number and the larger number.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([16.0-((3.0*x)-y),48.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "test" + }, + { + "Input": "One canned juice drink is 30 % orange juice ; another is 5 % orange juice. How many liters of each should be mixed together in order to get 25 liters that is 10 % orange juice?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(25.0*10.0)*0.01-(((30.0*x)*0.01)+((5.0*y)*0.01)),25.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": "A total of 10,000 dollars was invested in two bond mutual funds , a junk bond fund and a government bond fund. The junk fund is risky and yields 11 % interest. The safer government bond fund yields only 5 %. The year 's total income from the two investments was 740 dollars. How much was invested in each fund? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([740.0-(((11.0*0.01)*x)+((5.0*0.01)*y)),10000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "4000" + ], + "split": "test" + }, + { + "Input": "Steve invests in a circus production. The coast includes an overhead of 81,000 dollars , plus production costs of 7,000 dollars per performance. A sold-out performance brings in 16,000 dollars , Determine the number of sold-out performances , x , needed to break even. ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([16000.0*x-(81000.0+(7000.0*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": "Two times the first number is one more than the second number. If their sum is -64 , what are the two numbers? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1.0+x-(2.0*y),(-64.0)-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "-21" + ], + "split": "test" + }, + { + "Input": "Two cyclists start at the same point and travel in opposite directions. One cyclist travels 8 kilometers per hour faster than the other. If the two cyclists are 270 kilometers apart after 5 hours what is the rate of each cyclist?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([270.0-((5.0*x)+(5.0*y)),8.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "23" + ], + "split": "test" + }, + { + "Input": "1 out of 2 numbers is thrice the other. If their sum is 124 , find the numbers. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([124.0-(x+y),3.0*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "31" + ], + "split": "test" + }, + { + "Input": "The length of a rectangular field is 24 meters. This is 3 meters less than twice the width. Find the width.", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([24.0-((2.0*x)-3.0)],(x))\nprint(answer)" + ], + "Output Answer": [ + "13.5" + ], + "split": "test" + }, + { + "Input": "Adult tickets for a play cost 11 dollars and the child tickets cost 10 dollars. If there were 23 people at a performance and the theater collected 246 dollars from tickets sales , how many children attended the play? How many adults attended the play? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([246.0-((10.0*x)+(11.0*y)),23.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "test" + }, + { + "Input": "Safety Rent A Truck costs 41.95 dollars plus 0.29 dollars per mile. City Rentals rents the truck for 38.95 dollars plus 0.31 dollars per mile. For what mileage are the costs the same?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([38.95+(0.31*x)-(41.95+(0.29*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "150" + ], + "split": "test" + }, + { + "Input": "A textbook costs a bookstore 44 dollars , and the store sells it for 55 dollars. Find the amount of profit based on the selling price. ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([55.0-44.0-(x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "11" + ], + "split": "test" + }, + { + "Input": "The sum of 2 numbers is 43. Twice the larger number exceeds 3 times the smaller number by 16. Find the number.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([16.0+(3.0*x)-(2.0*y),43.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "14" + ], + "split": "test" + }, + { + "Input": "Tickets at a local theater cost 6 dollars for adults and 2 dollars dollars for kids under twelve. If 175 tickets were sold and the profit was 750 dollars , how many kid tickets were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([750.0-((6.0*x)+(2.0*y)),175.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "75" + ], + "split": "test" + }, + { + "Input": "A woman has 450 dollars invested , part at 2 % and the remainder at 3 % simple interest. If the total annual income is 11 dollars , how much is invested at 2 % , in dollars? How much is invested at 3 %? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([11.0-(((2.0*0.01)*x)+((3.0*0.01)*y)),450.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "250" + ], + "split": "test" + }, + { + "Input": "Pencils cost 25 cents a piece. Pens cost 80 cents a piece. Susan spent 20 dollars for a total of 36 pens and pencils. How many pencils did she buy?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([20.0-((25.0*.01*x)+(80.0*0.01*y)),36.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "test" + }, + { + "Input": "2 snails are 264 centimeters apart. They craw toward each other at rates that differ by 6 centimeters per minute. After 22 minutes they meet. How fast is each snail crawling?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([264.0-((22.0*x)+(22.0*y)),6.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "Jill has 3.50 dollars in nickels and dimes. If she has 50 coins , how many nickels does she have? How many dimes? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([3.5-((0.05*x)+(0.1*y)),50.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "30" + ], + "split": "test" + }, + { + "Input": "For his long distance phone service Milan pays a 2 dollars monthly fee plus 12 cents per minute. Last month , Milan 's long distance bill was 23.36 dollars. For how many minutes was Milan billed for? ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([23.36-(2.0+((12.0*0.01)*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "178" + ], + "split": "test" + }, + { + "Input": "Angus invested 18,000 dollars , part at 3 % and part at 5 %. If the total interest at the end of the year is 660 dollars , how much did he invest at 3 %? At 5 %? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([660.0-((3*0.01*x)+(5*0.01*y)),18000.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "12000" + ], + "split": "test" + }, + { + "Input": "Juliet has a choice between receiving an 1800 dollars monthly salary from Furniture by Design or a base salary of 1600 dollars and a 4 % commission on the amount of furniture she sells during the month. For what amount of sales will the 2 choices be equal?", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([1800.0-(1600.0+(4*0.01*x))],(x))\nprint(answer)" + ], + "Output Answer": [ + "5000" + ], + "split": "test" + }, + { + "Input": "Tennis rackets can be packaged in cartons holding 2 rackets each or in cartons holding 3 rackets each. Yesterday 's packing slip showed that 38 cartons were used to pack a total of 100 rackets. How many cartons of 2 rackets size were used yesterday? How many cartons of 3 rackets size were used yesterday? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([100.0-((2.0*x)+(3.0*y)),38.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "14" + ], + "split": "test" + }, + { + "Input": "The Red Rose Theatre sells tickets for 4.50 dollars and 6.00 dollars. A total of 380 tickets were sold for their last performance of `` Mickey the Mouse ''. If the sales for the performance totaled 1972.50 dollars , how many tickets were sold for 6.00 dollars? How many tickets were sold for 4.50 dollars? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1972.5-((6.0*x)+(4.5*y)),380.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "175" + ], + "split": "test" + }, + { + "Input": "Peter sold pumpkins from his farm. He sold jumbo pumpkins for 9.00 dollars each , and he sold regular pumpkins for 4.00 dollars each. Peter sold 80 pumpkins and collected 395.00 dollars. How many jumbo pumpkins and regular pumpkins did he sell? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([395.0-((9.0*x)+(4.0*y)),80.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "test" + }, + { + "Input": "Apples cost 0.60 dollars per pound and grapes cost 1.00 dollars per pound. Jenny bought 12 pounds of fruit and paid 10.00 dollars. How many pounds of apples did she buy? How many pounds of grapes? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([10.0-((0.6*x)+(1.0*y)),12.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": "Advance tickets to a show cost 20 , and same-day tickets cost 30. The total number of tickets sold was 60 for total receipts of 1,600. How many advance tickets were sold? How many same-day tickets were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([1600.0-((20.0*x)+(30.0*y)),60.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": "Tickets for a show cost 6.00 dollars for adults and 4.50 dollars for children. 400 tickets were sold for a total of 2100 dollars. How many adult tickets and how many childrens tickets were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2100.0-((6.0*x)+(4.5*y)),400.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "200" + ], + "split": "test" + }, + { + "Input": "A plane flying with a tail wind flew at a speed of 460 miles per hour , relative to the ground. When flying against the tailwind , it flew at a speed of 310 miles per hour. Find the speed of the tailwind. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([460.0-(x+y),310.0-(x-y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "75" + ], + "split": "test" + }, + { + "Input": "One integer is twice another , and their sum is 96. Find the smaller and larger integer. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([x-(2.0*y),96.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "32" + ], + "split": "test" + }, + { + "Input": "A garage owner wants to fill a 55 gallon drum with a 20 percent winter mixture of antifreeze for his customers. How many gallons of 100 percent antifreeze should he mix with some 10 percent antifreeze mixture in order to fill the drum?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(55.0*20.0)*0.01-(((100.0*0.01)*x)+((10.0*0.01)*y)),55.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "6.11" + ], + "split": "test" + }, + { + "Input": "One gallon container is full of a 75 % alcohol solution. How much must be drained off and replaced by a 50 % alcohol solution to produce one gallon of 65 % alcohol solution?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([65*0.01*1.0-(75.0*0.01*x+50.0*0.01*y),1.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "0.4" + ], + "split": "test" + }, + { + "Input": "Pencils cost 6 dollars per carton and erasers cost 3 dollars per carton. If an order comes in for a total of 100 cartons for 360 dollars , what was the specific number of cartons of pencils? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([360.0-((6.0*x)+(3.0*y)),100.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": "2 cars start at the same place and time , and travel in opposite directions. One car is traveling 15 kilometers per hour faster than the other. After 5 hours , the 2 cars are 275 km apart. Find the speed of each car. ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([275.0-((5.0*x)+(5.0*y)),y-(15.0+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": "The selling price of a pair of pants is 34 dollars. If the store paid 8 dollars less for the pants , find the price that the store paid , in dollars. ", + "Output Program": [ + "from sympy import *\nx = symbols('x')\nanswer = solve([34.0-8.0-(x)],(x))\nprint(answer)" + ], + "Output Answer": [ + "26" + ], + "split": "test" + }, + { + "Input": "A writing workshop enrolls novelists and poets in a ratio of 5 to 3. There are 24 people at the workshop. How many novelists are there? How many poets are there?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([5.0*x-(3.0*y),24.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "test" + }, + { + "Input": "The sum of 2 numbers is 50. The first number is 43 less than twice the second number. Find the smaller number. Find the larger number.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([43.0-((2.0*x)-y),50.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "19" + ], + "split": "test" + }, + { + "Input": "Admission tickets to a theater were 60 cents for adults and 25 cents for children. Receipts for the day showed that 280 persons attended and 140 dollars was collected. How many children attended that day?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([140.0-((60*.01*x)+(25*.01*y)),280.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "80" + ], + "split": "test" + }, + { + "Input": "Norman and Suzanne Scarpulla own 35 shares of Mcdonald 's stocks and 69 shares of the Ohio Art Company stock. On a particular day in 2011 , their stock portfolio consisting of these two stocks was worth 2,814 dollars. The Mcdonalds stock was 70 dollars more per share than the Ohio Art Company stock. What was the price of McDonalds stock on that day? What was the cost of the Ohio Art Company stock on that day? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2814.0-((35.0*x)+(69.0*y)),70.0+y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "73.5" + ], + "split": "test" + }, + { + "Input": "One number is 11 more than 3 times another number. Their sum is 55. Find the smaller number.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([(3.0*x)+11.0-(y),55.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "11" + ], + "split": "test" + }, + { + "Input": "Find the two numbers whose sum is 45 and such that one is 4 times as large as the other.", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([x-(4.0*y),45.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": "Norbert sold 23 books on Thursday for a certain price. On Friday , he sold 35 of the same books , but he charged 0.50 dollars less per book. He made 490.00 dollars in total. How much did the book sell for on Thursday? How much did the book sell for on Friday? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([490.0-((23.0*x)+(35.0*y)),y-(x-0.5)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "8.75" + ], + "split": "test" + }, + { + "Input": "The 6th graders from an elementary school are going to celebrate the end of the year by going to the local pizza parlor. There are 120 in the whole group and there are twice as many children as adults in the group. How many children are there?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([120.0-(x+y),2.0*y-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "80" + ], + "split": "test" + }, + { + "Input": "Marc sold 563 tickets for the school play. Student tickets cost 4 dollars and adult tickets cost 6 dollars. Marc 's sales totaled 2840 dollars. How many adult tickets and student tickets did Marc sell? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([2840.0-((6.0*x)+(4.0*y)),563.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "294" + ], + "split": "test" + }, + { + "Input": "There were 610 people at a play. The admission price was 2 dollars for adults and 1 dollars for children. The admission receipts were 960 dollars. How many adults and children attended? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([960.0-((2.0*x)+(1.0*y)),610.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "350" + ], + "split": "test" + }, + { + "Input": "The US Senate had a total of 99 Democrats and Republicans. There were 11 more Republicans than Democrats. How many Democrats and Republicans were there in the Senate?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([99.0-(x+y),11.0-(x-y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "44" + ], + "split": "test" + }, + { + "Input": "A new parking lot has spaces for 450 cars. The ratio of spaces for full sized cars to compact cars is 11 to 4. How many spaces are for full-sized cars? How many spaces are for compact cars?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([11.0*x-(4.0*y),450.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "330" + ], + "split": "test" + }, + { + "Input": "A baseball team has home games on Wednesday and Saturday. The two games together earn 5,182.50 dollars for the team. Wednesdays game generates 142.50 dollars less than Saturdays game. How much money was taken in at Wednesday 's game? How much money was taken in at Saturday 's game? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([5182.5-(x+y),y-142.5-(x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "2520" + ], + "split": "test" + }, + { + "Input": "You are selling tickets to your school musical. Adult tickets cost 5 dollars and children 's tickets cost 3 dollars. You sell 1510 tickets and collect 6138 dollars. Determine How many adult tickets were sold? How many children 's tickets were sold? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([6138.0-((5.0*x)+(3.0*y)),1510.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "804" + ], + "split": "test" + }, + { + "Input": "The Jurassic Zoo charges 8 dollars for each adult and 4 dollars for each child. Total bill for the 201 people was 964 dollars. How many children were at the zoo?", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([964.0-((8.0*x)+(4.0*y)),201.0-(y+x)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "161" + ], + "split": "test" + }, + { + "Input": "The attendance at a school concert was 578 people. Admission cost 2.00 dollars for adults and 1.50 dollars for children. The receipts were 985.00 dollars. How many adults and how many children attended the concert? ", + "Output Program": [ + "from sympy import *\nx, y= symbols('x, y')\nanswer = solve([985.0-((2.0*x)+(1.5*y)),578.0-(x+y)],(x,y))\nprint(answer)" + ], + "Output Answer": [ + "236" + ], + "split": "test" + } + ], + "Metadata": [ + { + "Answer": 15, + "Explanation": "" + }, + { + "Answer": 137, + "Explanation": "" + }, + { + "Answer": 4, + "Explanation": "" + }, + { + "Answer": 3900, + "Explanation": "" + }, + { + "Answer": 30, + "Explanation": "" + }, + { + "Answer": 25, + "Explanation": "" + }, + { + "Answer": 63, + "Explanation": "" + }, + { + "Answer": 8, + "Explanation": "" + }, + { + "Answer": 156, + "Explanation": "" + }, + { + "Answer": 11.2, + "Explanation": "" + }, + { + "Answer": 3500, + "Explanation": "" + }, + { + "Answer": 178, + "Explanation": "" + }, + { + "Answer": 583.3333, + "Explanation": "" + }, + { + "Answer": 18, + "Explanation": "" + }, + { + "Answer": 20000, + "Explanation": "" + }, + { + "Answer": 200, + "Explanation": "" + }, + { + "Answer": 19, + "Explanation": "" + }, + { + "Answer": 7, + "Explanation": "" + }, + { + "Answer": 61, + "Explanation": "" + }, + { + "Answer": 12.5, + "Explanation": "" + }, + { + "Answer": 300, + "Explanation": "" + }, + { + "Answer": 7750, + "Explanation": "" + }, + { + "Answer": 28, + "Explanation": "" + }, + { + "Answer": 30, + "Explanation": "" + }, + { + "Answer": 5, + "Explanation": "" + }, + { + "Answer": 18, + "Explanation": "" + }, + { + "Answer": 150, + "Explanation": "" + }, + { + "Answer": 30, + "Explanation": "" + }, + { + "Answer": 35, + "Explanation": "" + }, + { + "Answer": 24, + "Explanation": "" + }, + { + "Answer": 0.45, + "Explanation": "" + }, + { + "Answer": 32, + "Explanation": "" + }, + { + "Answer": 23, + "Explanation": "" + }, + { + "Answer": 21, + "Explanation": "" + }, + { + "Answer": 520, + "Explanation": "" + }, + { + "Answer": 0.3, + "Explanation": "" + }, + { + "Answer": 27.2, + "Explanation": "" + }, + { + "Answer": 20, + "Explanation": "" + }, + { + "Answer": 4000, + "Explanation": "" + }, + { + "Answer": 12, + "Explanation": "" + }, + { + "Answer": 83, + "Explanation": "" + }, + { + "Answer": 73.5, + "Explanation": "" + }, + { + "Answer": 12, + "Explanation": "" + }, + { + "Answer": 34, + "Explanation": "" + }, + { + "Answer": 214, + "Explanation": "" + }, + { + "Answer": 10, + "Explanation": "" + }, + { + "Answer": 8, + "Explanation": "" + }, + { + "Answer": 10, + "Explanation": "" + }, + { + "Answer": 25, + "Explanation": "" + }, + { + "Answer": 64, + "Explanation": "" + }, + { + "Answer": 30, + "Explanation": "" + }, + { + "Answer": 0.4, + "Explanation": "" + }, + { + "Answer": 10000, + "Explanation": "" + }, + { + "Answer": 5000, + "Explanation": "" + }, + { + "Answer": 12, + "Explanation": "" + }, + { + "Answer": 12, + "Explanation": "" + }, + { + "Answer": 5, + "Explanation": "" + }, + { + "Answer": 26, + "Explanation": "" + }, + { + "Answer": 20, + "Explanation": "" + }, + { + "Answer": 85, + "Explanation": "" + }, + { + "Answer": 4000, + "Explanation": "" + }, + { + "Answer": 8, + "Explanation": "" + }, + { + "Answer": 4072, + "Explanation": "" + }, + { + "Answer": 200, + "Explanation": "" + }, + { + "Answer": 16, + "Explanation": "" + }, + { + "Answer": 30, + "Explanation": "" + }, + { + "Answer": 4.9, + "Explanation": "" + }, + { + "Answer": 80, + "Explanation": "" + }, + { + "Answer": 299, + "Explanation": "" + }, + { + "Answer": 25, + "Explanation": "" + }, + { + "Answer": 24, + "Explanation": "" + }, + { + "Answer": 5, + "Explanation": "" + }, + { + "Answer": 150, + "Explanation": "" + }, + { + "Answer": 3.5, + "Explanation": "" + }, + { + "Answer": -10, + "Explanation": "" + }, + { + "Answer": 37.5, + "Explanation": "" + }, + { + "Answer": 50, + "Explanation": "" + }, + { + "Answer": 37500, + "Explanation": "" + }, + { + "Answer": 600, + "Explanation": "" + }, + { + "Answer": 83, + "Explanation": "" + }, + { + "Answer": 150, + "Explanation": "" + }, + { + "Answer": 565, + "Explanation": "" + }, + { + "Answer": 5, + "Explanation": "" + }, + { + "Answer": -7, + "Explanation": "" + }, + { + "Answer": -72, + "Explanation": "" + }, + { + "Answer": 35, + "Explanation": "" + }, + { + "Answer": 10, + "Explanation": "" + }, + { + "Answer": 6, + "Explanation": "" + }, + { + "Answer": 4, + "Explanation": "" + }, + { + "Answer": 700, + "Explanation": "" + }, + { + "Answer": 128, + "Explanation": "" + }, + { + "Answer": 30, + "Explanation": "" + }, + { + "Answer": 9, + "Explanation": "" + }, + { + "Answer": 48, + "Explanation": "" + }, + { + "Answer": 8, + "Explanation": "" + }, + { + "Answer": 12, + "Explanation": "" + }, + { + "Answer": 390, + "Explanation": "" + }, + { + "Answer": 500, + "Explanation": "" + }, + { + "Answer": 1.85, + "Explanation": "" + }, + { + "Answer": 17, + "Explanation": "" + }, + { + "Answer": 270, + "Explanation": "" + }, + { + "Answer": 18, + "Explanation": "" + }, + { + "Answer": 117, + "Explanation": "" + }, + { + "Answer": 5, + "Explanation": "" + }, + { + "Answer": 31, + "Explanation": "" + }, + { + "Answer": 5, + "Explanation": "" + }, + { + "Answer": 48, + "Explanation": "" + }, + { + "Answer": 43, + "Explanation": "" + }, + { + "Answer": 3192500, + "Explanation": "" + }, + { + "Answer": 1, + "Explanation": "" + }, + { + "Answer": 800, + "Explanation": "" + }, + { + "Answer": 1200, + "Explanation": "" + }, + { + "Answer": 164, + "Explanation": "" + }, + { + "Answer": 30, + "Explanation": "" + }, + { + "Answer": 15, + "Explanation": "" + }, + { + "Answer": 18, + "Explanation": "" + }, + { + "Answer": 0.75, + "Explanation": "" + }, + { + "Answer": 12, + "Explanation": "" + }, + { + "Answer": 68.25, + "Explanation": "" + }, + { + "Answer": 50, + "Explanation": "" + }, + { + "Answer": 16, + "Explanation": "" + }, + { + "Answer": 0.9, + "Explanation": "" + }, + { + "Answer": 0.2, + "Explanation": "" + }, + { + "Answer": 710, + "Explanation": "" + }, + { + "Answer": 3, + "Explanation": "" + }, + { + "Answer": 65, + "Explanation": "" + }, + { + "Answer": 3, + "Explanation": "" + }, + { + "Answer": 2400000, + "Explanation": "" + }, + { + "Answer": 5, + "Explanation": "" + }, + { + "Answer": 48, + "Explanation": "" + }, + { + "Answer": 5000, + "Explanation": "" + }, + { + "Answer": 10, + "Explanation": "" + }, + { + "Answer": 7, + "Explanation": "" + }, + { + "Answer": 16, + "Explanation": "" + }, + { + "Answer": 150, + "Explanation": "" + }, + { + "Answer": 12000, + "Explanation": "" + }, + { + "Answer": 13, + "Explanation": "" + }, + { + "Answer": 2.5, + "Explanation": "" + }, + { + "Answer": 4, + "Explanation": "" + }, + { + "Answer": 8, + "Explanation": "" + }, + { + "Answer": 9.99, + "Explanation": "" + }, + { + "Answer": 150, + "Explanation": "" + }, + { + "Answer": 9.75, + "Explanation": "" + }, + { + "Answer": 17, + "Explanation": "" + }, + { + "Answer": 25, + "Explanation": "" + }, + { + "Answer": 887, + "Explanation": "" + }, + { + "Answer": 7.03, + "Explanation": "" + }, + { + "Answer": 8695.65, + "Explanation": "" + }, + { + "Answer": 10, + "Explanation": "" + }, + { + "Answer": 3000, + "Explanation": "" + }, + { + "Answer": 140, + "Explanation": "" + }, + { + "Answer": 8.75, + "Explanation": "" + }, + { + "Answer": 5, + "Explanation": "" + }, + { + "Answer": 15, + "Explanation": "" + }, + { + "Answer": 7, + "Explanation": "" + }, + { + "Answer": 180, + "Explanation": "" + }, + { + "Answer": 280, + "Explanation": "" + }, + { + "Answer": 1.35, + "Explanation": "" + }, + { + "Answer": 320, + "Explanation": "" + }, + { + "Answer": 64, + "Explanation": "" + }, + { + "Answer": 70, + "Explanation": "" + }, + { + "Answer": 30, + "Explanation": "" + }, + { + "Answer": 80, + "Explanation": "" + }, + { + "Answer": 0.6667, + "Explanation": "" + }, + { + "Answer": 2.625, + "Explanation": "" + }, + { + "Answer": 108375, + "Explanation": "" + }, + { + "Answer": 50, + "Explanation": "" + }, + { + "Answer": 262.5, + "Explanation": "" + }, + { + "Answer": 20, + "Explanation": "" + }, + { + "Answer": 80, + "Explanation": "" + }, + { + "Answer": 4, + "Explanation": "" + }, + { + "Answer": 100, + "Explanation": "" + }, + { + "Answer": 417, + "Explanation": "" + }, + { + "Answer": 104, + "Explanation": "" + }, + { + "Answer": 31, + "Explanation": "" + }, + { + "Answer": 250, + "Explanation": "" + }, + { + "Answer": 15, + "Explanation": "" + }, + { + "Answer": 219, + "Explanation": "" + }, + { + "Answer": 19, + "Explanation": "" + }, + { + "Answer": 325, + "Explanation": "" + }, + { + "Answer": 15, + "Explanation": "" + }, + { + "Answer": 70, + "Explanation": "" + }, + { + "Answer": 11, + "Explanation": "" + }, + { + "Answer": 18, + "Explanation": "" + }, + { + "Answer": 22, + "Explanation": "" + }, + { + "Answer": 10, + "Explanation": "" + }, + { + "Answer": 64, + "Explanation": "" + }, + { + "Answer": 22.5, + "Explanation": "" + }, + { + "Answer": 3100, + "Explanation": "" + }, + { + "Answer": 4800, + "Explanation": "" + }, + { + "Answer": 17, + "Explanation": "" + }, + { + "Answer": 275, + "Explanation": "" + }, + { + "Answer": 15, + "Explanation": "" + }, + { + "Answer": 26, + "Explanation": "" + }, + { + "Answer": 9, + "Explanation": "" + }, + { + "Answer": 30, + "Explanation": "" + }, + { + "Answer": 84, + "Explanation": "" + }, + { + "Answer": 15, + "Explanation": "" + }, + { + "Answer": 77, + "Explanation": "" + }, + { + "Answer": 4, + "Explanation": "" + }, + { + "Answer": 16, + "Explanation": "" + }, + { + "Answer": 27.5, + "Explanation": "" + }, + { + "Answer": 78, + "Explanation": "" + }, + { + "Answer": 366, + "Explanation": "" + }, + { + "Answer": 2.12, + "Explanation": "" + }, + { + "Answer": 30, + "Explanation": "" + }, + { + "Answer": 19, + "Explanation": "" + }, + { + "Answer": 55, + "Explanation": "" + }, + { + "Answer": 6.11, + "Explanation": "" + }, + { + "Answer": 7, + "Explanation": "" + }, + { + "Answer": 3, + "Explanation": "" + }, + { + "Answer": 8, + "Explanation": "" + }, + { + "Answer": 672, + "Explanation": "" + }, + { + "Answer": 4, + "Explanation": "" + }, + { + "Answer": 20, + "Explanation": "" + }, + { + "Answer": 37, + "Explanation": "" + }, + { + "Answer": 28.08, + "Explanation": "" + }, + { + "Answer": 1100, + "Explanation": "" + }, + { + "Answer": 21, + "Explanation": "" + }, + { + "Answer": 530, + "Explanation": "" + }, + { + "Answer": 7, + "Explanation": "" + }, + { + "Answer": 5, + "Explanation": "" + }, + { + "Answer": 43, + "Explanation": "" + }, + { + "Answer": 7, + "Explanation": "" + }, + { + "Answer": 190, + "Explanation": "" + }, + { + "Answer": 60, + "Explanation": "" + }, + { + "Answer": 7, + "Explanation": "" + }, + { + "Answer": 26, + "Explanation": "" + }, + { + "Answer": 23, + "Explanation": "" + }, + { + "Answer": 25, + "Explanation": "" + }, + { + "Answer": 10, + "Explanation": "" + }, + { + "Answer": 3.5, + "Explanation": "" + }, + { + "Answer": 17000, + "Explanation": "" + }, + { + "Answer": 17, + "Explanation": "" + }, + { + "Answer": 18, + "Explanation": "" + }, + { + "Answer": 41, + "Explanation": "" + }, + { + "Answer": 50, + "Explanation": "" + }, + { + "Answer": 22, + "Explanation": "" + }, + { + "Answer": 3.615, + "Explanation": "" + }, + { + "Answer": 13, + "Explanation": "" + }, + { + "Answer": 3, + "Explanation": "" + }, + { + "Answer": 30, + "Explanation": "" + }, + { + "Answer": 127, + "Explanation": "" + }, + { + "Answer": 60, + "Explanation": "" + }, + { + "Answer": 5, + "Explanation": "" + }, + { + "Answer": 4700, + "Explanation": "" + }, + { + "Answer": 450, + "Explanation": "" + }, + { + "Answer": 820, + "Explanation": "" + }, + { + "Answer": 7, + "Explanation": "" + }, + { + "Answer": 16, + "Explanation": "" + }, + { + "Answer": 102, + "Explanation": "" + }, + { + "Answer": 65, + "Explanation": "" + }, + { + "Answer": 7, + "Explanation": "" + }, + { + "Answer": 17, + "Explanation": "" + }, + { + "Answer": 12, + "Explanation": "" + }, + { + "Answer": 25, + "Explanation": "" + }, + { + "Answer": 175, + "Explanation": "" + }, + { + "Answer": 130, + "Explanation": "" + }, + { + "Answer": 50, + "Explanation": "" + }, + { + "Answer": 135, + "Explanation": "" + }, + { + "Answer": 100, + "Explanation": "" + }, + { + "Answer": 2.5, + "Explanation": "" + }, + { + "Answer": -4.5, + "Explanation": "" + }, + { + "Answer": 6258, + "Explanation": "" + }, + { + "Answer": 65, + "Explanation": "" + }, + { + "Answer": 19, + "Explanation": "" + }, + { + "Answer": 9, + "Explanation": "" + }, + { + "Answer": 0.75, + "Explanation": "" + }, + { + "Answer": 3.5, + "Explanation": "" + }, + { + "Answer": 130, + "Explanation": "" + }, + { + "Answer": 98, + "Explanation": "" + }, + { + "Answer": 12, + "Explanation": "" + }, + { + "Answer": 4, + "Explanation": "" + }, + { + "Answer": 1, + "Explanation": "" + }, + { + "Answer": 20, + "Explanation": "" + }, + { + "Answer": 29, + "Explanation": "" + }, + { + "Answer": 250, + "Explanation": "" + }, + { + "Answer": 31, + "Explanation": "" + }, + { + "Answer": 28, + "Explanation": "" + }, + { + "Answer": 180, + "Explanation": "" + }, + { + "Answer": 236, + "Explanation": "" + }, + { + "Answer": 14, + "Explanation": "" + }, + { + "Answer": 15, + "Explanation": "" + }, + { + "Answer": 1.375, + "Explanation": "" + }, + { + "Answer": 17, + "Explanation": "" + }, + { + "Answer": 1500, + "Explanation": "" + }, + { + "Answer": 525, + "Explanation": "" + }, + { + "Answer": 18000, + "Explanation": "" + }, + { + "Answer": 13, + "Explanation": "" + }, + { + "Answer": 63, + "Explanation": "" + }, + { + "Answer": 13, + "Explanation": "" + }, + { + "Answer": 80, + "Explanation": "" + }, + { + "Answer": 15, + "Explanation": "" + }, + { + "Answer": 12, + "Explanation": "" + }, + { + "Answer": 2.2857, + "Explanation": "" + }, + { + "Answer": 19, + "Explanation": "" + }, + { + "Answer": 77.4, + "Explanation": "" + }, + { + "Answer": 100, + "Explanation": "" + }, + { + "Answer": 0.25, + "Explanation": "" + }, + { + "Answer": 11, + "Explanation": "" + }, + { + "Answer": 13, + "Explanation": "" + }, + { + "Answer": 2, + "Explanation": "" + }, + { + "Answer": 50, + "Explanation": "" + }, + { + "Answer": 3, + "Explanation": "" + }, + { + "Answer": 35, + "Explanation": "" + }, + { + "Answer": 280, + "Explanation": "" + }, + { + "Answer": 168, + "Explanation": "" + }, + { + "Answer": 420, + "Explanation": "" + }, + { + "Answer": 20, + "Explanation": "" + }, + { + "Answer": 30, + "Explanation": "" + }, + { + "Answer": 140, + "Explanation": "" + }, + { + "Answer": 5, + "Explanation": "" + }, + { + "Answer": 4, + "Explanation": "" + }, + { + "Answer": 22, + "Explanation": "" + }, + { + "Answer": 0.1, + "Explanation": "" + }, + { + "Answer": 18, + "Explanation": "" + }, + { + "Answer": 21800, + "Explanation": "" + }, + { + "Answer": 3.75, + "Explanation": "" + }, + { + "Answer": 8, + "Explanation": "" + }, + { + "Answer": 12, + "Explanation": "" + }, + { + "Answer": 294, + "Explanation": "" + }, + { + "Answer": 23, + "Explanation": "" + }, + { + "Answer": 20, + "Explanation": "" + }, + { + "Answer": 19, + "Explanation": "" + }, + { + "Answer": 0.9, + "Explanation": "" + }, + { + "Answer": 200, + "Explanation": "" + }, + { + "Answer": 10, + "Explanation": "" + }, + { + "Answer": 28, + "Explanation": "" + }, + { + "Answer": 5.647, + "Explanation": "" + }, + { + "Answer": 16, + "Explanation": "" + }, + { + "Answer": 1910, + "Explanation": "" + }, + { + "Answer": 4400, + "Explanation": "" + }, + { + "Answer": 22, + "Explanation": "" + }, + { + "Answer": 29, + "Explanation": "" + }, + { + "Answer": 3.5, + "Explanation": "" + }, + { + "Answer": 20, + "Explanation": "" + }, + { + "Answer": 23, + "Explanation": "" + }, + { + "Answer": 22, + "Explanation": "" + }, + { + "Answer": 15, + "Explanation": "" + }, + { + "Answer": 1.15, + "Explanation": "" + }, + { + "Answer": 36.46, + "Explanation": "" + }, + { + "Answer": 20, + "Explanation": "" + }, + { + "Answer": 20, + "Explanation": "" + }, + { + "Answer": 9, + "Explanation": "" + }, + { + "Answer": 28, + "Explanation": "" + }, + { + "Answer": 18, + "Explanation": "" + }, + { + "Answer": 44, + "Explanation": "" + }, + { + "Answer": 6, + "Explanation": "" + }, + { + "Answer": 1, + "Explanation": "" + }, + { + "Answer": 4, + "Explanation": "" + }, + { + "Answer": 20000, + "Explanation": "" + }, + { + "Answer": 14, + "Explanation": "" + }, + { + "Answer": 42, + "Explanation": "" + }, + { + "Answer": 17, + "Explanation": "" + }, + { + "Answer": 10, + "Explanation": "" + }, + { + "Answer": 28, + "Explanation": "" + }, + { + "Answer": 4180, + "Explanation": "" + }, + { + "Answer": 14, + "Explanation": "" + }, + { + "Answer": 330, + "Explanation": "" + }, + { + "Answer": 1500, + "Explanation": "" + }, + { + "Answer": 10, + "Explanation": "" + }, + { + "Answer": 8, + "Explanation": "" + }, + { + "Answer": 14, + "Explanation": "" + }, + { + "Answer": 30, + "Explanation": "" + }, + { + "Answer": 250, + "Explanation": "" + }, + { + "Answer": 200, + "Explanation": "" + }, + { + "Answer": 180, + "Explanation": "" + }, + { + "Answer": 40, + "Explanation": "" + }, + { + "Answer": 2, + "Explanation": "" + }, + { + "Answer": 4, + "Explanation": "" + }, + { + "Answer": 6, + "Explanation": "" + }, + { + "Answer": 12, + "Explanation": "" + }, + { + "Answer": 46.61607, + "Explanation": "" + }, + { + "Answer": 30, + "Explanation": "" + }, + { + "Answer": 3000, + "Explanation": "" + }, + { + "Answer": 17, + "Explanation": "" + }, + { + "Answer": 23, + "Explanation": "" + }, + { + "Answer": 35, + "Explanation": "" + }, + { + "Answer": 12000, + "Explanation": "" + }, + { + "Answer": -21, + "Explanation": "" + }, + { + "Answer": 99, + "Explanation": "" + }, + { + "Answer": 80, + "Explanation": "" + }, + { + "Answer": 11, + "Explanation": "" + }, + { + "Answer": 60, + "Explanation": "" + }, + { + "Answer": 13, + "Explanation": "" + }, + { + "Answer": 450, + "Explanation": "" + }, + { + "Answer": 8, + "Explanation": "" + }, + { + "Answer": 65, + "Explanation": "" + }, + { + "Answer": 10, + "Explanation": "" + }, + { + "Answer": 161, + "Explanation": "" + }, + { + "Answer": 3, + "Explanation": "" + }, + { + "Answer": 52, + "Explanation": "" + }, + { + "Answer": 22, + "Explanation": "" + }, + { + "Answer": 80, + "Explanation": "" + }, + { + "Answer": 8, + "Explanation": "" + }, + { + "Answer": 137, + "Explanation": "" + }, + { + "Answer": 120, + "Explanation": "" + }, + { + "Answer": 10, + "Explanation": "" + }, + { + "Answer": 35, + "Explanation": "" + }, + { + "Answer": 12, + "Explanation": "" + }, + { + "Answer": 4, + "Explanation": "" + }, + { + "Answer": 25, + "Explanation": "" + }, + { + "Answer": 20, + "Explanation": "" + }, + { + "Answer": 20, + "Explanation": "" + }, + { + "Answer": 804, + "Explanation": "" + }, + { + "Answer": 13000, + "Explanation": "" + }, + { + "Answer": 5, + "Explanation": "" + }, + { + "Answer": 44, + "Explanation": "" + }, + { + "Answer": 10, + "Explanation": "" + }, + { + "Answer": 9, + "Explanation": "" + }, + { + "Answer": 63, + "Explanation": "" + }, + { + "Answer": 327, + "Explanation": "" + }, + { + "Answer": 39, + "Explanation": "" + }, + { + "Answer": 2.5, + "Explanation": "" + }, + { + "Answer": 3.5, + "Explanation": "" + }, + { + "Answer": 75, + "Explanation": "" + }, + { + "Answer": 51, + "Explanation": "" + }, + { + "Answer": 115, + "Explanation": "" + }, + { + "Answer": 420, + "Explanation": "" + }, + { + "Answer": 40, + "Explanation": "" + }, + { + "Answer": 7200, + "Explanation": "" + }, + { + "Answer": 0.165, + "Explanation": "" + }, + { + "Answer": 9, + "Explanation": "" + }, + { + "Answer": 2120, + "Explanation": "" + }, + { + "Answer": 5000, + "Explanation": "" + }, + { + "Answer": 20, + "Explanation": "" + }, + { + "Answer": 26, + "Explanation": "" + }, + { + "Answer": 26, + "Explanation": "" + }, + { + "Answer": 1000, + "Explanation": "" + }, + { + "Answer": 81, + "Explanation": "" + }, + { + "Answer": 8, + "Explanation": "" + }, + { + "Answer": 7, + "Explanation": "" + }, + { + "Answer": 5, + "Explanation": "" + }, + { + "Answer": 3, + "Explanation": "" + }, + { + "Answer": 300, + "Explanation": "" + }, + { + "Answer": 28, + "Explanation": "" + }, + { + "Answer": 14, + "Explanation": "" + }, + { + "Answer": 83.33, + "Explanation": "" + }, + { + "Answer": 6, + "Explanation": "" + }, + { + "Answer": 137, + "Explanation": "" + }, + { + "Answer": 34, + "Explanation": "" + }, + { + "Answer": 50, + "Explanation": "" + }, + { + "Answer": 69, + "Explanation": "" + }, + { + "Answer": 160, + "Explanation": "" + }, + { + "Answer": 40, + "Explanation": "" + }, + { + "Answer": 13, + "Explanation": "" + }, + { + "Answer": 178, + "Explanation": "" + }, + { + "Answer": 22, + "Explanation": "" + }, + { + "Answer": 7, + "Explanation": "" + }, + { + "Answer": 1, + "Explanation": "" + }, + { + "Answer": 40, + "Explanation": "" + }, + { + "Answer": 96, + "Explanation": "" + }, + { + "Answer": 5500, + "Explanation": "" + }, + { + "Answer": 1.35, + "Explanation": "" + }, + { + "Answer": 8, + "Explanation": "" + }, + { + "Answer": 427, + "Explanation": "" + }, + { + "Answer": 200, + "Explanation": "" + }, + { + "Answer": 10, + "Explanation": "" + }, + { + "Answer": 13, + "Explanation": "" + }, + { + "Answer": 2520, + "Explanation": "" + }, + { + "Answer": 8, + "Explanation": "" + }, + { + "Answer": 5500, + "Explanation": "" + }, + { + "Answer": 208, + "Explanation": "" + }, + { + "Answer": 16.85, + "Explanation": "" + }, + { + "Answer": 26, + "Explanation": "" + }, + { + "Answer": 102, + "Explanation": "" + }, + { + "Answer": 2.5, + "Explanation": "" + }, + { + "Answer": 488, + "Explanation": "" + }, + { + "Answer": 128, + "Explanation": "" + }, + { + "Answer": 40, + "Explanation": "" + }, + { + "Answer": 25, + "Explanation": "" + }, + { + "Answer": 350, + "Explanation": "" + }, + { + "Answer": 12, + "Explanation": "" + }, + { + "Answer": 8000, + "Explanation": "" + }, + { + "Answer": 116, + "Explanation": "" + }, + { + "Answer": 5.41, + "Explanation": "" + }, + { + "Answer": 3, + "Explanation": "" + }, + { + "Answer": 15.62, + "Explanation": "" + }, + { + "Answer": 425, + "Explanation": "" + }, + { + "Answer": 3200, + "Explanation": "" + }, + { + "Answer": 6, + "Explanation": "" + }, + { + "Answer": 20, + "Explanation": "" + }, + { + "Answer": 0.05, + "Explanation": "" + }, + { + "Answer": 3.25, + "Explanation": "" + }, + { + "Answer": 122, + "Explanation": "" + }, + { + "Answer": 13.5, + "Explanation": "" + }, + { + "Answer": 16, + "Explanation": "" + }, + { + "Answer": 20, + "Explanation": "" + }, + { + "Answer": 9, + "Explanation": "" + }, + { + "Answer": 24, + "Explanation": "" + }, + { + "Answer": 2.5, + "Explanation": "" + }, + { + "Answer": 0.21, + "Explanation": "" + }, + { + "Answer": 30, + "Explanation": "" + }, + { + "Answer": 100, + "Explanation": "" + }, + { + "Answer": 7, + "Explanation": "" + }, + { + "Answer": 7000, + "Explanation": "" + }, + { + "Answer": 18.4, + "Explanation": "" + }, + { + "Answer": 17, + "Explanation": "" + }, + { + "Answer": 20, + "Explanation": "" + }, + { + "Answer": 152, + "Explanation": "" + }, + { + "Answer": 202, + "Explanation": "" + }, + { + "Answer": 12, + "Explanation": "" + }, + { + "Answer": 59, + "Explanation": "" + }, + { + "Answer": 95, + "Explanation": "" + }, + { + "Answer": 60, + "Explanation": "" + }, + { + "Answer": 8200, + "Explanation": "" + }, + { + "Answer": 9, + "Explanation": "" + }, + { + "Answer": 11, + "Explanation": "" + }, + { + "Answer": 2000, + "Explanation": "" + }, + { + "Answer": 9, + "Explanation": "" + }, + { + "Answer": 75, + "Explanation": "" + }, + { + "Answer": 99, + "Explanation": "" + }, + { + "Answer": 32, + "Explanation": "" + }, + { + "Answer": 20, + "Explanation": "" + } + ] +} \ No newline at end of file