Skip to main content

Aptitude Day 125

Problems on Permutations and Combinations:

1. A box contains 4 white balls, 2 black balls and 5 red balls. In how many ways can 2 balls be drawn from the box if at least one white ball is to be included in the draw?

Solution:
             = One white ball and one black or red ball + Two white balls
             =  ( 4C1 * 7C1) + ( 4C2)
             = 4*7 + (4*3/1*2)
             =  28 + 6
             = 34.

2. How many 4-digit numbers can be formed from the digits 1, 3, 5, 7 and 9, which are divisible by 5 and none of the digits is repeated?

Solution:
              The unit place must be 5 since the numbers should be divisible by 5.
              Here the possibility is 1.

              The tens place should be any of the remaining 4 numbers.
              Here the possibility is 4.

             The hundreds place should be any of the remaining 3 numbers.
             Here the possibility is 3.

             The thousands place should be any of the remaining 2 numbers.
             Here the possibility is 2.

             The required number of ways = 1*4*3*2 = 24.
           


Comments

Popular posts from this blog

Aptitude Day 59

Answers of Day 58:     1. 1/90.     2. 20 Problems to solve: 1. The product of two numbers is 33 and the sum of their squares is 130. Find their difference. 2. The sum of two numbers is 100 and their difference is 20. Find their product.

Aptitude Day 47

Problem On Numbers 1. Three numbers are in the ratio 1:2:3 and their average is 180. What's the largest number? Solution:                 Let the numbers be x, 2x and 3x.                 x+2x+3x = 180                          6x = 180                            x = 30                The largest number is 3x = 90. Problem to solve: Three numbers are in the ratio of 4:2:3 and their product is 648. Find the smallest number.