Datasets:
File size: 41,259 Bytes
78f56d7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | {"category":"Geometry","subcategory":"geometry","question":"a metallic sheet is of rectangular shape with dimensions 48 m x 36 m . from each of its corners , a square is cut off so as to make an open box . if the length of the square is 3 m , the volume of the box ( in m 3 ) is :","answer":3780.0,"reasoning":"n0 = 48.0\nn1 = 36.0\nn2 = 3.0\nn3 = 3.0\nt0 = n2 * 2.0\nt1 = n0 - t0\nt2 = n1 - t0\nanswer = n2 * t1 * t2\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a circle graph shows how the budget of a certain company was spent : 55 percent for salaries , 9 percent for research and development , 5 percent for utilities , 4 percent for equipment , 2 percent for supplies , and the remainder for transportation . if the area of each sector of the graph is proportional to the percent of the budget it represents , how many degrees of the circle are used to represent transportation ?","answer":90.0,"reasoning":"n0 = 55.0\nn1 = 9.0\nn2 = 5.0\nn3 = 4.0\nn4 = 2.0\nt0 = n0 + n1\nt1 = n2 + t0\nt2 = n3 + t1\nt3 = n4 + t2\nt4 = 100.0 - t3\nt5 = t4 * 360.0\nanswer = t5 \/ 100.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"if a rectangular billboard has an area of 91 square feet and a perimeter of 40 feet , what is the length of each of the shorter sides ?","answer":7.0,"reasoning":"import math\nn0 = 91.0\nn1 = 40.0\nt0 = n1 \/ 2.0\nt1 = n0 * 4.0\nt2 = t0**min(2.0, 5)\nt3 = t2 - t1\nt4 = math.sqrt(max(0, t3))\nt5 = t0 - t4\nanswer = t5 \/ 2.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a volume of 11248 l water is in a container of sphere . how many hemisphere of volume 4 l each will be required to transfer all the water into the small hemispheres ?","answer":2812.0,"reasoning":"n0 = 11248.0\nn1 = 4.0\n\nanswer = n0 \/ n1\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a hall is 15 m long and 12 m broad . if the sum of the areas of the floor and the ceiling is equal to the sum of the areas of 4 walls , the volume of the hall is :","answer":1200.0,"reasoning":"n0 = 15.0\nn1 = 12.0\nt0 = n1 * 2.0\nt1 = n0 * 2.0\nt2 = n0 * n1 # area of rectangle\nt3 = t0 + t1\nt4 = t2 * 2.0\nt5 = t4 \/ t3\nanswer = n0 * n1 * t5\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the parameter of a square is equal to the perimeter of a rectangle of length 20 cm and breadth 14 cm . find the circumference of a semicircle whose diameter is equal to the side of the square . ( round off your answer to two decimal places )","answer":26.7035375555,"reasoning":"import math\nn0 = 20.0\nn1 = 14.0\nt0 = 2 * (n0 + n1) # perimetere of rectangle\nt1 = t0 \/ 4. # square edge given perimeter\nt2 = t1 \/ 2.0\nt3 = 2 * math.pi * t2\nanswer = t3 \/ 2.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a lamp is put on one corner of a square plot of side 50 m . it ' s light reaches 21 m . find the area of that plot that is lit by that lamp ?","answer":346.3605900583,"reasoning":"import math\nn0 = 50.0\nn1 = 21.0\nt0 = math.pi * n1**2\nanswer = t0 \/ 4.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a certain rectangular crate measures 12 feet by 16 feet by 18 feet . a cylindrical gas tank is to be made for shipment in the crate and will stand upright when the crate is placed on one of its six faces . what should the radius of the tank be if it is to be of the largest possible volume ?","answer":8.0,"reasoning":"import math\nn0 = 12.0\nn1 = 16.0\nn2 = 18.0\nt0 = n1 \/ 2.0\nt1 = n0 * 3.141592653589793\nt2 = math.pi * t0**2 * n0\nt3 = t2 \/ t1\nanswer = math.sqrt(max(0, t3))\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"three table runners have a combined area of 224 square inches . by overlapping the runners to cover 80 % of a table of area 175 square inches , the area that is covered by exactly two layers of runner is 24 square inches . what is the area of the table that is covered with three layers of runner ?","answer":30.0,"reasoning":"n0 = 224.0\nn1 = 80.0\nn2 = 175.0\nn3 = 24.0\nt0 = n1 \/ 100.0\nt1 = n0 - n3\nt2 = n2 * t0\nt3 = t1 - t2\nanswer = t3 \/ 2.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"30 square stone slabs of equal size were needed to cover a floor area of 120 sq . m . find the length of each stone slab ?","answer":200.0,"reasoning":"import math\nn0 = 30.0\nn1 = 120.0\nt0 = n1 \/ n0\nt1 = math.sqrt(max(0, t0))\nanswer = t1 * 100.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"points a , b , and , c have xy - coordinates ( 2,0 ) , ( 8,12 ) , and ( 14,0 ) , respectively . points x , y , and z have xy - coordinates ( 6,0 ) , ( 8,4 ) , and ( 10,0 ) , respectively . what fraction w of the area of triangle abc is the area of triangle xyz ?","answer":0.1111111111,"reasoning":"n0 = 2.0\nn1 = 0.0\nn2 = 8.0\nn3 = 12.0\nn4 = 14.0\nn5 = 0.0\nn6 = 6.0\nn7 = 0.0\nn8 = 8.0\nn9 = 4.0\nn10 = 10.0\nn11 = 0.0\nt0 = 10.0 + 2.0\nt1 = 4.0**min(2.0, 5)\nt2 = t1 \/ 2.0\nt3 = t0**min(2.0, 5)\nt4 = t3 \/ 2.0\nanswer = t2 \/ t4\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the length of rectangle is thrice its breadth and its perimeter is 48 m , find the area of the rectangle ?","answer":108.0,"reasoning":"n0 = 48.0\nt0 = 2.0 * 3.0\nt1 = 1.0 * 2.0\nt2 = t0 + t1\nt3 = n0 \/ t2\nt4 = t3 * 3.0\nanswer = t3 * t4\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the area of a rhombus is equal to the area of a rectangle whose length is 20 cm and the breadth is 10 cm . if one of the diagonals is 32 cm what is the length of other diagonal ?","answer":12.5,"reasoning":"n0 = 20.0\nn1 = 10.0\nn2 = 32.0\nt0 = n0 * n1 # area of rectangle\nt1 = t0 * 2.0\nanswer = t1 \/ n2\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"2 corner most boxes of a chess board ( diagonally opposite ) haven been cut out there ' s a rectangular block = 2 sqaures of chess board , how many such blocks can be placed on the chess board ? \u201d","answer":30.0,"reasoning":"n0 = 2.0\nn1 = 2.0\nt0 = n0 * n0\nt1 = t0 * t0\nt2 = n0 * t1\nanswer = t2 - 2.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the surface of a cube is 150 sq cm . find its volume ?","answer":125.0,"reasoning":"import math\nn0 = 150.0\nt0 = 2.0 + 4.0\nt1 = n0 \/ t0\nt2 = math.sqrt(max(0, t1))\nanswer = t2**3\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a steel vessel has a base of length 60 cm and breadth 30 cm . water is poured in the vessel . a cubical steel box having edge of 30 cm is immersed completely in the vessel . how much will the water rise ?","answer":15.0,"reasoning":"n0 = 60.0\nn1 = 30.0\nn2 = 30.0\nt0 = n0 * n1\nt1 = n1**min(3.0, 5)\nanswer = t1 \/ t0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"if the sides of a square are multiplied by sqrt ( 5 ) , the area of the original square is how many times as large as the area of the resultant square ?","answer":20.0,"reasoning":"n0 = 5.0\n\nanswer = 4 * n0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"if n is the smallest integer such that 432 times n is the square of an integer , what is the value of n ?","answer":3.0,"reasoning":"n0 = 432.0\nt0 = n0 \/ 2.0\nt1 = t0 \/ 2.0\nt2 = t1 \/ 2.0\nt3 = t2 \/ 2.0\nt4 = t3 \/ 3.0\nanswer = t4 \/ 3.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the floor of a rectangular room is 19 m long and 12 m wide . the room is surrounded by a veranda of width 2 m on all its sides . the area of the veranda is :","answer":140.0,"reasoning":"n0 = 19.0\nn1 = 12.0\nn2 = 2.0\nt0 = n2 * n2\nt1 = n0 * n1 # area of rectangle\nt2 = n0 + t0\nt3 = n1 + t0\nt4 = t2 * t3 # area of rectangle\nanswer = t4 - t1\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"what is the area of a square field whose diagonal of length 10 m ?","answer":50.0,"reasoning":"n0 = 10.0\nt0 = n0**2\nanswer = t0 \/ 2.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"find the perimeter and area of a square of side 13 cm .","answer":169.0,"reasoning":"n0 = 13.0\n\nanswer = n0**2\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"an equilateral triangle t 2 is formed by joining the mid points of the sides of another equilateral triangle t 1 . a third equilateral triangle t 3 is formed by joining the mid - points of t 2 and this process is continued indefinitely . if each side of t 1 is 60 cm , find the sum of the perimeters of all the triangles .","answer":360.0,"reasoning":"n0 = 2.0\nn1 = 1.0\nn2 = 3.0\nn3 = 2.0\nn4 = 1.0\nn5 = 60.0\nt0 = n5 + n5 + n5 # perimeter of a triangle\nanswer = t0 + t0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the area of a parallelogram is 128 sq m . then the area of a triangle formed by its diagonal is - - - - - - - - - - ?","answer":64.0,"reasoning":"n0 = 128.0\n\nanswer = n0 \/ 2.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a rectangle the length of which is 8 inches and the width of which is 6 inches is made up 48 1 inch by 1 inch squares . through how many of the squares does a diagonal of the rectangle pass ?","answer":12.0,"reasoning":"n0 = 8.0\nn1 = 6.0\nn2 = 48.0\nn3 = 1.0\nn4 = 1.0\nt0 = n0 + n1\nanswer = t0 - 2.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"if the diameter of circle r is 60 % of the diameter of circle s , the area of circle r is what percent of the area of circle s ?","answer":36.0,"reasoning":"import math\nn0 = 60.0\nt0 = math.pi * n0**2\nt1 = math.pi * 100.0**2\nt2 = t0 * 100.0\nanswer = t2 \/ t1\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the area of a rectangular plot is 360 square metres . if the length is 25 % less than the breadth , what is the breadth of the plot ?","answer":21.9089023002,"reasoning":"import math\nn0 = 360.0\nn1 = 25.0\nt0 = n1 \/ 100.0\nt1 = 1.0 - t0\nt2 = n0 \/ t1\nanswer = math.sqrt(max(0, t2))\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"how much greater is the combined area in square inches of the front and back of a rectangular sheet of paper measuring 11 inches by 13 inches than that of a rectangular sheet of paper measuring 6.5 inches by 11 inches ?","answer":100.0,"reasoning":"n0 = 11.0\nn1 = 13.0\nn2 = 6.5\nn3 = 11.0\nt0 = n0 * n1 # area of rectangle\nt1 = n0 * n2 # area of rectangle\nt2 = t0 * 2.0\nt3 = t1 * 2.0\nt4 = t2 - t3\nt5 = t4 \/ t0\nanswer = t5 * 100.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"if g is the smallest positive integer such that 3150 multiplied by g is the square of an integer , then g must be","answer":14.0,"reasoning":"n0 = 3150.0\nt0 = 2.0 + 3.0\nt1 = n0 \/ 2.0\nt2 = t1 \/ t0\nt3 = t2 \/ t0\nt4 = t3 \/ 3.0\nt5 = t4 \/ 3.0\nanswer = t5 * 2.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the width of a rectangular hall is \u00bd of its length . if the area of the hall is 288 sq . m , what is the difference between its length and breadth ?","answer":12.0,"reasoning":"import math\nn0 = 288.0\nt0 = 1.0 \/ 2.0\nt1 = n0 \/ t0\nt2 = math.sqrt(max(0, t1))\nanswer = t2 \/ 2.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the slant height of a right circular cone is 10 m and its height is 8 m . find the area of its curved surface .","answer":60.0,"reasoning":"import math\nn0 = 10.0\nn1 = 8.0\nt0 = n0**min(2.0, 5)\nt1 = n1**min(2.0, 5)\nt2 = t0 - t1\nt3 = math.sqrt(max(0, t2))\nanswer = n0 * t3\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"hall is 15 m long and 12 m broad . if the sum of the areas of the floor and the ceiling is equal to the sum of the areas of four walls , the volume of the hall is :","answer":1200.0,"reasoning":"n0 = 15.0\nn1 = 12.0\nt0 = n0 + n1\nt1 = n0 * n1\nt2 = t1 * 2.0\nt3 = t0 * 2.0\nt4 = t2 \/ t3\nanswer = t4 * t1\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a cube of edge 12 cm is immersed completely in a rectangular vessel containing water . if the dimensions of the base of vessel are 20 cm * 15 cm , find the rise in water level ?","answer":5.76,"reasoning":"n0 = 12.0\nn1 = 20.0\nn2 = 15.0\nt0 = n1 * n2\nt1 = n0**3\nanswer = t1 \/ t0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a circular wire of radius 42 cm is cut and bent into the form of a rectangle whose sides are in the ratio of 6 : 5 . the smaller side of the rectangle is :","answer":59.9758597504,"reasoning":"import math\nn0 = 42.0\nn1 = 6.0\nn2 = 5.0\nt0 = n1 + n2\nt1 = 2 * math.pi * n0\nt2 = t0 * 2.0\nt3 = t1 \/ t2\nanswer = n2 * t3\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the diagonal of the floor of a rectangular closet is 7 feet . the shorter side of the closet is 4 feet . what is the area of the closet in square feet ?","answer":27.0,"reasoning":"import math\nn0 = 7.0\nn1 = 4.0\nt0 = 2.0 * 4.0\nt1 = n0 * 2.0\nt2 = t0 + 1.0\nt3 = t1 + 1.0\nt4 = t2 \/ 2.0\nt5 = t3 \/ 2.0\nt6 = t5**min(2.0, 5)\nt7 = t4**min(2.0, 5)\nt8 = t6 - t7\nt9 = math.sqrt(max(0, t8))\nanswer = t4 * t9 # area of rectangle\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a crate measures 3 feet by 8 feet by 12 feet on the inside . a stone pillar in the shape of a right circular cylinder must fit into the crate for shipping so that it rests upright when the crate sits on at least one of its six sides . what is the radius , in feet , of the pillar with the largest volume that could still fit in the crate ?","answer":3.0,"reasoning":"n0 = 3.0\nn1 = 8.0\nn2 = 12.0\nt0 = n1 * n2\nt1 = n0 * t0\nt2 = t1 \/ n2\nanswer = t2 \/ n1\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"if each side of a right triangle is increased by 10 % and the base ( b ) is half of the height , find the percentage change in its area ?","answer":21.0,"reasoning":"n0 = 10.0\nt0 = n0 + 100.0\nt1 = t0 \/ 100.0\nt2 = t1**min(2.0, 5)\nt3 = t2 - 1.0\nanswer = t3 * 100.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"32 meters of wire is available to fence off a flower bed in the form of a circular sector . what must the radius of the circle in meters be , if we wish to have a flower bed with the greatest possible surface area ?","answer":8.0,"reasoning":"n0 = 32.0\n\nanswer = n0 \/ 4.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a rectangular floor that measures 24 meters by 64 meters is to be covered with carpet squares that each measure 8 meters by 8 meters . if the carpet squares cost $ 24 apiece , what is the total cost for the number of carpet squares needed to cover the floor ?","answer":576.0,"reasoning":"n0 = 24.0\nn1 = 64.0\nn2 = 8.0\nn3 = 8.0\nn4 = 24.0\n\nanswer = n0 * n0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the side of a cube is 12 m , find the lateral surface area ?","answer":516.0,"reasoning":"n0 = 12.0\nt0 = 10.0 * 4.0\nt1 = t0 + 3.0\nanswer = n0 * t1 # area of rectangle\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a rectangular field is to be fenced on three sides leaving a side of 20 feet uncovered . if the area of the field is 60 sq . feet , how many feet of fencing will be required ?","answer":26.0,"reasoning":"n0 = 20.0\nn1 = 60.0\nt0 = n1 \/ n0\nt1 = t0 * 2.0\nanswer = n0 + t1\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"if the volume of a cube is x ^ 3 cubic units , what is the number of square units in the surface area of the cube ?","answer":6.0,"reasoning":"n0 = 3.0\nt0 = 2.0 * 3.0\nt1 = 1.0 * 1.0\nanswer = t0 * t1\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a metallic sheet is of rectangular shape with dimensions 48 m x 38 m . from each of its corners , a square is cut off so as to make an open box . if the length of the square is 8 m , the volume of the box ( in m 3 ) is :","answer":5632.0,"reasoning":"n0 = 48.0\nn1 = 38.0\nn2 = 8.0\nn3 = 3.0\nt0 = n2 * 2.0\nt1 = n0 - t0\nt2 = n1 - t0\nanswer = n2 * t1 * t2\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the sides of a square region , measured to the nearest centimeter , are 10 centimeters long . the least possible value of the actual area of the square region is","answer":90.25,"reasoning":"n0 = 10.0\nt0 = n0 - 0.25\nt1 = t0 - 0.25\nanswer = t1**min(2.0, 5)\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the volume of a certain substance is always directly proportional to its weight . if 48 cubic inches of the substance weigh 112 ounces , what is the volume , in cubic inches , of 84 ounces of this substance ?","answer":36.0,"reasoning":"n0 = 48.0\nn1 = 112.0\nn2 = 84.0\nt0 = n0 \/ n1\nanswer = n2 * t0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the base and height of a parallelogram are 12 m and 6 m respectively . then its area is = = = = = = ?","answer":72.0,"reasoning":"n0 = 12.0\nn1 = 6.0\n\nanswer = n0 * n1 # area of rectangle\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a certain farmer pays $ 60 per acre per month to rent farmland . how much does the farmer pay per month to rent a rectangular plot of farmland that is 360 feet by 1210 feet ? ( 43,560 square feet = 1 acre )","answer":600.0,"reasoning":"n0 = 60.0\nn1 = 360.0\nn2 = 1210.0\nn3 = 43560.0\nn4 = 1.0\nt0 = n1 * n2\nt1 = t0 \/ 10.0\nt2 = t0 \/ t1\nanswer = n0 * t2\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"find the area of a parallelogram with base 26 cm and height 14 cm ?","answer":364.0,"reasoning":"n0 = 26.0\nn1 = 14.0\n\nanswer = n0 * n1\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"thin rectangular slab of potato was cut into two pieces for an osmosis lab . one piece is 50 mm greater than the other . if the original uncut slab is 600 mm , what is the length of the other piece of the potato after it is cut .","answer":275.0,"reasoning":"n0 = 50.0\nn1 = 600.0\nt0 = n1 - n0\nanswer = t0 \/ 2.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a cubic object 3 ' ' x 3 ' ' x 3 ' ' is painted blue on all the outside surfaces , including the top and bottom . if the cube is cut into 27 cubes of 1 ' ' x 1 ' ' x 1 ' ' , how many 1 ' ' cubes do have any painted surfaces ?","answer":26.0,"reasoning":"n0 = 3.0\nn1 = 3.0\nn2 = 3.0\nn3 = 27.0\nn4 = 1.0\nn5 = 1.0\nn6 = 1.0\nn7 = 1.0\n\nanswer = n3 - 1.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the area of a square is 144 m \u00b2 . find its perimeter .","answer":48.0,"reasoning":"import math\nn0 = 144.0\nt0 = math.sqrt(max(0, n0))\nanswer = 4 * t0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"huey ' s hip pizza sells two sizes of square pizzas : a small pizza that measures 14 inches on a side and costs $ 10 , and a large pizza that measures 21 inches on a side and costs $ 20 . if two friends go to huey ' s with $ 30 apiece , how many more square inches of pizza can they buy if they pool their money than if they each purchase pizza alone ?","answer":49.0,"reasoning":"n0 = 14.0\nn1 = 10.0\nn2 = 21.0\nn3 = 20.0\nn4 = 30.0\nt0 = n2**min(2.0, 5)\nt1 = n0**min(2.0, 5)\nt2 = t1 + t0\nt3 = t0 * 3.0\nt4 = t2 + t2\nanswer = t3 - t4\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"what is the area of square field whose side of length 17 m ?","answer":289.0,"reasoning":"n0 = 17.0\n\nanswer = n0**2\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a spirit and water solution is sold in a market . the cost per liter of the solution is directly proportional to the part ( fraction ) of spirit ( by volume ) the solution has . a solution of 1 liter of spirit and 1 liter of water costs 30 cents . how many cents does a solution of 1 liter of spirit and 2 liters of water cost ?","answer":30.0,"reasoning":"n0 = 1.0\nn1 = 1.0\nn2 = 30.0\nn3 = 1.0\nn4 = 2.0\nt0 = n0 + n4\nt1 = n0 \/ t0\nt2 = n2 * t1\nanswer = t0 * t2\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a rectangular grass field is 75 m * 55 m , it has a path of 2.8 m wide all round it on the outside . find the area of the path and the cost of constructing it at rs . 2 per sq m ?","answer":1518.72,"reasoning":"n0 = 75.0\nn1 = 55.0\nn2 = 2.8\nn3 = 2.0\nt0 = n2 * n3\nt1 = n0 * n1 # area of rectangle\nt2 = n0 + t0\nt3 = n1 + t0\nt4 = t2 * t3 # area of rectangle\nt5 = t4 - t1\nanswer = n3 * t5\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the length of a rectangle is increased by 45 % and its breadth is decreased by 20 % . what is the effect on its area ?","answer":11600.0,"reasoning":"n0 = 45.0\nn1 = 20.0\nt0 = n0 + 100.0\nt1 = 100.0 - n1\nanswer = t0 * t1\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"12 business executives and 7 chairmen meet at a conference . if each business executive shakes the hand of every other business executive and every chairman once , and each chairman shakes the hand of each of the business executives but not the other chairmen , how many handshakes would take place ?","answer":150.0,"reasoning":"n0 = 12.0\nn1 = 7.0\nt0 = n0 * n1\nt1 = n0 - 1.0\nt2 = n0 * t1\nt3 = t2 \/ 2.0\nanswer = t3 + t0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"30 square stone slabs of equal size were needed to cover a floor area of 67.5 sq . m . find the length of each stone slab ?","answer":150.0,"reasoning":"import math\nn0 = 30.0\nn1 = 67.5\nt0 = n1 \/ n0\nt1 = math.sqrt(max(0, t0))\nanswer = t1 * 100.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the perimeter of an isosceles right triangle is 8 + 8 sq rt 2 . what is the length of the hypotenuse of the triangle ?","answer":5.6568542495,"reasoning":"import math\nn0 = 8.0\nn1 = 8.0\nn2 = 2.0\nt0 = math.sqrt(max(0, n2))\nt1 = n0 * t0\nanswer = t1 \/ n2\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"if the area of a square with sides of length 12 centimeters is equal to the area of a rectangle with a width of 6 centimeters , what is the length of the rectangle , in centimeters ?","answer":24.0,"reasoning":"n0 = 12.0\nn1 = 6.0\nt0 = n0**min(2.0, 5)\nanswer = t0 \/ n1\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the area of a rectangular field is equal to 300 square meters . its perimeter is equal to 70 meters . find the width of this rectangle .","answer":15.0,"reasoning":"import math\nn0 = 300.0\nn1 = 70.0\nt0 = n1 \/ 2.0\nt1 = n0 * 4.0\nt2 = t0 * t0\nt3 = t2 - t1\nt4 = math.sqrt(max(0, t3))\nt5 = t0 - t4\nanswer = t5 \/ 2.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"in a rectangular coordinate system , what is the area of a rhombus whose vertices have the coordinates ( 0 , 4.5 ) , ( 8 , 0 ) , ( 0 , - 4.5 ) , ( - 8 , 0 ) ?","answer":72.0,"reasoning":"n0 = 0.0\nn1 = 4.5\nn2 = 8.0\nn3 = 0.0\nn4 = 0.0\nn5 = 4.5\nn6 = 8.0\nn7 = 0.0\nt0 = n2 * 2.0\nt1 = n1 * 2.0\nanswer = t0 * t1 \/ 2\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the diagonals of a rhombus are 14 cm and 18 cm . find its area ?","answer":126.0,"reasoning":"n0 = 14.0\nn1 = 18.0\n\nanswer = n0 * n1 \/ 2\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a rectangular swimming pool is 10 feet by 12 feet . a deck that has uniform width surrounds the pool . the total area of the pool and deck is 360 square feet . what is the width of the deck ?","answer":4.0,"reasoning":"import math\nn0 = 10.0\nn1 = 12.0\nn2 = 360.0\nt0 = n0 * n1 # area of rectangle\nt1 = n1 - 1.0\nt2 = t1**min(2.0, 5)\nt3 = n2 - t0\nt4 = t2 + t3\nt5 = math.sqrt(max(0, t4))\nt6 = t5 - t1\nanswer = t6 \/ 2.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the length of a rectangle is reduced by 22 % . by what % would the width have to be increased to maintainthe original area ?","answer":28.2051282051,"reasoning":"n0 = 22.0\nt0 = 100.0 - n0\nt1 = t0 \/ 100.0\nt2 = 1.0 - t1\nt3 = t2 \/ t1\nanswer = t3 * 100.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"how many diagonals does a polygon with 19 sides have , if one of its vertices does not connect to any diagonal ?","answer":135.0,"reasoning":"n0 = 19.0\nt0 = n0 - 1.0\nt1 = t0 - 3.0\nt2 = t0 * t1\nanswer = t2 \/ 2.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the surface area of a sphere is 4 \u03c0 r 2 , where r is the radius of the sphere . if the area of the base of a hemisphere is 3 , what is the surface area r of that hemisphere ?","answer":9.0,"reasoning":"n0 = 4.0\nn1 = 2.0\nn2 = 3.0\nt0 = n2 \/ 3.141592653589793\nt1 = n0 * 3.141592653589793\nt2 = t0 * t1\nt3 = t0 * 3.141592653589793\nt4 = t2 \/ n1\nanswer = t4 + t3\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the diagonals of a rhombus are 25 cm and 30 cm . find its area ?","answer":375.0,"reasoning":"n0 = 25.0\nn1 = 30.0\n\nanswer = n0 * n1 \/ 2\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the length of a rectangle hall is 5 m more than its breadth . the area of the hall is 750 m 2 . the length of the hall is :","answer":30.0,"reasoning":"n0 = 5.0\nn1 = 750.0\nn2 = 2.0\nt0 = n1 \/ n0\nanswer = t0 \/ n0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a lady grows cabbage in her garden that is in the shape of a square . each cabbage takes 1 square foot of area in her garden . this year , she has increased her output by 211 cabbages when compared to last year . the shape of the area used for growing the cabbage has remained a square in both these years . how many cabbages did she produce this year ?","answer":11236.0,"reasoning":"n0 = 1.0\nn1 = 211.0\nt0 = n1 - n0\nt1 = t0 \/ 2.0\nt2 = n0 + t1\nanswer = t2**min(2.0, 5)\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the diagonals of a rhombus are 15 cm and 17 cm . find its area ?","answer":127.5,"reasoning":"n0 = 15.0\nn1 = 17.0\n\nanswer = n0 * n1 \/ 2\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a rectangular field is to be fenced on three sides leaving a side of 20 feet uncovered . if the area of the field is 440 sq . feet , how many feet of fencing will be required ?","answer":64.0,"reasoning":"n0 = 20.0\nn1 = 440.0\nt0 = n1 \/ n0\nt1 = t0 * 2.0\nanswer = n0 + t1\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the radius of a sphere is increased by 50 % . the increase in surface area of the sphere is :","answer":125.0,"reasoning":"import math\nn0 = 50.0\nt0 = n0 \/ 100.0\nt1 = 4 * math.pi * 1.0**2\nt2 = t0 + 1.0\nt3 = 4 * math.pi * t2**2\nt4 = t3 - t1\nt5 = t4 \/ t1\nanswer = t5 * 100.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a cube of edge 15 cm is imersed completely in a rectangular vessel containing water . if the dimensions of the base of vessel are 20 cm * 15 cm , find the rise in waer level .","answer":11.25,"reasoning":"n0 = 15.0\nn1 = 20.0\nn2 = 15.0\nt0 = n0 * n1\nt1 = n0**3\nanswer = t1 \/ t0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"in measuring the sides of a rectangle , one side is taken 9 % in excess , and the other 8 % in deficit . find the error percent in the area calculated from these measurements .","answer":0.28,"reasoning":"n0 = 9.0\nn1 = 8.0\nt0 = n0 * n1\nt1 = n0 - n1\nt2 = t0 \/ 100.0\nanswer = t1 - t2\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"right triangle pqr is to be constructed in the xy - plane so that the right angle is at p and pr is parallel to the x - axis . the x and y coordinates of p , q and r are to be integers that satisfy the inequalitites - 4 \u2264 x \u2264 5 and 6 \u2264 y \u2264 16 . how many different triangles with these properties could be constructed ?","answer":9900.0,"reasoning":"n0 = 4.0\nn1 = 5.0\nn2 = 6.0\nn3 = 16.0\nt0 = n0 + n2\nt1 = n3 - n1\nt2 = 10.0 - 1.0\nt3 = t0 * t1\nt4 = t3 * t2\nanswer = t4 * 10.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"an equilateral triangle t 2 is formed by joining the mid points of the sides of another equilateral triangle t 1 . a third equilateral triangle t 3 is formed by joining the mid - points of t 2 and this process is continued indefinitely . if each side of t 1 is 50 cm , find the sum of the perimeters of all the triangles .","answer":300.0,"reasoning":"n0 = 2.0\nn1 = 1.0\nn2 = 3.0\nn3 = 2.0\nn4 = 1.0\nn5 = 50.0\nt0 = n5 + n5 + n5 # perimeter of a triangle\nanswer = t0 + t0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"if the sides of a triangle are 39 cm , 32 cm and 10 cm , what is its area ?","answer":160.0,"reasoning":"n0 = 39.0\nn1 = 32.0\nn2 = 10.0\nt0 = n1 * n2\nanswer = t0 \/ 2.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the perimeter of an isosceles right triangle is 12 + 12 sq rt 2 . what is the length of the hypotenuse of the triangle ?","answer":8.4852813742,"reasoning":"import math\nn0 = 12.0\nn1 = 12.0\nn2 = 2.0\nt0 = math.sqrt(max(0, n2))\nt1 = n0 * t0\nanswer = t1 \/ 2.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a equilateral triangle having one side 5 m . in this triangle there is a square of side 2 m . calculate the percentage of area outside square in that triangle .","answer":63.0495827719,"reasoning":"import math\nn0 = 5.0\nn1 = 2.0\nt0 = n0**min(2.0, 5)\nt1 = math.sqrt(max(0, 3.0))\nt2 = n1**2\nt3 = t1 \/ 4.0\nt4 = t3 * t0\nt5 = t4 - t2\nt6 = t5 \/ t4\nanswer = t6 * 100.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"carmen made a sculpture from small pieces of wood . the sculpture is 2 feet 10 inches tall . carmen places her sculpture on a base that is 4 inches tall . how tall are the sculpture andbase together ?","answer":3.1666666667,"reasoning":"n0 = 2.0\nn1 = 10.0\nn2 = 4.0\nt0 = n0 + n1\nt1 = n0 * t0\nt2 = t1 + 10.0\nt3 = n2 + t2\nanswer = t3 \/ t0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"find the perimeter and area of a square of side 9 cm .","answer":81.0,"reasoning":"n0 = 9.0\n\nanswer = n0**2\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"in a rectangular coordinate system , what is the area of a rhombus whose vertices have the coordinates ( 0 , 5.5 ) , ( 8 , 0 ) , ( 0 , - 5.5 ) , ( - 8 , 0 ) ?","answer":88.0,"reasoning":"n0 = 0.0\nn1 = 5.5\nn2 = 8.0\nn3 = 0.0\nn4 = 0.0\nn5 = 5.5\nn6 = 8.0\nn7 = 0.0\nt0 = n2 * 2.0\nt1 = n1 * 2.0\nanswer = t0 * t1 \/ 2\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the area of a circle is increased by 300 % . by what percent has the diameter of the circle increased ?","answer":100.0,"reasoning":"n0 = 300.0\nt0 = 2.0 \/ 2.0\nanswer = t0 * 100.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the length of the rectangular field is double its width . inside the field there is square shaped pond 5 m long . if the area of the pond is 1 \/ 8 of the area of the field . what is the length of the field ?","answer":20.0,"reasoning":"import math\nn0 = 5.0\nn1 = 1.0\nn2 = 8.0\nt0 = 1 \/ 2.0\nt1 = n0**2\nt2 = n2 * t1\nt3 = t2 \/ t0\nanswer = math.sqrt(max(0, t3))\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"in a new housing development , trees are to be planted along the sidewalk of a certain street . each tree takes up one square foot of sidewalk space , and there are to be 20 feet between each tree . how many trees can be planted if the road is 148 feet long ?","answer":8.0,"reasoning":"n0 = 20.0\nn1 = 148.0\nt0 = n0 + 1.0\nt1 = n1 - 1.0\nt2 = t1 \/ t0\nanswer = t2 + 1.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the length of a rectangular field is 7 \/ 5 its width . if the perimeter of the field is 384 meters , what is the width of the field ?","answer":80.0,"reasoning":"n0 = 7.0\nn1 = 5.0\nn2 = 384.0\nt0 = n0 \/ n1\nt1 = t0 + t0\nt2 = t1 + 2.0\nanswer = n2 \/ t2\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the surface area of a sphere is same as the curved surface area of a right circular cylinder whose height and diameter are 12 cm each . the radius of the sphere is :","answer":6.0,"reasoning":"import math\nn0 = 12.0\nt0 = n0 \/ 2.0\nt1 = 4.0 * 3.141592653589793\nt2 = n0 * t0\nt3 = t2 * 3.141592653589793\nt4 = t3 * 2.0\nt5 = t4 \/ t1\nanswer = math.sqrt(max(0, t5))\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a crate measures 7 feet by 8 feet by 12 feet on the inside . a stone pillar in the shape of a right circular cylinder must fit into the crate for shipping so that it rests upright when the crate sits on at least one of its six sides . what is the radius , in feet , of the pillar with the largest volume that could still fit in the crate ?","answer":7.0,"reasoning":"n0 = 7.0\nn1 = 8.0\nn2 = 12.0\nt0 = n1 * n2\nt1 = n0 * t0\nt2 = t1 \/ n2\nanswer = t2 \/ n1\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a semicircle has a radius of 14 . what is the approximate perimeter of the semicircle ?","answer":71.9822971503,"reasoning":"import math\nn0 = 14.0\nt0 = 2 * math.pi * n0\nt1 = n0 * 2.0\nt2 = t0 \/ 2.0\nanswer = t2 + t1\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"four circular cardboard pieces , each of radius 7 cm are placed in such a way that each piece touches two other pieces . the area of the space encosed by the four pieces is. four circular cardboard pieces , each of radius 7 cm are placed in such a way that each piece touches two other pieces . the area of the space encosed by the four pieces is","answer":42.0619599741,"reasoning":"n0 = 7.0\nn1 = 7.0\nt0 = n0 * 2.0\nt1 = n0**min(2.0, 5)\nt2 = t1 * 3.141592653589793\nt3 = t0**min(2.0, 5)\nanswer = t3 - t2\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the ratio of the areas of two squares , one having double its diagonal then the other is :","answer":4.0,"reasoning":"t0 = 1 \/ 2.0\nt1 = t0 * 4.0\nanswer = t1 \/ t0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"if abc is a quarter circle and a smaller circle is inscribed in it ; if radius of quarter circle is 1.414 units . find the radius of smaller circle","answer":0.586,"reasoning":"n0 = 1.414\n\nanswer = 2.0 - n0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"find the surface area of a 8 cm x 6 cm x 2 cm brick .","answer":152.0,"reasoning":"n0 = 8.0\nn1 = 6.0\nn2 = 2.0\n\nanswer = 2 * (n0 * n1 + n0 * n2 + n1 * n2) # surface of a rectangular prism\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"in measuring the sides of a rectangle , one side is taken 5 % in excess , and the other 4 % in deficit . find the error percent in the error percent in the area calculated from these measurements .","answer":0.8,"reasoning":"n0 = 5.0\nn1 = 4.0\nt0 = n0 * n1\nt1 = n0 - n1\nt2 = t0 \/ 100.0\nanswer = t1 - t2\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the length of rectangle is thrice its breadth and its perimeter is 120 m , find the area of the rectangle ?","answer":675.0,"reasoning":"n0 = 120.0\nt0 = 2.0 * 3.0\nt1 = 1.0 * 2.0\nt2 = t0 + t1\nt3 = n0 \/ t2\nt4 = t3 * 3.0\nanswer = t3 * t4\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"the length and breadth of a square are increased by 40 % and 30 % respectively . the area of the rectangle so formed exceeds the area of the square by ?","answer":82.0,"reasoning":"n0 = 40.0\nn1 = 30.0\nt0 = n0 \/ 100.0\nt1 = n1 \/ 100.0\nt2 = t0 + 1.0\nt3 = t1 + 1.0\nt4 = t2 * t3\nt5 = t4 - 1.0\nanswer = t5 * 100.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"while visiting a small town in the united states , i lost my overcoat in a bus . when i reported the matter to the bus company i was asked the number of the bus . though i did not remember the exact number i did remember that the bus number bad a certain peculiarity about it . the number plate showed the bus number as a perfect square and also if the plate was turned upside down . ? the number would still be a perfect square \u2014 of course it was not ? i came to know from the bus company they had only 5 100 buses numbered from 1 to 500 . from this i was able to deduce the bus number . can you tell what was the other number .","answer":196.0,"reasoning":"n0 = 5.0\nn1 = 100.0\nn2 = 1.0\nn3 = 500.0\nt0 = n1 - 4.0\nanswer = t0 + 100.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a horse is tethered to one corner of a rectangular grassy field 45 m by 25 m with a rope 22 m long . over how much area of the field can it graze ?","answer":380.1327110844,"reasoning":"n0 = 45.0\nn1 = 25.0\nn2 = 22.0\nt0 = n2**min(2.0, 5)\nt1 = t0 * 3.141592653589793\nanswer = t1 \/ 4.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"a rectangular courty 3.78 metres long and 5.25 metres wide is to be paved exactly with square tiles , all of the same size . what is the largest size of the tile which could be used for the purpose ?","answer":21.0,"reasoning":"n0 = 3.78\nn1 = 5.25\nt0 = n0 * 100.0\nt1 = t0 \/ 3.0\nt2 = t1 \/ 3.0\nt3 = t2 \/ 3.0\nt4 = t3 \/ 2.0\nanswer = t4 * 3.0\nprint(answer)","source":"MathQA_Geometry"}
{"category":"Geometry","subcategory":"geometry","question":"four equal circles are described about the four corners of a square so that each touches two of the others . if a side of the square is 14 cm , then the area enclosed between the circumferences of the circles is :","answer":42.0619599741,"reasoning":"import math\nn0 = 14.0\nt0 = n0 \/ 2.0\nt1 = n0**2\nt2 = math.pi * t0**2\nanswer = t1 - t2\nprint(answer)","source":"MathQA_Geometry"}
|