suppose n=13.
How do we determine the set of balanced partitions?
What determines the depth?
set of balanced partitions:
- find k such that 2^{k-1} < n \leq 2^{k}. Hence \lceil \log_2 n\rceil=k.
- let r=2^k-n.
- P=\{ (a,b) : a\in[2^{k-1}-r,2^{k-1}] \text{ and } b=n-a\}
depth: indeed the depth is k.