In how many ways can I combine x elements

86 Views Asked by At

In how many ways can I combine x elements and why?
Example: If I have 6 elements, indicating each element with a number, some possible cases could be: $1,2,3/\,1,4,3/\, 1,2,5,6/\, ...$

1

There are 1 best solutions below

2
On BEST ANSWER

You are looking for,

$xC_0+xC_1+\dots+xC_x=2^x$