From the digits 2,3,4,5,6,7 and 9, how many numbers of four different digits each can be formed, if each number involves two odd and two even digits?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
This is my solution. I will select a group of 2 odd digits from the 4 odd digits given. Then I will select a group of 2 even digits from the 3 even digits given. Then I will form a permutation of the 4 digits selected. This will give a total of (4C2)(3C2)(4!) = 432
From 2 , 3 , 4 , 5 , 6 , 7 , 9 , there are 4 odd and 3 even. The number of ways of choosing 2 odd numbers from 4 odd numbers is 4 C 2 = 6 and the number of ways of choosing 2 even numbers form 4 even numbers is 3 C 2 = 3 . The number of ways of arranging these 4 numbers is 4 ! = 2 4 . Therefore, we have 6 ( 3 ) ( 2 4 ) = 4 3 2 different 4 digit numbers.
Problem Loading...
Note Loading...
Set Loading...
There are 4C2 ways to arrange two odd and two even digits. For each of those ways, there are 3P2 ways to place the evens and 4P2 ways to place the odds.
This gives a total of (4C2)(3P2)(4P2)=6*6*12=432.