Skip to main content

Aptitude Day 124

Problems on Permutations and Combinations:

1. From a group of 4 men and 2 women, 3 persons are to be selected to form a committee so that at least 2 men are there on the committee. In how many ways can it be done?

Solution:
               =  4C2 *  2C1 + 4C3
               =  4C2 *  2C1 + 4C1
               =  (4*3)/(1*2) * 2 +
               = 12 +4
               = 16.

2. From a group of 6 boys and 3 girls, 5 children are to be selected. In how many different ways can they be selected such that at least 3 boys should be there?

Solution:
               = ( 6C3 * 3C2) + ( 6C4 *  3C1 ) +( 6C5 )
               = [(6*5*4)/(1*2*3) * 3C1] +[ 6C2 * 3 ] + 6C1
               = [20*3] +[(6*5/1*2)*3] +6
               = 60+45+6
               = 111.

Comments

Popular posts from this blog

Vocabulary Day 21

Stammer Thesaurus: Verb : stutter in speech, speak haltingly, speech defect           halt, hesitate, pause, stop, sputter... Antonyms : say quickly, pronounce, enunciate... Example sentences: ·          He was stammering when the teacher caught him red-handed. ·          One should avoid the stammering while delivering a speech. 

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.