⎩ ⎪ ⎪ ⎪ ⎪ ⎪ ⎪ ⎪ ⎪ ⎨ ⎪ ⎪ ⎪ ⎪ ⎪ ⎪ ⎪ ⎪ ⎧ A > 0 B > A C > B + 1 D > C + 2 E > D + 3 E < 3 0
How many different ways can you pick integers A , B , C , D and E that satisfy the system of inequalities above?
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.
Define the following functions:
Then,
Solving for these you get:
E ( 2 9 ) = 3 3 6 4 9
We could also summarize the set of inequalities as
0 < A < B < C − 1 < D − 3 < E − 6 < 2 4 .
Now let C ′ = C − 1 , D ′ = D − 3 and E ′ = E − 6 , giving us
0 < A < B < C ′ < D ′ < E ′ < 2 4 .
The number of solutions to this inequality is the same as the number of ways of choosing 5 distinct elements from the set { 1 , 2 , 3 , . . . , 2 3 } , (which can then be placed in ascending order in only one way), giving us an answer of ( 5 2 3 ) = 3 3 6 4 9 .
Log in to reply
Ah, once again... Great perspective on the problem, @Brian Charlesworth !
Beautifully explained!
Problem Loading...
Note Loading...
Set Loading...
Relevant wiki: Combinations - Problem Solving
The 5 distinct numbers can range from 1 to 29. Let's first not worry about the order of these numbers, because we could sort them later. Now, between B and C there is one "free spot" that will be "lost" (cannot be occupied by any number), so there are only 28 spots to fill. Similarily we will lose 2 and 3 spots between C and D, and D and E respectively. So there are only 23 spots to fill with 5 numbers which can be expressed as ( 5 2 3 ) = 3 3 6 4 9 .
Edit: Realized too late this approach is very similar to the one of @Brian Charlesworth. Sorry, no intention to take your credit.