How many 5-digit numbers greater than 23000 that can be formed from digits 1,2,3,5,6 without repeating any digit?
for example, 23156 is a number greater than 23000.
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.
The total number of such numbers is 5!=120 as there are 5 options for the first digit, 4 for the second..... ...1 for the last = 5x4x3x2x1 = 5! = 120 (For those unfamiliar with factorial notation, it is probably best that you check that out as I will be using that quite a lot - simply put n!= n x (n-1) x ... ...3 x 2 x 1.
From this we must subtract the numbers that start with a 1. 1 is fixed so permuting the other 4 digits we get 4! = 24
We must also subtract the numbers that start with 21. 2 and 1 are fixed so again permuting the other digits we have 3!=6
So the total of such numbers is 120 - 24 -6 = 90.