Number of possible combinations

  • Thread starter Thread starter kidkook
  • Start date Start date
  • Tags Tags
    Combinations
AI Thread Summary
The discussion focuses on calculating the number of combinations from a set of 16 items without repetition. The user initially used the binomial coefficient formula multiple times to find combinations for each value of r from 1 to 16, resulting in a total of 65535 combinations. It is clarified that the total number of non-empty subsets can be calculated using the formula 2^n - 1, where n is the number of items, leading to the same result. The conversation emphasizes the efficiency of this method over repeating calculations for each combination. This approach is particularly useful as the dataset grows larger in the future.
kidkook
Messages
3
Reaction score
0
I have 16 items and i need to know the number of possible combination for all 16 items. I know the possible number of combination for all 16 items is 1 and the possible number of combinations for 15 of the 16 items is 16 using the formula below:

\frac{n!}{r!(n-r)!}.

How can i adaprt this formula to calculate for the number of selection from 1 to 16 inclusive without repeating the calculation 16 times.

So n will always be 16 and r will be 1 to 16 inclusive.
 
Mathematics news on Phys.org
Your wording is a little confusing. Is this the correct interpretation:
You want to know the total number of ways to select at least one item from the 16.

If it is, think about this: you should know the total number of subsets (empty, proper, with the original set) for a set with 16 items. Your question involves finding not the total number but how many there are not counting the empty set.
 
Sorry for the confusion. What i have is a dataset with 16 different values. What I'm trying to achieve is to determine how many combination are available without repetition/duplication of a value. So i know the answer is 65536. I achieved this by using the above formula 16 times and substituting the value of r from 1 to 16 etc...and adding the number together.

Number of combinations Value of r
16 1
120 2
560 3
1820 4
4368 5
8008 6
11440 7
12870 8
11440 9
8008 10
4368 11
1820 12
560 13
120 14
16 15
1 16
65535

What i would like to know is...can the formula be adapted to so i don't need to repeat the calculation 16 times. My dataset is likely to increase significantly in the future so it will not be practical to use this method.
 
Note that ##\frac{n!}{r!(n-r)!}## is called the binomial coefficient and is often denoted
$${n \choose r} = \frac{n!}{r!(n-r)!}$$
The reason it is called the binomial coefficient is the following property:
$$(x+y)^n = \sum_{r=0}^{n}{n \choose r}x^r y ^{n-r}$$
If we plug in ##x=y=1## then this reduces to
$$2^n = \sum_{r=0}^{n}{n \choose r} = 1 + \sum_{r=1}^{n} {n \choose r}$$
where the second equality follows because ##{n \choose 0} = 1##. Therefore,
$$\sum_{r=1}^{n} {n \choose r} = 2^n - 1$$
which is consistent with your calculation since ##2^{16} - 1 = 65535##.
 
Excellent. This is exactly what i was looking for. A very well documented explanation. Many thanks.
 
Thread 'Video on imaginary numbers and some queries'
Hi, I was watching the following video. I found some points confusing. Could you please help me to understand the gaps? Thanks, in advance! Question 1: Around 4:22, the video says the following. So for those mathematicians, negative numbers didn't exist. You could subtract, that is find the difference between two positive quantities, but you couldn't have a negative answer or negative coefficients. Mathematicians were so averse to negative numbers that there was no single quadratic...
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Thread 'Unit Circle Double Angle Derivations'
Here I made a terrible mistake of assuming this to be an equilateral triangle and set 2sinx=1 => x=pi/6. Although this did derive the double angle formulas it also led into a terrible mess trying to find all the combinations of sides. I must have been tired and just assumed 6x=180 and 2sinx=1. By that time, I was so mindset that I nearly scolded a person for even saying 90-x. I wonder if this is a case of biased observation that seeks to dis credit me like Jesus of Nazareth since in reality...

Similar threads

Back
Top