anuu
How many even numbers of three digits can be formed with digits 0,1,2,3,4,5 and 6?
Let the 3 digit number be of the form;
XYE
Possible digits for E: 0,2,4,6 i.e. Count=4
Possible digits for Y: 0,1,2,3,4,5,6 i.e. Count=7
Possible digits for X: 1,2,3,4,5,6 i.e. Count=6 [0 is not possible as first digit]
Total Possibilities = 4*7*6 = 168.
In the question, it is not mentioned that the digit can't be repeated.
Thus,
1,1,2
2,2,2
are all possible combinations.
*******************************************
If we were told that the digits can't be repeated;
Then,
Possible digits for E: 0,2,4,6
Let's consider two cases; Unit digits as 0 and Unit digit as non-zero
CaseI:
E can be 0
X can be {1,2,3,4,5,6} Count = 6
Y can be any 5 out of {1,2,3,4,5,6}. Count= 5
Total =6*5 = 30
CaseII:
E can be 2,4,6. Count=3
X can be any 5 of {1,2,3,4,5,6} Count = 5
Y can be any 5 out of {0,1,2,3,4,5,6}. Count= 5
Total = 5*5*3=75
Thus; Total possibilities = 30+75= 105