Archit3110
my query is while choosing a three digit no where 2 of the digits are identical so in that case shouldnt the combination be 10*1*9* 3 ; for eg ; 122, 212,221 we can get three different nos.
the question though has stated that "the numbers should be in a non-increasing order"
eg ; 571 , 481 etc. how to identify such no? is the approach of 10*1*9 ; 90 correct ?
I see -- the wording of the question is ambiguous. In my solution, when they say "non-increasing order", I've interpreted that to mean "the digits never increase". So in my solution, 841 is in non-increasing order, but 481 is not -- the digits increase from 4 to 8, then decrease from 8 to 1.
I think you're interpreting "non-increasing order" to mean "not in strictly increasing order". Under your interpretation, 481 is "non-increasing", and so is 841, but 148 is not. If you interpret the question in that way, the answer will be much larger.
The wording of the question simply isn't clear, so both of our interpretations make logical sense - there's no way to tell even what the question is asking us for, so no way to say what the "right" answer is. But under my interpretation, once you choose a pair of digits and a third different digit, which you can do in 90 ways, there is then only one never-increasing order you can put the digits in. If you choose 2, 2, and 1, the only number you can make with never-increasing digits is 221.