182k views
2 votes
Find how many six-digit numbers can be formed from the digits 2, 3, 4, 5, 6 and 7 (with repetitions), if:

the numbers formed must be divisible by 25

or

the odd digits must occupy even positions (i.e. 2nd, 4th, and 6th) and the even digits must occupy odd positions (i.e. 1st, 3rd and 5th)

User Designer
by
4.6k points

1 Answer

4 votes

Answer:

case 1 = 2592

case 2 = 729

case 1 + case 2 = 2916

(this is not a direct adition, because case 1 and case 2 have some shared elements)

Explanation:

Case 1)

6 digits numbers that can be divided by 25.

For the first four positions, we can use any of the 6 given numbers.

For the last two positions, we have that the only numbers that can be divided by 25 are numbers that end in 25, 50, 75 or 100.

The only two that we can create with the numbers given are 25 and 75.

So for the fifth position we have 2 options, 2 or 7,

and for the last position we have only one option, 5.

Then the total number of combinations is:

C = 6*6*6*6*2*1 = 2592

case 2)

The even numbers are 2,4 and 6

the odd numbers are 3, 5 and 7.

For the even positions we can only use odd numbers, we have 3 even positions and 3 odd numbers, so the combinations are:

3*3*3

For the odd positions we can only use even numbers, we have 3 even numbers, so the number of combinations is:

3*3*3

we can put those two togheter and get that the total number of combinations is:

C = 3*3*3*3*3*3 = 3^6 = 729

If we want to calculate the combinations togheter, we need to discard the cases where we use 2 in the fourth position and 5 in the sixt position (because those numbers are already counted in case 1) so we have 2 numbers for the fifth position and 2 numbers for the sixt position

Then the number of combinations is

C = 3*3*3*3*2*2 = 324

Case 1 + case 2 = 324 + 2592 = 2916

User Duncan WP
by
5.0k points