Use numbers 0 , 1 , 2 , 3 , 4 , 5 to create non-repeating four-digit numbers. If we call the number with every digit smaller than the one on its left " descending number ", what is the probability for the four-digit number to be a "descending 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.
Hi, I think there has been a mistake. All the arrangements should be ( 4 6 ) × 4 ! . Also, you may think about the problem like this: with equal probability, we can choose 4 out of the 6 numbers and, regardless of the numbers, there would be only one descending order for the chosen 4 . so, the answer 4 ! 1
Log in to reply
That's a neat thought, it is just that you forgot that a number cannot start with 0 in the first place. Taking that into account would get us 1/20. (Btw, my previous solution does have some problems, it has been updated.
Log in to reply
Oh, I did not take that into account
I got the same answer as kevin, 300 numbers, 15 of which are descending
my only complaint is the fractions arent showing up properly in the answer, maybe a staffer can fix those
Log in to reply
Could you please include the code, you have written, as a solution? Your codes provide insights into the problems
Log in to reply
https://kyletripp.com/code-samples/how-likely-are-we-going-to-get-descending-numbers/
Problem Loading...
Note Loading...
Set Loading...
First we put six number in order like this: 5 4 3 2 1 0 We can see that it is a six-digit "descending number". All we need to do now is to take out two digits to make the number four-digit Descending numbers: C 6 2 = 1 5 All arrangements A 5 1 ⋅ A 5 3 = 3 0 0 [Number cannot starts with zero, so there are five choice for the first number, then pick 3 out of the rest 5] 3 0 0 1 5 = 2 0 1