ankitbagla wrote:as per my understanding
if N is div by 4 then N can be 4,8,12, and so on . But we don't have to look for N>5 because in that case last digit will be 0. but when N=4 then last digit is 5. how can this alone be sufficient?
Please correct me if i am wrong in my approach.
Let's take theCodeToGMAT's great solution and examine a few more terms.
1! = 1
1! + 2! = 1 + 2 = 3
1! + 2! +3! = 1 + 2 + 6 = 9
1! + 2! +3! + 4! = 1 + 2 + 6 + 24 = 33
1! + 2! +3! + 4! +
5! = 1 + 2 + 6 + 24 +
120 = 153
1! + 2! +3! + 4! +
5! +
6! = 1 + 2 + 6 + 24 +
120 +
720= 873
1! + 2! +3! + 4! +
5! +
6! +
7! = 1 + 2 + 6 + 24 +
120 +
720 +
5040 = 5913
.
.
.
As you can see, once we get to adding 5!, EVERY sum will have 3 as its units digit.
So, if N
> 4, the sum will have 3 as its units digit.
Statement 1 ensures that N
> 4
Statement 2 ensures that N is either 2 or an integer greater than 4. In both of these cases, the units digit is guaranteed to be 3.
Cheers,
Brent