How many 5 digit numbers can be formed if
either
(a) every successive digit exceeds its predecessor,
or
(b) every successive digit is smaller than its predecessor.
Detail: Leading 0's don't count, aka 04521 is not a 5-digit number.
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.
a = 5 ! 9 ⋅ 8 ⋅ 7 ⋅ 6 ⋅ 5 We are picking 5 numbers out of 9, only 5 ! 1 fulfill the requirement .
b = 5 ! 1 0 ⋅ 9 ⋅ 8 ⋅ 7 ⋅ 6 We are picking 5 numbers out of 10, only 5 ! 1 fulfill the requirement .
a + b = 5 ! 1 5 ⋅ 9 ⋅ 8 ⋅ 7 ⋅ 6 = 3 7 8
Ina part (a) if I select 9 as my first number then i wont be able to put any numbers afterwards since there is no number available as such.. then how come do we have 9 options for it????
Problem Loading...
Note Loading...
Set Loading...
Bk Lim's solution is perfect. I'm including mine because it's only slightly differently stated.
In both (a) and (b), you have to select 5 distinct numbers out of 10 possibilities and put them into the only allowed order. This is just ( 1 0 5 ) = 2 5 2 .
In case (a) only, you have to ignore the selections for which the left-most digit is zero, since this is actually a 4-digit number. This is equivalent to subtracting ( 9 4 ) = 1 2 6 .
Therefore:
a = ( 1 0 5 ) − ( 9 4 ) = 2 5 2 − 1 2 6 = 1 2 6
and:
b = ( 1 0 5 ) = 2 5 2
Add these together:
a + b = 2 5 2 + 1 2 6 = 3 7 8