edited by
769 views
0 0 votes
How many strings of three decimal digits can be formed such that they have exactly two digits that are 4's.

My approach as to select 2 positions for these 4's in $\binom{3}{2}$ ways and the last bit will have 10 choices.Now I can permute the string formed in $\frac{3!}{2!}=3$ ways.

So total such strings should be $\binom{3}{2}$ * 10*$\frac{3!}{2!}$ = 90.

But the answer is 27.

How?

1 Answer

Best answer
3 3 votes

1. 

they have exactly two digits that are 4's.

So choices for remaining digits will be 9 only. (Exclude 4).

2. You are selecting 2 places for 4's so remaining one place will automatically contain the last digit. Now why are you permuting them again?

Solution - $9*1*1* \frac{3!}{2!}=27$

selected by
Position:
Show:

Related questions

2 2 votes
1 answers 1 answer
634
634 views
anumita asked May 17, 2017
634 views
How many strings of 5 ASCII characters contain the character @ atleast once ? [ NOTE : there are 128 ascii characters ] Answer is : 1,321,368,961Can anyone explain how ?
2 2 votes
1 answers 1 answer
788
788 views
anumita asked May 17, 2017
788 views
How many partial functions are there from a set with m elements to a set with n elements, where m and n are positive integers.Answer : (n+1)^mHow . Can anyone please help...
2 2 votes
1 answers 1 answer
1.3k
1.3k views
anumita asked May 17, 2017
1,300 views
A palindrome is a string whose reversal is identical to the string. how many bit strings of length n are palindromes ?
2 2 votes
1 1 answer
3.3k
3.3k views
Rounak Agarwal asked Dec 19, 2016
3,255 views
Question: Six different airlines fly from New York to Denver and seven fly from Denver to San Francisco. How many different pairs of airlines can you choose on which to b...