If we grow a classification tree with $n$ samples and a $p$-dimensional predictor variable, what is the minimal depth of a decision tree if it grows to full size?
There is an answer saying that
The maximal number of observations at each depth $d$ of the tree falls like $n/2^{d-1}$, so the minimal depth is $\lceil\log_2n+1\rceil$.
I don't understand. Are this suggesting at each depth we classify roughly half the observations, and the to next level with the other half?