options
stringlengths
37
300
correct
stringclasses
5 values
annotated_formula
stringlengths
7
727
problem
stringlengths
5
967
rationale
stringlengths
1
2.74k
program
stringlengths
10
646
a ) 2 , b ) 3 , c ) 4 , d ) 6 , e ) 60 / 7
a
divide(2800, subtract(divide(6000, 2.5), subtract(divide(3000, 1), divide(6000, 3))))
machine a can process 6000 envelopes in 3 hours . machines b and c working together but independently can process the same number of envelopes in 2.5 hours . if machines a and c working together but independently process 3000 envelopes in 1 hour , then how many hours would it take machine b to process 2800 envelopes .
"you can either take the amount of work done as the same as karishma has done or take the work done by each in the same time . i will do the latter 1 . work done in 1 hr by a is 2000 envelopes 2 . work done in 1 hr by a and c is 3000 envelopes 3 . so work done in 1 hr by c is 1000 envelopes 4 . work done in 1 hr by b and c is 2400 envelopes 5 . so work done in 1 hr by b is 1400 envelopes 6 . so to process 2800 envelopes b will take 2800 / 1400 hrs = 2 hrs so the answer is choice a"
a = 6000 / 2 b = 3000 / 1 c = 6000 / 3 d = b - c e = a - d f = 2800 / e
a ) 1 , b ) 3 , c ) 5 , d ) 6 , e ) c . 14
a
power(add(multiply(9, 2), 2), 2)
if a is a positive integer , and if the units digit of a ^ 2 is 9 and the units digit of ( a + 1 ) ^ 2 is 4 , what is the units d digit of ( a + 2 ) ^ 2 ?
"i also got a . by punching in numers : d . . . 7 ^ 2 = . . . 9 . . . 8 ^ 2 = . . . 4 . . . 9 ^ 2 = . . . 1 . a"
a = 9 * 2 b = a + 2 c = b ** 2
a ) 29.33 % , b ) 27.33 % , c ) 17.33 % , d ) 27.99 % , e ) 29.33 %
b
subtract(const_100, subtract(subtract(subtract(const_100, 5), multiply(subtract(const_100, 5), divide(10, const_100))), multiply(subtract(subtract(const_100, 5), multiply(subtract(const_100, 5), divide(10, const_100))), divide(15, const_100))))
ron has had 3 pay cuts in her salary in the past 6 months . if the first pay cut was 5 % , the second pay cut was 10 % and the third was 15 % . what will be the percentage decrease , if the salary is decreased in a single shot ?
let rs . 100 be initial salary . salary after 1 st decrease , 5 % = 95 salary after 2 nd decrease , 10 % = 85.5 i . e . reduced by 10 percent of 95 salary after 3 rd decrease , 15 % = 72.675 i . e . reduced by 15 percent of 85.5 so if its decreased in single shot = i = ( ( b - a ) / b ) * 100 = 27.33 % answer : b
a = 100 - 5 b = 100 - 5 c = 10 / 100 d = b * c e = a - d f = 100 - 5 g = 100 - 5 h = 10 / 100 i = g * h j = f - i k = 15 / 100 l = j * k m = e - l n = 100 - m
a ) 3 , b ) 4 , c ) 12 , d ) 32 , e ) 35
c
subtract(50, reminder(3, 7))
when positive integer n is divided by 5 , the remainder is 1 . when n is divided by 7 , the remainder is 3 . what is the smallest positive integer k such that k + n is a multiple of 50 .
"first , let us say i have a number n which is divisible by 5 and by 7 . we all agree that it will be divisible by 35 , the lcm of 5 and 7 . now , if i have a number n which when divided by 5 gives a remainder 1 and when divided by 7 gives a remainder 1 , we can say the number is of the form n = 5 a + 1 e . g . 5 + 1 , 10 + 1 , 15 + 1 , 20 + 1 , 25 + 1 , 30 + 1 , 35 + 1 etc and n = 7 b + 1 e . g . 7 + 1 , 14 + 1 , 21 + 1 , 28 + 1 , 35 + 1 etc so when it is divided by the lcm , 35 , it will give 1 as remainder ( as is apparent above ) next , if i have a number n which when divided by 5 gives a remainder 1 and when divided by 7 gives a remainder 3 , we can say the number is of the form n = 5 a + 1 and n = 7 b + 3 now , the only thing you should try to understand here is that when n is divided by 5 and if i say the remainder is 1 , it is the same as saying the remainder is - 4 . e . g . when 6 is divided by 5 , remainder is 1 because it is 1 more than a multiple of 5 . i can also say it is 4 less than the next multiple of 5 , ca n ' t i ? 6 is one more than 5 , but 4 less than 10 . therefore , we can say n = 5 x - 4 and n = 7 y - 4 ( a remainder of 3 when divided by 7 is the same as getting a remainder of - 4 ) now this question is exactly like the question above . so when you divide n by 50 , remainder will be - 4 i . e . n will be 4 less than a multiple of 50 . so you must add 12 to n to make it a multiple of 50 c"
a = 50 - reminder
a ) 768 , b ) 232 , c ) 246 , d ) 625 , e ) 224
b
add(222, 39)
two tests had the same maximum mark . the pass percentages in the first and the second test were 40 % and 45 % respectively . a candidate scored 222 marks in the second test and failed by 39 marks in that test . find the pass mark in the first test ?
"let the maximum mark in each test be m . the candidate failed by 36 marks in the second test . pass mark in the second test = 222 + 39 = 252 45 / 100 m = 261 pass mark in the first test = 40 / 100 m = 40 / 45 * 261 = 232 answer : b"
a = 222 + 39
a ) 60 , b ) 277 , c ) 48 , d ) 99 , e ) 22
a
subtract(divide(multiply(1.10, const_1000), divide(multiply(60, const_1000), const_3600)), divide(multiply(1.4, const_1000), divide(multiply(90, const_1000), const_3600)))
two trains are moving in opposite directions at 60 km / hr and 90 km / hr . their lengths are 1.10 km and 1.4 km respectively . the time taken by the slower train to cross the faster train in seconds is ?
"relative speed = 60 + 90 = 150 km / hr . = 150 * 5 / 18 = 125 / 3 m / sec . distance covered = 1.10 + 1.4 = 2.5 km = 2500 m . required time = 2500 * 3 / 125 = 60 sec . answer : a"
a = 1 * 10 b = 60 * 1000 c = b / 3600 d = a / c e = 1 * 4 f = 90 * 1000 g = f / 3600 h = e / g i = d - h
a ) 4 / 3 , b ) 1 / 3 , c ) 1 / 12 , d ) 1 / 8 , e ) - 4 / 3
d
divide(power(divide(power(negate(1), 2), 2), 2), negate(2))
if x # y is defined to equal x ^ 2 / y for all x and y , then ( - 1 # 2 ) # 2 =
"( - 1 ) ^ 2 / 2 = 1 / 2 ( 1 / 2 ) ^ 2 / 2 = 1 / 8 so d is my answer"
a = negate ** ( b = a / 2 c = b ** 2 d = c / 2
a ) 87 days , b ) 12 days , c ) 66 days , d ) 77 days , e ) 44 days
b
divide(multiply(4, 6), divide(subtract(multiply(4, 6), multiply(add(divide(multiply(4, 6), 4), divide(multiply(4, 6), 6)), 2)), 2))
a can do a piece of work in 4 days . b can do it in 6 days . with the assistance of c they completed the work in 2 days . find in how many days can c alone do it ?
c = 1 / 2 - 1 / 4 - 1 / 6 = 1 / 12 = > 12 days answer : b
a = 4 * 6 b = 4 * 6 c = 4 * 6 d = c / 4 e = 4 * 6 f = e / 6 g = d + f h = g * 2 i = b - h j = i / 2 k = a / j
a ) 25 , b ) 30 , c ) 40 , d ) 48 , e ) 50
d
divide(800, multiply(const_0_2778, subtract(63, 3)))
how many seconds will a 800 metre long train take to cross a man walking with a speed of 3 km / hr in the direction of the moving train if the speed of the train is 63 km / hr ?
"relative speed of the train = 63 - 3 = 60 kmph = 60 * 5 / 18 = 50 / 3 m / sec t = 800 * 3 / 50 = 48 sec answer : d"
a = 63 - 3 b = const_0_2778 * a c = 800 / b
a ) 3.84 , b ) 1.75 , c ) 3.52 , d ) 2.72 , e ) none of these
c
divide(divide(multiply(4, add(multiply(3, 900), multiply(2, 850))), add(3, 2)), const_1000)
the weights of one liter vegetable ghee packet of two brands ‘ a ’ and ‘ b ’ are 900 gm and 850 gm respectively . if they are mixed in the ratio of 3 : 2 by volumes to form a mixture of 4 liters , what is the weight ( in kg ) of the mixture ?
"1 l a = 900 gm 1 l b = 850 gm we are mixing five parts ( 3 parts a plus 2 parts b , 5 parts total ) to get 4 l , so 5 x = 4 - - - > x = 4 / 5 . each ` ` part ' ' is 4 / 5 of a liter . so if we have 3 parts a , we have 900 * 3 * ( 4 / 5 ) = 2160 if we have 2 parts b , we have 850 * 2 * ( 4 / 5 ) = 1360 2160 + 1360 = 3520 solving for units gives us 3.52 so the answer is c"
a = 3 * 900 b = 2 * 850 c = a + b d = 4 * c e = 3 + 2 f = d / e g = f / 1000
a ) 15 , b ) 20 , c ) 25 , d ) 30 , e ) 55
e
multiply(40, const_1)
at veridux corporation , there are 210 employees . of these , 90 are female , and the rest are males . there are a total of 40 managers , and the rest of the employees are associates . if there are a total of 135 male associates , how many female managers are there ?
"well , first let â € ™ s take care of the â € œ totals â €  . the numbers in the â € œ totals â €  row must add up . if 90 are females , the other 210 â € “ 90 = 120 must be males . similarly , the numbers in the â € œ totals â €  column must add up . if 40 are managers , then the other 210 â € “ 40 = 170 must be associates . now , in the â € œ associate â €  row , 135 + e = 170 , which means e = 35 â € ” the other 35 associates must be female . now , to find b , which is what the question is asking , we need only look at the sum in the â € œ female â €  column : b + 35 = 90 , which means b = 55 . there are fifteen female managers in this company . thus , the answer = ( e ) ."
a = 40 * 1
a ) 40 , b ) 48 , c ) 45 , d ) 42 , e ) 22
d
multiply(7, subtract(7, const_1))
7 chess players take part in a tournament . every player plays twice with each of his opponents . how many games are to be played ?
"though 2 * ( 7 c 2 ) is the correct approcah to do this , but for people like me who find perm , comb n prob a nightmare , an easy approach can be used . the first guy has to play 2 matches with the rest of 6 , so he ' ll play 12 matches . similarly , second guy has to play with the rest of 5 as his 2 games with the first guy are already played . so he plays 10 matches . this continues like this and the total matches are 12 + 10 + 8 . . . + 2 12 + 10 + . . . + 2 = 2 ( 6 + 5 + . . . + 1 ) = 2 ( ( 6 * 7 ) / 2 ) = 6 * 7 = 42 . answer : d"
a = 7 - 1 b = 7 * a
a ) 1 , b ) 3 , c ) 4 , d ) 2 , e ) 6
d
divide(add(32, const_1), subtract(32, const_1))
what is value of x if 32 - y = 16 x - y ?
"32 - y = 16 x - y 32 = 16 x - y + y 16 x = 32 x = 2 answer is option d"
a = 32 + 1 b = 32 - 1 c = a / b
a ) 138 , b ) 132 , c ) 150 , d ) 140 , e ) 222
d
multiply(circumface(divide(18, const_2)), 2.50)
find the cost of fencing around a circular field of diameter 18 m at the rate of rs . 2.50 a meter ?
"2 * 22 / 7 * 9 = 56 56 * 2 1 / 2 = rs . 140 answer : d"
a = 18 / 2 b = circumface * (
a ) 2 , b ) 0 , c ) 1 , d ) 3 , e ) 4
b
divide(divide(divide(lcm(23, 58), 58), const_4), const_4)
what is the least value of x . so that 23 x 58 is divisible by 3 .
"explanation : the sum of the digits of the number is divisible by 3 , then the number is divisible by 3 . 2 + 3 + x + 5 + 8 = 18 + x least value of x may be 0 therefore 18 + 0 = 18 is divisible by 3 . answer : option b"
a = math.lcm(23, 58) b = a / 58 c = b / 4 d = c / 4
a ) 288 , b ) 210 , c ) 881 , d ) 1277 , e ) 121
b
multiply(22, multiply(54, const_0_2778))
a train passes a station platform in 36 sec and a man standing on the platform in 22 sec . if the speed of the train is 54 km / hr . what is the length of the platform ?
"speed = 54 * 5 / 18 = 15 m / sec . length of the train = 15 * 22 = 330 m . let the length of the platform be x m . then , ( x + 330 ) / 36 = 15 = > x = 210 m . answer : b"
a = 54 * const_0_2778 b = 22 * a
a ) 7 % , b ) 10 % , c ) 11 % , d ) 12 % , e ) 15 %
e
multiply(subtract(divide(22, const_100), divide(subtract(8.55, multiply(divide(22, const_100), multiply(18, 2))), subtract(multiply(15, 3), multiply(18, 2)))), const_100)
fox jeans regularly sell for $ 15 a pair and pony jeans regularly sell for $ 18 a pair . during a sale these regular unit prices are discounted at different rates so that a total of $ 8.55 is saved by purchasing 5 pairs of jeans : 3 pairs of fox jeans and 2 pairs of pony jeans . if the sum of the two discount rates is 22 percent , what is the discount rate on pony jeans ?
"let x be the discount on pony jeans . then 0.22 - x is the discount on fox jeans . 3 ( 0.22 - x ) ( 15 ) + 2 x ( 18 ) = 8.55 9.9 - 45 x + 36 x = 8.55 9 x = 1.35 x = 0.15 the answer is e ."
a = 22 / 100 b = 22 / 100 c = 18 * 2 d = b * c e = 8 - 55 f = 15 * 3 g = 18 * 2 h = f - g i = e / h j = a - i k = j * 100
a ) 19 , b ) 35 , c ) 20 , d ) 32 , e ) 23
e
subtract(multiply(29, const_3), multiply(32, const_2))
the average age of a , b and c is 29 years . if the average age of a and c is 32 years , what is the age of b in years ?
"age of b = age of ( a + b + c ) â € “ age of ( a + c ) = 29 ã — 3 â € “ 32 ã — 2 = 87 â € “ 64 = 23 years e"
a = 29 * 3 b = 32 * 2 c = a - b
a ) 33 : 25 , b ) 47 : 20 , c ) 47 : 25 , d ) 22 : 25 , e ) 97 : 50
c
divide(add(88, const_100), const_100)
the number of sailors on a ship is 88 % more than the number of officers . the ratio of sailors to officers would be
"sailor = 1 / 88 * officer sailor / officer = 1.88 / 1 = 188 / 100 = 47 / 25 answer will be c"
a = 88 + 100 b = a / 100
['a ) 3000 sq m', 'b ) 1878 sq m', 'c ) 2789 sq m', 'd ) 26811 sq m', 'e ) 29762 sq m']
a
multiply(300, divide(300, add(add(5, 12), 13)))
the sides of a triangle are in the ratio 5 : 12 : 13 and its perimeter is 300 m , its area is ?
5 x + 12 x + 13 x = 300 = > x = 10 a = 50 , b = 120 , c = 130 s = ( 50 + 120 + 130 ) / 2 = 150 3000 sq m answer : a
a = 5 + 12 b = a + 13 c = 300 / b d = 300 * c
a ) 7 / 32 , b ) 3 / 64 , c ) 5 / 64 , d ) 3 / 128 , e ) 7 / 128
e
multiply(power(divide(const_1, const_2), 6), multiply(choose(7, 6), divide(const_1, const_2)))
a coin is tossed 7 times . what is the probability of getting exactly 6 heads ?
"the number of possible outcomes is 2 ^ 7 = 128 there are 7 ways to get exactly 6 heads . p ( exactly 6 heads ) = 7 / 128 the answer is e ."
a = 1 / 2 b = a ** 6 c = math.comb(7, 6) d = 1 / 2 e = c * d f = b * e
a ) two , b ) three , c ) four , d ) five , e ) six
d
multiply(5, 1)
how many integer values r are there for x such that 1 < 3 x + 5 < 17 ?
1 < 3 x + 5 < 17 = > - 4 < 3 x < 12 = > - 4 / 3 < x < 4 x can take integer values r - 1,0 , 1 , 2 , 3 answer d
a = 5 * 1
a ) 5526 , b ) 5426 , c ) 5326 , d ) 5226 , e ) none of them
a
divide(7429, divide(8597, const_100))
find the missing value : 8597 - ? = 7429 - 4358
"let 8597 - x = 7429 - 4358 . then , x = ( 8597 + 4358 ) - 7429 = 12955 - 7429 = 5526 . answer is a ."
a = 8597 / 100 b = 7429 / a
a ) m - n , b ) m + n , c ) mn , d ) mn ^ 2 - mn , e ) mn ^ 2
d
floor(power(multiply(1, const_2), const_0_33))
if m and n are positive integers and n ≠ 1 , then mn ( n − 1 ) is
"mn ( n - 1 ) = mn ^ 2 - mn answer : d"
a = 1 * 2 b = a ** const_0_33 c = math.floor(b)
a ) 35 , 49 , b ) 40 , 56 , c ) 45 , 63 , d ) 50 , 70 , e ) 55 , 77
b
subtract(multiply(multiply(subtract(multiply(9, const_4.0), multiply(5, 20)), const_2.0), divide(const_3.0, 5)), multiply(subtract(multiply(9, 20), multiply(5, 20)), 5))
two numbers are in the ratio of 5 : 7 . if 20 is subtracted from each number , they are in the ratio of 5 : 9 . what are the two numbers ?
"( 5 x - 20 ) : ( 7 x - 20 ) = 5 y : 9 y 5 x - 20 = 5 y 7 x - 20 = 9 y 140 - 100 = 45 y - 35 y 40 = 10 y y = 4 5 x - 20 = 20 x = 8 the two numbers are 5 x and 7 x which are 40 and 56 . the answer is b ."
a = 9 * 4 b = 5 * 20 c = a - b d = c * 2 e = 3 / 0 f = d * e g = 9 * 20 h = 5 * 20 i = g - h j = i * 5 k = f - j
a ) 140 , b ) 150 , c ) 160 , d ) 170 , e ) 180
e
divide(divide(500, const_1000), divide(10, const_3600))
a train 500 m long can cross an electric pole in 10 sec and then find the speed of the train ?
"length = speed * time speed = l / t s = 500 / 10 s = 50 m / sec speed = 50 * 18 / 5 ( to convert m / sec in to kmph multiply by 18 / 5 ) speed = 180 kmph answer : e"
a = 500 / 1000 b = 10 / 3600 c = a / b
a ) 10 % , b ) 9 % , c ) 14 % , d ) 15 % , e ) 12 %
c
multiply(subtract(multiply(subtract(1, divide(5, const_100)), 2), divide(5, const_100)), 5)
a retailer sold 2 houses at each $ 15000 . on 1 st house he got 20 % profit and on 2 nd house he loss 5 % then find his net profit or loss ?
"a = 20 % b = - 5 % profit % = 20 - 5 + ( - 100 / 100 ) = 14 % answer is c"
a = 5 / 100 b = 1 - a c = b * 2 d = 5 / 100 e = c - d f = e * 5
a ) 12,28 , b ) 14,30 , c ) 16,32 , d ) 18,34 , e ) 19,32
b
subtract(divide(subtract(add(multiply(6, 6), 16), 6), subtract(6, const_1)), const_1)
ages of two persons differ by 16 years . if 6 year ago , the elder one be 3 times as old the younger one , find their present age
"explanation : let the age of younger person is x , then elder person age is ( x + 16 ) = > 3 ( x - 6 ) = ( x + 16 - 6 ) [ 6 years before ] = > 3 x - 18 = x + 10 = > x = 14 . so other person age is x + 16 = 30 answer : option b"
a = 6 * 6 b = a + 16 c = b - 6 d = 6 - 1 e = c / d f = e - 1
a ) 226 , b ) 228 , c ) 229 , d ) 230 , e ) 200
a
divide(add(452, const_1), const_2)
the sum of two consecutive numbers is 452 . the greatest among these three number is :
"let the numbers be x , x + 1 then , x + ( x + 1 ) = 452 2 x = 450 x = 225 greatest number , ( x + 1 ) = 226 answer : a"
a = 452 + 1 b = a / 2
a ) 32 kmph , b ) 39 kmph , c ) 34 kmph , d ) 35 kmph , e ) 36 kmph
b
divide(add(100, 50), add(divide(100, 30), divide(50, 90)))
a car travels uphill at 30 km / hr and downhill at 90 km / hr . it goes 100 km uphill and 50 km downhill . find the average speed of the car ?
"avg speed = total distance / total time . total distance traveled = 100 + 50 = 150 km ; time taken for uphill journey = 100 / 30 = 10 / 3 ; time taken for down hill journey = 50 / 90 = 5 / 9 ; avg speed = 150 / ( 10 / 3 + 5 / 9 ) = 39 kmph answer : b"
a = 100 + 50 b = 100 / 30 c = 50 / 90 d = b + c e = a / d
a ) 1 / 32 , b ) 1 / 7776 , c ) 1 / 33 , d ) 1 / 38 , e ) 1 / 34
b
multiply(multiply(multiply(divide(const_1, 6), divide(const_1, 6)), divide(const_1, 6)), divide(const_1, 6))
six 6 faced dice are thrown together . the probability that all the three show the same number on them is ?
"the three dice can fall in 6 * 6 * 6 * 6 * 6 * 6 = 46656 ways . hence the probability is 6 / 46656 = 1 / 7776 answer : b"
a = 1 / 6 b = 1 / 6 c = a * b d = 1 / 6 e = c * d f = 1 / 6 g = e * f
a ) $ 900 , b ) $ 810 , c ) $ 915 , d ) $ 715 , e ) $ 567
e
multiply(700, power(subtract(const_1, divide(10, const_100)), 2))
a present value of a machine is $ 700 . its value depletion rate is 10 % per annum then find the machine value after 2 years ?
"p = $ 700 r = 10 % t = 2 years machine value after 2 years = p [ ( 1 - r / 100 ) ^ t ] = 700 * 9 / 10 * 9 / 10 = $ 567 answer is e"
a = 10 / 100 b = 1 - a c = b ** 2 d = 700 * c
a ) 67 , b ) 97 , c ) 55 , d ) 32 , e ) 62
e
subtract(subtract(add(subtract(subtract(reminder(reminder(19614181, power(const_100, const_2)), const_100), const_10), const_10), reminder(floor(divide(19413843, power(const_100, const_2))), const_100)), const_10), const_10)
if xy denotes x is raised to the power y , find the last two digits of 19413843 + 19614181
"1721 ^ 3856 unit digit = 1 ^ 2 = 1 10 th digit = 5 * 6 = 30 = 0 means last two digit = 1 and 1982 ^ 4181 unit digit = 1 10 th digit = 8 * 2 = 16 mean last two digit = 61 hence , 61 + 1 = 62"
a = 100 ** 2 b = reminder - ( c = b - 100 d = c + 10 e = d - 10 f = 100 ** 2 g = 19413843 / f h = math.floor(g) i = e - reminder
a ) 72 sec , b ) 132 sec , c ) 192 sec , d ) 273.6 sec , e ) none
d
multiply(const_3600, divide(divide(add(200, 180), const_1000), subtract(45, 40)))
two trains 200 m and 180 m long are running on parallel rails at the rate of 40 kmph and 45 kmph respectively . in how much time will they cross each other , if they are running in the same direction ?
"solution relative speed = ( 45 - 40 ) kmph = 5 kmph = ( 5 x 5 / 18 ) m / sec = ( 25 / 18 ) m / sec time taken = ( 380 x 18 / 25 ) sec = 273.6 sec . answer d"
a = 200 + 180 b = a / 1000 c = 45 - 40 d = b / c e = 3600 * d
a ) 9 , b ) 12 , c ) 15 , d ) 16 , e ) 18
d
subtract(multiply(divide(multiply(24, divide(5, add(5, 3))), divide(3, add(5, 3))), divide(5, add(5, 3))), subtract(24, multiply(24, divide(5, add(5, 3)))))
at deluxe paint store , fuchsia paint is made by mixing 5 parts of red paint with 3 parts of blue paint . mauve paint is made by mixing 3 parts of red paint with 5 parts blue paint . how many liters of blue paint must be added to 24 liters of fuchsia to change it to mauve paint ?
"in 24 liters , red = 5 / 8 * 24 = 15 and blue = 9 so , 15 / ( 9 + x ) = 3 / 5 or , x = 16 ( answer d )"
a = 5 + 3 b = 5 / a c = 24 * b d = 5 + 3 e = 3 / d f = c / e g = 5 + 3 h = 5 / g i = f * h j = 5 + 3 k = 5 / j l = 24 * k m = 24 - l n = i - m
a ) 17 litres , b ) 22 litres , c ) 11 litres , d ) 07 litres , e ) 38 litres
b
divide(subtract(multiply(33, 1399.45), multiply(33, 262.85)), subtract(3104.35, 1399.45))
the manager at a health foods store mixes a unique superfruit juice cocktail that costs $ 1399.45 per litre to make . the cocktail includes mixed fruit juice and a ç ai berry juice , which cost $ 262.85 per litre and $ 3104.35 per litre , respectively . the manager has already opened 33 litres of the mixed fruit juice . how many litres of the a ç ai berry juice does he need to add ?
262.85 ( 33 ) + 3 , 104.35 x = 1 , 399.45 ( 33 + x ) solve the equation . 262.85 ( 33 ) + 3 , 104.35 x = 1 , 399.45 ( 33 + x ) 8 , 674.05 + 3 , 104.35 x = 46181.85 + 1 , 369.45 x 8 , 674.05 + 1 , 704.9 x = 46181.85 1 , 704.9 x = 37 , 507.8 x = 22 answer is b .
a = 33 * 1399 b = 33 * 262 c = a - b d = 3104 - 35 e = c / d
a ) 11 , b ) 13 , c ) 14 , d ) 18 , e ) 10
b
divide(multiply(subtract(add(divide(1, 2), 3), add(divide(1, 3), 3)), 7800), const_100)
if the sales tax reduced from 3 1 / 2 % to 3 1 / 3 % , then what difference does it make to a person who purchases an article with market price of rs . 7800 ?
"required difference = [ 3 ½ % of rs . 7800 ] – [ 3 1 / 3 % of rs . 7800 ] = [ ( 7 / 20 - ( 10 / 3 ) ] % of rs . 7800 = 1 / 6 % of rs . 7800 = rs . [ ( 1 / 6 ) 8 ( 1 / 100 ) * 7800 ] = rs . 13 . answer is b ."
a = 1 / 2 b = a + 3 c = 1 / 3 d = c + 3 e = b - d f = e * 7800 g = f / 100
a ) 6 sec . , b ) 7 sec . , c ) 9 sec . , d ) 12 sec . , e ) none
d
divide(200, multiply(add(68, 8), const_0_2778))
a train 200 m long is running with a speed of 68 kmph . in what time will it pass a man who is running at 8 kmph in the same direction in which the train is going ?
"solution speed of the train relative to man = ( 68 - 8 ) = 60 kmph = 60 x 5 / 18 = 50 / 3 m / sec . time taken by it to cover 200 m at ( 50 / 3 ) m / sec = ( 200 x 3 / 50 ) sec = 12 sec . answer d"
a = 68 + 8 b = a * const_0_2778 c = 200 / b
a ) a ) 24 , b ) b ) 36 , c ) c ) 48 , d ) d ) 60 , e ) e ) 72
b
subtract(40, multiply(multiply(12, 6), 2))
evaluate : 40 - 12 ÷ 6 × 2 =
"according to order of operations , 12 ÷ 6 × 2 ( division and multiplication ) is done first from left to right 12 ÷ 6 × 2 = 2 × 2 = 4 hence 40 - 12 ÷ 6 × 2 = 40 - 4 = 36 correct answer is b ) 36"
a = 12 * 6 b = a * 2 c = 40 - b
a ) 16 % , b ) 25 % , c ) 32 % , d ) 75 % , e ) 52 %
d
multiply(divide(subtract(96, 24), 96), const_100)
in town x , 96 percent of the population are employed , and 24 percent of the population are employed males . what percent of the employed people in town x are females ?
"total employed people 96 % , out of which 24 are employed males , hence 72 % are employed females . ( employed females ) / ( total employed people ) = 72 / 96 = 3 / 4 = 75 % answer : d ."
a = 96 - 24 b = a / 96 c = b * 100
a ) 1 , b ) 2 , c ) 4 , d ) 8 , e ) 16
d
multiply(const_2, sqrt(power(4, const_2)))
a circular garden is surrounded by a fence of negligible width along the boundary . if the length of the fence is 1 / 4 of th area of the garden . what is the radius of the circular garden ?
"as per the question - - width is negligible now , let l be the length of the fence = 2 pir l = 1 / 4 ( pir ^ 2 ) pir ^ 2 = 8 pir r = 8 answer : d"
a = 4 ** 2 b = math.sqrt(a) c = 2 * b
a ) 38 , b ) 40 , c ) 27 , d ) 43 , e ) 56
c
subtract(70, divide(subtract(multiply(3, 70), 38), add(3, 1)))
in an entrance exam , 3 marks is awarded for every correct answer and ( - 1 ) for every wrong answer . if a student gets 38 marks after attempting all questions , find the number of questions answered correctly if the total questions were 70 .
explanation : let x be the number of questions answered correctly . hence , number of questions whose answer were wrong = ( 70 – x ) 3 * x + ( 70 – x ) * ( - 1 ) = 38 4 x = 38 + 70 = 108 x = 27 answer c
a = 3 * 70 b = a - 38 c = 3 + 1 d = b / c e = 70 - d
a ) 40 - 42 , b ) 39 - 41 , c ) 38 - 40 , d ) 37 - 38 , e ) 36 - 37
d
add(divide(multiply(35.5, 5), const_100), 35.5)
a meal cost $ 35.50 adn there was no tax . if the tip was more than 5 pc but less than 8 pc of the price , then the total amount paid should be :
5 % ( 35.5 ) = 1.775 8 % ( 35.5 ) = 2.84 total amount could have been 35.5 + 1.775 and 35.5 + 2.84 = > could have been between 37.275 and 38.34 = > approximately between 37 and 38 answer is b . d
a = 35 * 5 b = a / 100 c = b + 35
['a ) none', 'b ) two', 'c ) four', 'd ) five', 'e ) seven']
b
subtract(subtract(10, const_4), const_4)
r is the set of positive odd integers less than 10 , and s is the set of the squares of the integers in r . how many elements does the intersection of r and s contain ?
squares < 10 { 1 , 4,9 } s = { 1,9 } r = { 1,3 , . . . . . 10 } hence b .
a = 10 - 4 b = a - 4
a ) 6 , b ) 12 , c ) 14 , d ) 16 , e ) 20
b
subtract(30, 18)
in a certain kindergarten , every child has got either a dog or a cat or both . 18 children have got dogs only and 6 children have got both dogs and cats . if there are 30 children in the kindergarten , how many of them have cats ?
a : only cats b : both cats and dogs c : only dogs as per question , a + b + c = 30 c = 18 b = 6 , so a = 6 . hence , a + b = 12 . answer is b
a = 30 - 18
a ) 200 , b ) 160 , c ) 100 , d ) 65 , e ) 150
e
multiply(divide(divide(75, const_100), divide(divide(45, const_100), divide(90, const_100))), const_100)
if 45 % of z is 90 % of y and y is 75 % of x , what percent of x is z ?
( 45 / 100 ) z = ( 90 / 100 ) y and y = ( 75 / 100 ) x i . e . y = ( 3 / 4 ) x i . e . ( 45 / 100 ) z = ( 90 / 100 ) * ( 3 / 4 ) x i . e . z = ( 90 * 3 ) x / ( 45 * 4 ) i . e . z = ( 1.5 ) x = ( 150 / 100 ) x i . e . z is 150 % of x answer : option e
a = 75 / 100 b = 45 / 100 c = 90 / 100 d = b / c e = a / d f = e * 100
a ) 31 / 4 , b ) 33 / 4 , c ) 29 / 4 , d ) 27 / 4 , e ) 25 / 4
b
divide(multiply(subtract(const_12, const_1), subtract(inverse(subtract(const_12, const_3)), inverse(const_10))), subtract(inverse(add(const_1, const_4)), inverse(subtract(const_12, const_3))))
for each month of a given year except december , a worker earned the same monthly salary and donated one - tenth of that salary to charity . in december , the worker earned n times his usual monthly salary and donated one - fifth of his earnings to charity . if the worker ' s charitable contributions totaled one - seventh of his earnings for the entire year , what is the value of n ?
"let monthly salary for each of the 11 months except december was x , then 11 x * 1 / 10 + nx * 1 / 5 = 1 / 7 ( 11 x + nx ) ; 11 / 10 + n / 5 = 1 / 7 ( 11 + n ) 11 + 2 n / 10 = 11 + n / 7 = > 77 + 14 n = 110 + 10 n = > 4 n = 33 n = 33 / 4 answer : b"
a = 12 - 1 b = 12 - 3 c = 1/(b) d = 1/(10) e = c - d f = a * e g = 1 + 4 h = 1/(g) i = 12 - 3 j = 1/(i) k = h - j l = f / k
['a ) 42', 'b ) 45', 'c ) 47', 'd ) 49', 'e ) 56']
a
divide(multiply(multiply(7, 18), 3), 9)
a lady builds 7 cm length , 18 cm width , and 3 cm height box using 9 cubic cm cubes . what is the minimum number of cubes required to build the box ?
number of cubes required = volume of box / volume of cube = 7 * 18 * 3 / 9 = 42 cubes answer : a
a = 7 * 18 b = a * 3 c = b / 9
a ) 30 % , b ) 40 % , c ) 70 % , d ) 19 % , e ) 29 %
c
divide(const_100, add(const_1, 49))
solve the quickfire maths brain teaser â ˆ š 49 % = ?
"â ˆ š 49 % = > â ˆ š 49 / â ˆ š 100 = > 7 / 10 = > 70 / 100 = > 70 % c"
a = 1 + 49 b = 100 / a
a ) 1 : 9 , b ) 1 : 7 , c ) 1 : 2 , d ) 3 : 10 , e ) 1 : 4
d
divide(divide(multiply(1, 3), multiply(4, 2)), divide(multiply(3, 4), multiply(2, 5)))
the compound ratio of 1 : 4 , 3 : 2 and 4 : 5 ?
"1 / 4 * 3 / 2 * 4 / 5 = 3 / 10 = 3 : 10 answer : d"
a = 1 * 3 b = 4 * 2 c = a / b d = 3 * 4 e = 2 * 5 f = d / e g = c / f
a ) 480 , b ) 120 , c ) 160 , d ) 240 , e ) 360
a
multiply(multiply(2, 6), multiply(multiply(2, 4), 5))
if the operation € is defined for all x and y by the equation x € y = 2 * x * y , then 6 € ( 4 € 5 ) =
working inside out , ( 4 € 5 ) = 2 * 4 * 5 = 40 6 € 40 = 2 * 6 * 40 = 480 hence , answer is a
a = 2 * 6 b = 2 * 4 c = b * 5 d = a * c
a ) 3500 , b ) 4600 , c ) 5400 , d ) 4800 , e ) none of these
b
add(divide(multiply(subtract(8800, divide(multiply(12.5, 8800), const_100)), add(const_2, const_3)), add(add(const_2, const_3), add(const_2, const_4))), divide(multiply(12.5, 8800), const_100))
a is a working partner and b is a sleeping partner in a business . a puts in 50,000 and b 60,000 . a gets 12.5 % of the profit for managing the business , and the rest is divided in proportion to their capitals . find the share of a in profit of 8800 .
the amount a gets for managing = 12.5 % of rs . 8800 = 1100 remaining profit = 8800 – 1100 = 7700 this is to be divided in the ratio 5 : 6 . share of a = 5 / 11 of 7700 = 3500 ⇒ total share of a = 3500 + 1100 = 4600 . answer b
a = 12 * 5 b = a / 100 c = 8800 - b d = 2 + 3 e = c * d f = 2 + 3 g = 2 + 4 h = f + g i = e / h j = 12 * 5 k = j / 100 l = i + k
a ) 50,000 , b ) 750,000 , c ) 850,000 , d ) 7 , 500,000 , e ) 2,400 , 000,000
e
add(divide(divide(divide(multiply(subtract(800000, multiply(50, 12000)), 12000), const_1000), const_1000), const_3), 50)
the number x of cars sold each week varies with the price y in dollars according to the equation x = 800000 – 50 y . what would be the total weekly revenue , in dollars , from the sale of cars priced at $ 12000 ?
number of cars sold = x = 800000 - 50 y y = 12000 x = 800000 - 600000 = 200000 revenue from 50000 cars = 12000 * 200000 = 2400000000 answer e
a = 50 * 12000 b = 800000 - a c = b * 12000 d = c / 1000 e = d / 1000 f = e / 3 g = f + 50
a ) 648 , b ) 1800 , c ) 2700 , d ) 10800 , e ) 3600
e
multiply(multiply(divide(270, 6), 4), 20)
running at the same constant rate , 6 identical machines can produce a total of 270 bottles per minute . at this rate , how many bottles could 20 such machines produce in 4 minutes ?
"solution let the required number of bottles be x . more machines , more bottles ( direct proportion ) more minutes , more bottles ( direct proportion ) â ˆ ´ 6 ã — 1 ã — x = 20 ã — 4 ã — 270 â ‡ ” x = 20 x 4 x 270 / 6 = 3600 . answer e"
a = 270 / 6 b = a * 4 c = b * 20
a ) 174 cm , b ) 173 cm , c ) 172 cm , d ) 171 cm , e ) 170 cm
b
divide(subtract(multiply(20, 175), subtract(151, 111)), 20)
the average height of 20 students in a class was calculated as 175 cm . it has later found that the height of one of the students in the class was incorrectly written as 151 cm whereas the actual height was 111 cm . what was the actual average height of the students in the class ?
"the total height was 40 cm too much . the average height should be reduced by 40 cm / 20 = 2 cm the answer is b ."
a = 20 * 175 b = 151 - 111 c = a - b d = c / 20
a ) 12 , b ) 14 , c ) 16 , d ) 18 , e ) 20
c
subtract(add(multiply(6, 2), multiply(4, 2)), 4)
john was thrice as old as tom 6 years ago . john will be 2 times as old as tom in 4 years . how old is tom today ?
j - 6 = 3 ( t - 6 ) , so j = 3 t - 12 j + 4 = 2 ( t + 4 ) ( 3 t - 12 ) + 4 = 2 t + 8 t = 16 the answer is c .
a = 6 * 2 b = 4 * 2 c = a + b d = c - 4
a ) $ 2000 , b ) $ 6000 , c ) $ 4000 , d ) $ 1333 , e ) $ 3000
e
divide(800, multiply(subtract(divide(700, const_1000), divide(300, const_1000)), subtract(const_1, divide(const_1, const_3))))
mary and mike enter into a partnership by investing $ 700 and $ 300 respectively . at the end of one year , they divided their profits such that a third of the profit is divided equally for the efforts they have put into the business and the remaining amount of profit is divided in the ratio of the investments they made in the business . if mary received $ 800 more than mike did , what was the profit made by their business in that year ?
explanatory answer let the profit made during the year be $ 3 x therefore , $ x would have been shared equally and the remaining $ 2 x would have been shared in the ratio 7 : 3 . i . e . , 70 % of 2 x would go to mary and 30 % of 2 x would go to mike . hence , mary would get ( 70 - 30 ) % of 2 x more than mike or 40 % of 2 x = $ 800 i . e . , ( 40 / 100 ) * 2 x = 800 or 2 x = 2000 . hence , the profit made by the company during the year $ 3 x = $ 3000 . the correct choice is ( e )
a = 700 / 1000 b = 300 / 1000 c = a - b d = 1 / 3 e = 1 - d f = c * e g = 800 / f
a ) 25 % , b ) 35 % , c ) 45 % , d ) 70 % , e ) 80 %
b
add(const_10, divide(add(25, 25), const_2))
in goshawk - eurasian nature reserve 30 percent of the birds are hawks , and 40 percent of the non - hawks are paddyfield - warblers . if there are 25 percent as many kingfishers as paddyfield - warblers in the reserve , then what percent of the birds w in the nature reserve are not hawks , paddyfield - warblers , or kingfishers ?
"1 . we are given the following percentages : 30 ( 70 ) , 40 ( 60 ) , 25 ( 75 ) . there are two threads from here . first starts at 30 % and finishes there . second one starts at 70 , then 40 , and then 25 . we need a value that is divisible by 7 , 2 , and 5 at least once . lets pick a number now , say 700 . so say if non hawks are 700 ( this is 70 % of the total , so total = 1000 ) , then paddy warbs are 2 / 5 x 700 = 1400 / 5 = 280 . kingfishers , therefore , are 280 / 4 = 70 . lets add them up . 300 hawks + 280 peddy warbs + 70 kingsifhers = 650 . so all others are 1000 - 650 = 350 or 35 % of total birds . the main job here to to identify the smart number to start the question with . this can be time consuming , but once identified , this question can be solved fairly quickly . 2 . another method : if x is total - - > non hawks = 0.7 x - - > warbs = 0.4 ( 0.7 x ) - - > kfs = 0.25 ( 0.4 ( 0.7 x ) ) . our job is to find out w : ( 0.3 x + 0.28 x + 0.07 x ) / x . or 0.65 x / x = 0.65 . we need to find 1 - 0.65 = 0.35 or 35 % . b"
a = 25 + 25 b = a / 2 c = 10 + b
a ) $ 10079.44 , b ) t = $ 10815.83 , c ) $ 12652.61 , d ) $ 14232.14 , e ) $ 20598.11
b
multiply(10000, power(add(const_1, divide(divide(3.96, const_100), const_2)), const_4))
jill invests $ 10000 in an account that pays an annual rate of 3.96 % , compounding semi - annually . approximately how much t does she have in her account after two years ?
"ps . i guess one can use simple interest to solve cause the answer choices are quite spread between you can easily arrive at something near 8 % hence b the answer"
a = 3 / 96 b = a / 2 c = 1 + b d = c ** 4 e = 10000 * d
a ) 20 , b ) 35 , c ) 40 , d ) 55 , e ) 60
a
subtract(115, add(add(40, 50), divide(add(40, subtract(80, add(add(50, 70), 40))), 2)))
in an intercollegiate competition that lasted for 3 days , 115 students took part on day 1 , 80 on day 2 and 100 on day 3 . if 50 took part on day 1 and day 2 and 70 took part on day 2 and day 3 and 40 took part on all three days , how many students took part only on day 3 ?
"day 1 & 2 = 50 ; only day 1 & 2 ( 50 - 40 ) = 10 , day 2 & 3 = 70 ; only day 2 & 3 ( 70 - 40 ) = 30 , only day 3 = 100 - ( 10 + 30 + 40 ) = 20 answer : a"
a = 40 + 50 b = 50 + 70 c = b + 40 d = 80 - c e = 40 + d f = e / 2 g = a + f h = 115 - g
a ) 44001 , b ) 44000 , c ) 40400 , d ) 40401 , e ) can not be determined
d
add(power(divide(subtract(401, 1), const_2), const_2), 401)
a lady grows cauliflower in her garden that is in the shape of a square . each cauliflower takes 1 square foot of area in her garden . this year , she has increased her output by 401 cauliflower when compared to last year . the shape of the area used for growing the cauliflower has remained a square in both these years . how many cauliflowers did she produce this year ?
"explanatory answer the shape of the area used for growing cauliflower has remained a square in both the years . let the side of the square area used for growing cauliflower this year be x ft . therefore , the area of the ground used for cultivation this year = x 2 sq . ft . let the side of the square area used for growing cauliflower last year be y ft . therefore , the area of the ground used for cultivation last year = y 2 sq . ft . as the number of cauliflower grown has increased by 401 , the area would have increased by 401 sq ft because each cauliflower takes 1 sq ft space . hence , x 2 - y 2 = 401 ( x + y ) ( x - y ) = 401 . 401 is a prime number and hence it will have only two factors . i . e . , 401 and 1 . therefore , 401 can be expressed as product of 2 numbers in only way = 401 * 1 i . e . , ( x + y ) ( x - y ) = 401 * 1 so , ( x + y ) should be 401 and ( x - y ) should be 1 . solving the two equations we get x = 201 and y = 200 . therefore , number of cauliflower produced this year = x 2 = 2012 = 40401 alternative approach : use answer choices the area in both the years are squares of two numbers . that rules out choice a , b and c . as 44001,44000 and 40400 are not the square of any number . check choice d : if this year ' s produce is 40401 , last year ' s produce would have been 40401 - 401 = 40000 40000 is the square of 200 . so , 40401 is the answer . choice d ."
a = 401 - 1 b = a / 2 c = b ** 2 d = c + 401
a ) 20 , b ) 30 , c ) 36 , d ) 40 , e ) 60
b
add(multiply(divide(5, subtract(divide(9, 10), divide(3, 4))), divide(3, 4)), 5)
if 5 gallons of gasoline are added to a tank that is already filled to 3 / 4 of its capacity , the tank is then filled to 9 / 10 of its capacity . how many gallons does the tank hold ?
let the capacity of the tank = c ( 3 / 4 ) c + 5 = ( 9 / 10 ) c = > ( 9 / 10 ) c - ( 3 / 4 ) c = 5 = > ( 3 / 20 ) c = 5 = > c = ( 5 * 20 ) / 3 = 33.33 number of gallons of gasoline that the tank currently holds = 3 / 4 * c + 5 = 24.99 + 5 = 29.99 = 30 answer b
a = 9 / 10 b = 3 / 4 c = a - b d = 5 / c e = 3 / 4 f = d * e g = f + 5
a ) 210 , b ) 215 , c ) 212 , d ) 230 , e ) 320
d
multiply(const_100, divide(subtract(subtract(1, divide(1, const_100)), divide(36, 120)), divide(36, 120)))
a retailer buys 120 pens at the market price of 36 pens from a wholesaler , if he sells these pens giving a discount of 1 % , what is the profit % ?
"let the market price of each pen be $ 1 then , cost price of 120 pens = $ 36 selling price of 120 pens = 99 % of $ 120 = $ 118.80 profit % = ( ( 82.80 * 100 ) / 36 ) % = 230 % answer d"
a = 1 / 100 b = 1 - a c = 36 / 120 d = b - c e = 36 / 120 f = d / e g = 100 * f
a ) 14.11 , b ) 19.75 , c ) 20.75 , d ) 21.75 , e ) 22.75
a
subtract(multiply(divide(const_100, 68), divide(multiply(60, 84), const_100)), 60)
there is 60 lit of milk and water in which milk forms 84 % . howmuch water must be added to this solution to make it solution in which milk forms 68 %
"60 * 84 / 100 = 50.40 lit milk that is 9.60 lit water let x lit water will be added then ( 60 + x ) * 68 / 100 = 50.40 so x = 14.11 answer : a"
a = 100 / 68 b = 60 * 84 c = b / 100 d = a * c e = d - 60
a ) 6 , b ) 9 , c ) 10 , d ) 11 , e ) 12
a
multiply(divide(1.60, add(0.35, 0.25)), const_2)
a certain store sold pens for $ 0.35 each and pencils for $ 0.25 each . if a customer purchased both pens and pencils from the store for a total of $ 1.60 , what total number of pens and pencils did the customer purchase ?
"answer : algebraically , the question looks like this : 2.5 = 0.35 x + 0.25 y . there are six possible numbers of pencils that fit that requirement : 1 pen : $ 0.35 and 5 pencils for $ 0.25 each . that ' s 1 pens and 5 pencils for a total of 6 pens and pencils . choice ( a ) is correct ."
a = 0 + 35 b = 1 / 60 c = b * 2
a ) 1 / 5 , b ) 1 / 6 , c ) 1 / 3 , d ) 1 / 6 , e ) 1 / 3
c
divide(subtract(subtract(add(multiply(0.3, const_4), 0.3), const_0_25), const_0_25), divide(0.9, 0.3))
given that g and h are events such that q ( g ) = 0.30 q ( h ) = 0.9 q ( gnh ) = 0.9 find q ( g | h ) and q ( g | h )
here , g and h are events q ( g | h ) = q ( gnh ) / q ( h ) = 0.9 / 0.9 = 1 q ( g | h ) = q ( gnh ) / q ( g ) = 0.9 / 0.30 = 1 / 3 answer is c
a = 0 * 3 b = a + 0 c = b - const_0_25 d = c - const_0_25 e = 0 / 9 f = d / e
a ) 6100 , b ) 5100 , c ) 550 , d ) 598 , e ) 5995
e
subtract(6000, divide(105, 21.0))
6000 − ( 105 ÷ 21.0 ) = ?
"explanation : = 6000 − ( 105 / 21 ) = 6000 − 5 = 5995 option e"
a = 105 / 21 b = 6000 - a
a ) 40 , b ) 87 , c ) 126 , d ) 18 , e ) 91
a
multiply(divide(multiply(6, const_4), 6), const_10)
a boats man can row in still water at speed of 7 km / hr . it takes 6 hours more to travel the same distance in upstream than in downstream if the speed of the river is 3 km / hr . what is the distance between the two destinations ?
explanation : x = 7 km / hr ; y = 3 km / hr ds = 10 km / hr ; us = 4 km / hr distance ( d ) is same . therefore , if time taken for downstream is t hours , the time for upstream is ( t + 6 ) hours . 10 * t = 4 * ( t + 6 ) 6 t = 24 ; t = 4 hours d = 10 * 4 = 40 km answer : a
a = 6 * 4 b = a / 6 c = b * 10
a ) 11 , b ) 18 , c ) 20 , d ) 45 , e ) 33
d
multiply(4, power(const_3, 3))
if 5400 mn = k ^ 4 , where m , n , and k are positive integers , what is the least possible value of 3 m + n ?
"k ^ 4 = 5400 ∗ mn k ^ 4 = 3 ^ 3.2 ^ 3.5 ^ 2 . mn in order to make rhs a perfect power of 4 , we require it to be multiplied by 3 , 2 & 5 ^ 2 mn = 3 . 2.5 ^ 2 mn = 150 = 10 * 15 ( least possible ) answer = 3 * 10 + 15 = 45 answer : d"
a = 3 ** 3 b = 4 * a
a ) 8 , b ) 2 , c ) 9 , d ) 4 , e ) 6
d
sqrt(24)
the difference between c . i . and s . i . on an amount of rs . 15,000 for 2 years is rs . 24 . what is the rate of interest per annum ?
"explanation : [ 15000 * ( 1 + r / 100 ) 2 - 15000 ] - ( 15000 * r * 2 ) / 100 = 104 15000 [ ( 1 + r / 100 ) 2 - 1 - 2 r / 100 ] = 24 15000 [ ( 100 + r ) 2 - 10000 - 200 r ] / 10000 = 24 r 2 = ( 24 * 2 ) / 3 = 16 = > r = 4 rate = 4 % answer : option d"
a = math.sqrt(24)
a ) 76 , b ) 78 , c ) 80 , d ) 82 , e ) 84
d
add(divide(subtract(multiply(76, 4), add(6, add(4, 6))), 4), add(4, 6))
there are 4 people of different heights standing in order of increasing height . the difference is 2 inches between the first person and the second person , and also between the second person and the third person . the difference between the third person and the fourth person is 6 inches and the average height is 76 . how tall is the fourth person ?
"let x be the height of the first person . then the heights are x , x + 2 , x + 4 , and x + 10 . 4 x + 16 = 4 ( 76 ) = 304 x = 72 and the fourth person has a height of 72 + 10 = 82 inches the answer is d ."
a = 76 * 4 b = 4 + 6 c = 6 + b d = a - c e = d / 4 f = 4 + 6 g = e + f
a ) $ 15,360 , b ) $ 17,360 , c ) $ 18,000 , d ) $ 21,960 , e ) $ 27,360
d
add(multiply(const_100, const_3), const_60)
a certain social security recipient will receive an annual benefit of $ 12,000 provided he has annual earnings of $ 9,360 or less , but the benefit will be reduced by $ 1 for every $ 3 of annual earnings over $ 9,360 . what amount of total annual earnings would result in a 65 percent reduction in the recipient ' s annual social security benefit ? ( assume social security benefits are not counted as part of annual earnings . )
for every $ 3 earn above $ 9360 , the recipient loses $ 1 of benefit . or for every $ 1 loss in the benefit , the recipient earns $ 3 above $ 9360 if earning is ; 9360 + 3 x benefit = 12000 - x or the vice versa if benefit is 12000 - x , the earning becomes 9360 + 3 x he lost 50 % of the benefit ; benefit received = 12000 - 0.65 * 12000 = 12000 - 7800 x = 4200 earning becomes 9360 + 3 x = 9360 + 3 * 4200 = 21960 ans : d
a = 100 * 3 b = a + const_60
a ) 238 , b ) 100 , c ) 299 , d ) 270 , e ) 111
b
multiply(const_4, 1)
how many prime numbers between 1 and 100 are factors of 7150 ?
"ans : 7 , 150 = 2 × 52 × 11 × 13 so there are 4 distinct prime numbers that are below 100 answer : b"
a = 4 * 1
a ) 122.6 $ , b ) 228.9 $ , c ) 343.7 $ , d ) 395.05 $ , e ) 412.12 $
d
add(multiply(multiply(add(65, divide(multiply(65, 120), const_100)), 2), 0.8), multiply(multiply(65, 3), 0.8))
in a fuel station the service costs $ 2.05 per car , every liter of fuel costs 0.8 $ . assuming that you fill up 3 mini - vans and 2 trucks , how much money will the fuel cost to all the cars owners total , if a mini - van ' s tank is 65 liters and a truck ' s tank is 120 % bigger and they are all empty - ?
service cost of 3 van and 2 truck = 2.05 * ( 3 + 2 ) = 10.5 fuel in 3 van = 3 * 65 = 195 litre fuel in 2 trucks = 2 * 65 ( 1 + 120 / 100 ) = 286 total fuel ( van + truck ) = 481 litre total fuel cost = 481 * 0.8 = 384.8 total cost = fuel + service = 384.8 + 10.25 = 395.05 answer is d
a = 65 * 120 b = a / 100 c = 65 + b d = c * 2 e = d * 0 f = 65 * 3 g = f * 0 h = e + g
a ) 880 , b ) 1450 , c ) 1600 , d ) 1800 , e ) none
a
divide(multiply(88, 80), subtract(88, 80))
the simple interest and the true discount on a certain sum for a given time and at a given rate are rs . 88 and rs . 80 respectively . the sum is :
"sol . sum = s . i . * t . d . / ( s . i ) - ( t . d . ) = 88 * 80 / ( 88 - 80 ) = rs . 880 . answer a"
a = 88 * 80 b = 88 - 80 c = a / b
a ) 16 , b ) 20 , c ) 15 , d ) 72 / 5 , e ) 24
d
divide(multiply(12, divide(add(3, 2), 2)), 2)
machines x and y produce bottles at their respective constant rates . machine x produces k bottles in 3 hours and machine y produces k bottles in 2 hours . how many hours does it take machines x and y , working simultaneously , to produce 12 k bottles ?
x rate = k / 3 y rate = k / 2 k / 3 + k / 2 = 12 k / t solving t = 72 / 5 answer d
a = 3 + 2 b = a / 2 c = 12 * b d = c / 2
a ) $ 1,000 , b ) $ 1,200 , c ) $ 1,400 , d ) $ 1,500 , e ) $ 2,200
d
subtract(1,000, 800)
a family pays $ 800 per year for an insurance plan that pays 65 percent of the first $ 1,000 in expenses and 100 percent of all medical expenses thereafter . in any given year , the total amount paid by the family will equal the amount paid by the plan when the family ' s medical expenses total .
"upfront payment for insurance plan = 800 $ family needs to pay 35 % of first 1000 $ in expense = 350 $ total amount paid by family when medical expenses are equal to or greater than 1000 $ = 800 + 350 = 1150 $ total amount paid by insurance plan for first 1000 $ = 800 $ total amount paid by family will equal amount paid by plan when medical expense = 1500 $ ( since insurance plan will pay 100 % of amount that exceeds 1150 $ ) answer d"
a = 1 - 0
a ) 90 , b ) 100 , c ) 110 , d ) 114 , e ) 130
d
subtract(multiply(divide(3, add(const_2, const_3)), 390), multiply(divide(4, add(const_3, const_4)), 210))
by how much is 3 - fifth of 390 greater than 4 - seventh of 210 ?
explanation : 3 / 5 of 390 - 4 / 7 of 210 = 234 - 120 = 114 . answer : d
a = 2 + 3 b = 3 / a c = b * 390 d = 3 + 4 e = 4 / d f = e * 210 g = c - f
a ) rs . 5000 , b ) rs . 5100 , c ) rs . 5800 , d ) rs . 6000 , e ) rs . 6200
b
divide(51, multiply(divide(10, const_100), divide(10, const_100)))
if difference between compound interest and simple interest on a sum at 10 % p . a . for 2 years is rs . 51 then sum is
p ( r / 100 ) ^ 2 = c . i - s . i p ( 10 / 100 ) ^ 2 = 51 5100 answer : b
a = 10 / 100 b = 10 / 100 c = a * b d = 51 / c
['a ) 90', 'b ) 180', 'c ) 210', 'd ) 240', 'e ) 864']
a
divide(multiply(multiply(27, 15), 6), volume_cube(divide(6, const_2)))
a box measuring 27 inches long by 15 inches wide by 6 inches deep is to be filled entirely with identical cubes . no space is to be left unfilled . what is the smallest number of cubes that can accomplish this objective ?
least number of cubes will be required when the cubes that could fit in are biggest . 3 is the biggest number that could divide all three , 27 , 15 and 6 . thus side of cube must be 3 , and total number of cubes = 27 / 3 * 15 / 3 * 6 / 3 = 90 ans a it is .
a = 27 * 15 b = a * 6 c = 6 / 2 d = b / volume_cube
a ) 500 % , b ) 250 % , c ) 65 % , d ) 125 % , e ) 60 %
c
multiply(add(const_1, divide(30, const_100)), subtract(const_100, 50))
if x is 30 percent more than y and y is 50 percent less than z , then x is what percent of z ?
"z = 100 ; y = 50 so x = 65 x as % of z = 65 / 100 * 100 = > 65 % answer will be ( c )"
a = 30 / 100 b = 1 + a c = 100 - 50 d = b * c
a ) a ) 540 , b ) b ) 400 , c ) c ) 700 , d ) d ) 740 , e ) e ) 840
d
divide(multiply(481, const_100), subtract(const_100, 35))
in an examination 35 % of the students passed and 481 failed . how many students appeared for the examination ?
"let the number of students appeared be x then , 65 % of x = 481 65 x / 100 = 481 x = 481 * 100 / 65 = 740 answer is d"
a = 481 * 100 b = 100 - 35 c = a / b
a ) 10 , b ) 12 , c ) 15 , d ) 20 , e ) 18
b
divide(multiply(add(20, 5), 4), 5)
a certain number of men can do a work in 20 days . if there were 4 men more it could be finished in 5 days less . how many men are there ?
"original number of workers = 4 * ( 20 - 5 ) / 5 = 12 men answer is b"
a = 20 + 5 b = a * 4 c = b / 5
a ) $ 37.80 , b ) $ 38.50 , c ) $ 39.20 , d ) $ 39.50 , e ) $ 41.80
e
add(multiply(38, divide(40, const_100)), 38)
a farmer spent $ 38 on feed for chickens and goats . he spent 40 % money on chicken feed , which he bought at a 20 % discount off the full price , and spent the rest on goat feed , which he bought at full price . if the farmer had paid full price for both the chicken feed and the goat feed , what amount would he have spent on the chicken feed and goat feed combined ?
"a farmer spent 40 % money on chicken feed , so he spent 0.4 * $ 38 = $ 15.2 on chicken feed , thus he spent the remaining 38 - 15.2 = $ 22.8 on goat feed . now , since he bought chicken feed at a 20 % discount then the original price of it was x * 0.8 = $ 15.2 - - > x = $ 19 . therefore if the farmer had paid full price for both the chicken feed and the goat feed , then he would he have spent 19 + 22.8 = $ 41.8 . answer : e ."
a = 40 / 100 b = 38 * a c = b + 38
a ) 127 days , b ) 667 days , c ) 177 days , d ) 187 days , e ) 350 days
e
multiply(divide(multiply(const_1, 100), subtract(multiply(const_1, 100), multiply(10, 7))), multiply(15, 7))
10 men and 15 women together can complete a work in 7 days . it takes 100 days for one man alone to complete the same work . how many days will be required for one woman alone to complete the same work ?
"1 man ' s 1 day work = 1 / 100 ( 10 men + 15 women ) ' s 1 day work = 1 / 7 15 women ' s 1 day work = ( 1 / 7 - 10 / 100 ) = 3 / 70 1 woman ' s 1 day work = 1 / 350 1 woman alone can complete the work in 350 days . answer : e"
a = 1 * 100 b = 1 * 100 c = 10 * 7 d = b - c e = a / d f = 15 * 7 g = e * f
a ) 24 days , b ) 25 days , c ) 30 days , d ) 32 days , e ) none of these
a
inverse(add(inverse(add(30, const_10)), inverse(60)))
a can do a work in 60 days . he works for 15 days and later b alone completes the work in 30 days . in what time will they together complete the work ?
let a can do a work in = 1 / 60 days he does 15 days so work done by a in 15 days = ( 15 ) * ( 1 / 60 ) = 1 / 4 remaining work is = 1 - 1 / 4 = 3 / 4 b ' s one day work is = 1 / 30 so 3 / 4 work is done by b in = ( 3 / 4 ) * ( 1 / 30 ) = 1 / 40 days time require to complete the work is = 1 / 60 + 1 / 40 = 5 / 120 5 / 120 = 1 / 24 so 24 days require to complete the work together . answer : a
a = 30 + 10 b = 1/(a) c = 1/(60) d = b + c e = 1/(d)
a ) 24 , b ) 30 , c ) 48 , d ) 54 , e ) 75
b
multiply(speed(add(multiply(divide(40, const_60), 30), 5), add(30, 20)), const_60)
jerry and beth each drove from smallville to crown city by different routes . jerry drove an an average speed of 40 miles per hour and completed the trip in 30 minutes . beth ' s route was 5 miles longer , and it took her 20 minutes more than jerry to complete the trip . how many miles per hour was beth ' s average speed on this trip ?
speed = distance / time distance for jerry = speed * time = 40 * 1 / 2 = 20 miles distance for beth = distance for jerry + 5 = 20 + 5 = 25 miles time taken by beth = time taken by jerry + ( 1 / 3 hour ) = 1 / 2 + 1 / 3 = 5 / 6 speed of beth = d / t = 25 / ( 5 / 6 ) = 25 * 6 / 5 = 30 miles per hour hence , b is the answer .
a = 40 / const_60 b = a * 30 c = b + 5 d = 30 + 20 e = speed * (
a ) 8 / 17 , b ) 7 / 15 , c ) 3 / 15 , d ) 8 / 15 , e ) 13 / 20
e
subtract(const_1, multiply(add(divide(const_1, 15), divide(const_1, 20)), 3))
a can do a work in 15 days and b in 20 days . if they work on it together for 3 days , then the fraction of the work that is left is
"person ( a ) ( b ) ( a + b ) time - ( 15 ) ( 20 ) ( - ) rate - ( 20 ) ( 15 ) ( 35 ) work - ( 300 ) ( 300 ) ( 300 ) therefore a + b requires ( 300 / 35 ) days to complete entire work for 1 st 4 days they work 35 * 3 = 105 remaining work is 300 - 105 = 195 remaining fraction of work is = 195 / 300 = 13 / 20 answer e"
a = 1 / 15 b = 1 / 20 c = a + b d = c * 3 e = 1 - d
a ) $ 20,000 , b ) $ 25,000 , c ) $ 35,000 , d ) $ 40,000 , e ) $ 45,000
c
multiply(divide(multiply(1.47, multiply(10, 7)), 420), const_100)
a certain company had a total annual expenditure of 1.47 ∗ 10 ^ 7 on employee salaries last year . if the company employed 420 people , what was the average employee salary ?
given : total annual expenditure of 1.47 ∗ 10 ^ 7 on employee salaries total employees = 420 observe that 420 * 3.5 = 1470 therefore try to bring the numerator in terms of 1470 average salary = ( 1470 * 10 ^ 4 ) / 420 = 3.5 * 10 ^ 4 = 35,000 option c
a = 10 * 7 b = 1 * 47 c = b / 420 d = c * 100
a ) 15 / 4 , b ) 18 / 7 , c ) 21 / 8 , d ) 24 / 11 , e ) 28 / 13
d
inverse(add(add(inverse(4), inverse(12)), inverse(8)))
machine a can finish a job in 4 hours , machine в can finish the job in 12 hours , and machine с can finish the job in 8 hours . how many hours will it take for a , b , and с together to finish the job ?
"the combined rate is 1 / 4 + 1 / 12 + 1 / 8 = 11 / 24 of the job per hour . the time to complete the job is 24 / 11 hours . the answer is d ."
a = 1/(4) b = 1/(12) c = a + b d = 1/(8) e = c + d f = 1/(e)
a ) 17 , b ) 16 , c ) 15 , d ) 14 , e ) 13
d
add(add(add(const_4, const_3), add(const_3, const_2)), 2)
the number 130 can be written as the sum of the squares of 2 different positive integers . what is the sum of these 2 integers ?
"11 ^ 2 + 3 ^ 2 = 130 - - > 11 + 3 = 14 . d"
a = 4 + 3 b = 3 + 2 c = a + b d = c + 2
a ) 0.01 , b ) 1 , 000,000 , c ) 0.001 , d ) 1,000 , e ) 1.0 e - 05
b
divide(1, 1)
if 10000 microns = 1 decimeter , and 1000000000 angstroms = 1 decimeter , how many angstroms equal 1 micron ?
given that 10,000 microns = 1 decimeter = 10,000 , 000,000 angstroms so , 1 micron = 10,000 , 000,000 / 10,000 = 1 , 000,000 answer : b
a = 1 / 1
a ) 4 minutes , b ) 32 / 7 minutes , c ) 192 / 7 minutes , d ) 3 minutes , e ) 28 minutes
d
inverse(add(divide(const_1, 24), add(divide(const_1, 24), divide(6, 24))))
pipe a can fill a tank in 24 minutes . pipe b can fill the same tank 6 times faster than pipe a . if both the pipes are connected to the tank so that they fill the tank simultaneously , how long will it take for the empty tank to overflow ?
"pipe a can fill a tank in 24 minutes - - > the rate of a = 1 / 24 tank / minute ; pipe b can fill the same tank 6 times fasterthan pipe a - - > the rate of b = 1 / 24 + 6 / 24 = 7 / 24 tank / minute . their combined rate = 1 / 24 + 7 / 24 = 1 / 3 tank / minute ; therefore , a and b can fill the tank in 3 minutes . answer : d"
a = 1 / 24 b = 1 / 24 c = 6 / 24 d = b + c e = a + d f = 1/(e)
a ) 28 , b ) 10 , c ) 30 , d ) 40 , e ) 5
a
subtract(multiply(24, const_2), multiply(10, const_2))
if the arithmetic mean of p and q is 10 and the arithmetic mean of q and r is 24 , what is the value of r - p ?
"arithmetic mean expression for p and q : ( p + q ) / 2 = 10 ; p + q = 20 - - - - eq 1 arithmetic mean expression for q and r : ( q + r ) / 2 = 20 ; q + r = 48 - - - - eq 2 subtracting eq 1 from eq 2 we get : r - p = 28 hence , the correct answer is a"
a = 24 * 2 b = 10 * 2 c = a - b
a ) 12 , b ) 42 , c ) 30 , d ) 36 , e ) none of these
b
sqrt(divide(108, add(power(5, const_2), add(power(6, 7), power(7, 7)))))
the ratio of three numbers is 6 : 7 : 5 and their sum is 108 . the second number of the three numbers is ?
"explanation : 6 : 7 : 5 total parts = 18 18 parts - - > 108 1 part - - - - > 6 the second number of the three numbers is = 7 7 parts - - - - > 42 answer : option b"
a = 5 ** 2 b = 6 ** 7 c = 7 ** 7 d = b + c e = a + d f = 108 / e g = math.sqrt(f)
a ) 110 , b ) 124 , c ) 96 , d ) 117 , e ) 127
d
divide(multiply(add(multiply(6, const_100), 24), add(multiply(4, const_100), 32)), multiply(gcd(add(multiply(6, const_100), 24), add(multiply(4, const_100), 32)), gcd(add(multiply(6, const_100), 24), add(multiply(4, const_100), 32))))
a room is 6 meters 24 centimeters in length and 4 meters 32 centimeters in width . find the least number of square tiles of equal size required to cover the entire floor of the room ?
"length = 6 m 24 cm = 624 cm width = 4 m 32 cm = 432 cm hcf of 624 and 432 = 48 number of square tiles required = ( 624 * 432 ) / ( 48 * 48 ) = 13 * 9 = 117 answer : d"
a = 6 * 100 b = a + 24 c = 4 * 100 d = c + 32 e = b * d f = 6 * 100 g = f + 24 h = 4 * 100 i = h + 32 j = math.gcd(g, i) k = 6 * 100 l = k + 24 m = 4 * 100 n = m + 32 o = math.gcd(l, n) p = j * o q = e / p
a ) 32.2 , b ) 32.98 , c ) 74.6 , d ) 32.8 , e ) 32.4
c
add(61, const_1)
the average of first five prime numbers greater than 61 is ?
"67 + 71 + 73 + 79 + 83 = 373 / 5 = 74.6 answer : c"
a = 61 + 1
a ) 200 km , b ) 222 km , c ) 224 km , d ) 248 km , e ) none of these
c
multiply(const_2, divide(multiply(multiply(21, 24), 10), add(21, 24)))
a man complete a journey in 10 hours . he travels first half of the journey at the rate of 21 km / hr and second half at the rate of 24 km / hr . find the total journey in km
"explanation : let time taken to travel the first half = x hr then time taken to travel the second half = ( 10 - x ) hr distance covered in the the first half = 21 x [ because , distance = time * speed ] distance covered in the the second half = 24 ( 10 - x ) distance covered in the the first half = distance covered in the the second half so , 21 x = 24 ( 10 - x ) = > 45 x = 240 = > x = 16 / 3 total distance = 2 * 21 ( 16 / 3 ) = 224 km [ multiplied by 2 as 21 x was distance of half way ] option c"
a = 21 * 24 b = a * 10 c = 21 + 24 d = b / c e = 2 * d
a ) 636 , b ) 631 , c ) 633 , d ) 610 , e ) 630
e
multiply(divide(14, const_2), multiply(9, 10))
calculate how many seconds it will take for 4 bells to toll together again , given that they begin to toll together respectively at the intervals of 9 , 10 , 14 and 18 seconds . ?
lcm of 9 , 10 , 14 and 18 is 630 lcm = 630 answer : e
a = 14 / 2 b = 9 * 10 c = a * b
a ) 7.6 , b ) 7.3 , c ) 7.2 , d ) 7.5 , e ) 8.0
d
subtract(divide(power(8, const_2), const_2), divide(power(7, const_2), const_2))
the size of a flat - screen tablet is given as the length of the screen ’ s diagonal . how many square inches greater is the screen of a square 8 - inch flat - screen tablet than a square 7 - inch flat - screen tablet ?
"if we take a square with side length x and draw a diagonal , we get two isosceles right triangles . if we focus on one such right triangle , we see that the legs have length x . square 8 - inch flat - screen television the diagonal ( hypotenuse ) = 8 so , we can apply the pythagorean theorem to get x ² + x ² = 8 ² simplify : 2 x ² = 8 ² divide both sides by 2 to get : x ² = 8 ² / 2 since the area of the square = x ² , we can see that the area of this square is 8 ² / 2 square 7 - inch flat - screen television the diagonal ( hypotenuse ) = 7 so , we can apply the pythagorean theorem to get x ² + x ² = 7 ² simplify : 2 x ² = 7 ² divide both sides by 2 to get : x ² = 7 ² / 2 since the area of the square = x ² , we can see that the area of this square is 7 ² / 2 difference in areas = 8 ² / 2 - 7 ² / 2 = ( 8 ² - 7 ² ) / 2 = ( 64 - 49 ) / 2 = 15 / 2 = 7.5 d"
a = 8 ** 2 b = a / 2 c = 7 ** 2 d = c / 2 e = b - d