recategorized by
565 views
1 votes
1 votes

How many numbers in the range ${0, 1, \dots , 1365}$ have exactly four $1$’s in their binary representation? (Hint: $1365_{10}$ is $10101010101_{2}$, that is, $$1365=2^{10} + 2^{8}+2^{6}+2^{4}+2^{2}+2^{0}.)$$

In the following, the binomial coefficient $\binom{n}{k}$ counts the number of $k$-element subsets of an $n$-element set.

  1. $\binom{6}{4}$
  1. $\binom{10}{4}$
  1. $\binom{10}{4}+\binom{8}{3}+\binom{6}{2}+\binom{5}{1}$
  1. $\binom{11}{4}+\binom{9}{3}+\binom{7}{2}+\binom{5}{1}$
  1. $1024$
recategorized by

1 Answer

4 votes
4 votes
$1365 = (10101010101)_2$

$(\text{total number of bits =} 11)$

Now if I keep $MSB = 0$, then from the remaining $10$ bits, I can select any $4$ bits ans set them as $1$. So total cases become $\binom{10}{4}$.

Now keep the $MSB = 1$, now we cannot replace $0$ on the second last bit from LHS with 1 as it will increase the number. This will apply to every $0$ as we move forward. So, now we have $10$ on the LHS and the third bit from LHS, we set to $0$, now we have $8$ bits remaning from which we have to select $3$ bits (Why $3$? as we are keeping MSB as $1$ and in total we only need $4$ bits to be set to $1$). Total cases will become $\binom{8}{3}$.

Similarly, we will move forward and will get $\binom{6}{2}$ and $\binom{4}{1}$.

So, the answer should be $\binom{10}{4} + \binom{8}{3} + \binom{6}{2} + \binom{4}{1}$

I think there is a typo in the $(C)$ option. They have the last term as $\binom{5}{1}$ instead of $\binom{4}{1}$.
edited by
Answer:

Related questions

1 votes
1 votes
1 answer
4
soujanyareddy13 asked Mar 25, 2021
624 views
What is the area of a rectangle with the largest perimeter that can be inscribed in the unit circle (i.e., all the vertices of the rectangle are on the circle with radius...