Constraints:
must be a 5 Digit Numbers
10,000s digit must be EVEN
1,000s digit must be EVEN
Last 3 Digits must be ODD
and
4 can only be used ONE TIME as a Digit in any given number
(Step 1) Break the possible numbers into completely exhaustive cases that cover every possibility
For every possible number, it must fall under 1 of 3 characterizations:
Case 1: 4 is the Digit in the 10,000s Place
OR
Case 2: 4 is the Digit in the 1,000s Place
OR
Case 3: 4 is NOT used in EITHER of the two above Places
Case 1:
10,000s Place: Fix the Digit 4 in this place for every possible arrangement of Digits ----- 1 option
1,000s Place: Must be an EVEN Digit, but we can not repeat 4 ------ 0 or 2 or 6 or 8 ------ 4 Options
100s Place:
10s Place:
Units Place:
Since Repeatition of the digits is allowed and since the last 3 digits have to include an ODD Digit, we have 5 Available options for each Place ------ 1 or 3 or 5 or 7 or 9
Case 1 Count of Arrangements:
(1) * (4) * (5)^3
Case 2:
10,000s Place: since we are fixing 4 in the next Place and the Numbers must be 5 Digit Numbers, we can NOT use the Even Digits of 0 and 4 -------- 2 or 6 or 8 ----- 3 Available Options
1,000s Place: Fix the Digit 4 in this place ------ 1 Options
Last 3 Places: Each Place has 5 available options ---- the Odd Digits ---- 5 options
Case 2 Count of Arrangements: (3) * (1) * (5)^3
Case 3: neither the 10,000s Place nor the 1,000s Place has a Digit 4
10,000s Place: can NOT have the Even Digits 4 and 0 ------ 2 or 6 or 8 ----- 3 available options
1,000s Place: can NOT have the Even Digit 4 for this scenario ---- 0 or 2 or 6 or 8 ---- 4 available options
Last 3 Digits: Each place can again have any one of 5 ODD Digits ---- 5 options for each space
(3) * (4) * (5)^3 = (12) * (5)^3
Sum up the 3 Cases:
(4) * (5)^3 + (3) * (5)^3 + (12) * (5)^3 =
(5)^3 * [4 + 3 + 12] =
(5)^3 * 19 = (125 * 20) - (125 * 1) = 2,500 - 125 =
2,375 (C)