The goal is to find the maximum number of distinct combinations of weights (1 kg, 2 kg, 5 kg, 10 kg) that sum up to exactly 20 kg. A key constraint is that the number of 1 kg weights used must be between 8 and 11 (inclusive).
Let $n_1, n_2, n_5, n_{10}$ represent the number of 1 kg, 2 kg, 5 kg, and 10 kg weights used, respectively. The total weight equation is:
$1 \cdot n_1 + 2 \cdot n_2 + 5 \cdot n_5 + 10 \cdot n_{10} = 20$
The constraint on the 1 kg weights is $8 \le n_1 \le 11$. We examine each possible value for $n_1$.
The remaining weight needed is $20 \text{ kg} - 8 \times 1 \text{ kg} = 12 \text{ kg}$.
We need to find combinations for $2n_2 + 5n_5 + 10n_{10} = 12$.
Total ways for $n_1=8$: 3
The remaining weight needed is $20 \text{ kg} - 9 \times 1 \text{ kg} = 11 \text{ kg}$.
We need combinations for $2n_2 + 5n_5 + 10n_{10} = 11$.
Total ways for $n_1=9$: 1
The remaining weight needed is $20 \text{ kg} - 10 \times 1 \text{ kg} = 10 \text{ kg}$.
We need combinations for $2n_2 + 5n_5 + 10n_{10} = 10$.
Total ways for $n_1=10$: 3
The remaining weight needed is $20 \text{ kg} - 11 \times 1 \text{ kg} = 9 \text{ kg}$.
We need combinations for $2n_2 + 5n_5 + 10n_{10} = 9$.
Total ways for $n_1=11$: 1
Summing the ways from each case:
Total Ways = (Ways for $n_1=8$) + (Ways for $n_1=9$) + (Ways for $n_1=10$) + (Ways for $n_1=11$)
Total Ways = $3 + 1 + 3 + 1 = 8$
Therefore, the maximum number of different ways to measure 20 kg under the given conditions is 8.
On a chess board, in how many different ways can 6 consecutive squares be chosen on the diagonals along a straight path ?
There are 6 persons arranged in a row. Another person has to shake hands with 3 of them so that he should not shake hands with two consecutive persons. In how many distinct possible combinations can the handshakes take place ?
In a tournament of Chess having 150 entrants, a player is eliminated whenever he loses a match. It is given that no match results in a tie/draw. How many matches are played in the entire tournament?
The letters A, B, C, D and E are arranged in such a way that there are exactly two letters between A and E. How many such arrangements are possible?
There is a numeric lock which has a 3-digit PIN. The PIN contains digits 1 to 7. There is no repetition of digits. The digits in the PIN from left to right are in decreasing order. Any two digits in the PIN differ by at least 2. How many maximum attempts does one need to find out the PIN with certainty?