Does anybody knows how to prove this? [solved]
Difference between en2 and en3, changed 58 character(s)
Hello Codeforces Community!↵

I have been solving some interesting bitmasks problems. In some problems, we have to generate all possible subsets from a set. Obviously, if our set is a bitmask with all its bits on, we can iterate from 0 to $2^n - 1$↵

However, if we need to generate all the subsets from another subset (subset-ception), we can do it with the following procedure:↵

`for(subset = set; subset > 0; subset = (subset - 1)&set)`↵

(The code above ignores the empty subset)↵

Generate all the subsets from all possible subsets has $O(3^n)$ complexity. Now, I can intuitively confirm this, because we can represent our subsets as a string with 3 possible values: while 1 and 0 at position $i$ means that the object $i$ is in our subset or not respectively, 2 means that the object $i$ is not present in the set at all.↵

However, mathematically:↵

$\sum_{i=0}^{n}{\binom{n}{i}\dot2^{i}} = 3^{n}$↵

Amazing! I cannot find a way to prove this though. Do you know how to prove this interesting property? 


Update: Solved, thanks! It was very simple :(

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en3 English snacache 2017-06-30 19:17:26 58 Tiny change: 'property? ' -> 'property? \n\nUpdate: Solved, thanks! It was very simple :('
en2 English snacache 2017-06-30 19:01:15 12
en1 English snacache 2017-06-30 19:00:02 1056 Initial revision (published)