Given the following definition of binary search tree:
$$\text{size}(t)=\cases{0\qquad\qquad\qquad\qquad\qquad\qquad t=\text{ null}\\ 1+\text{size(t.left)+size(t.right)}\qquad\text{otherwise}}$$
for each vertex in the tree t.size contain the size of it's subtree
Prove that if $\quad\max\{\text{size(t.left),size(t.right)\}}\leqslant 2/3\text{ size(t)}\}$
than the height of T is $O(\log n)$ if it is given that $n=\text{size(T)}$
Attempt:
I discovered that the size of a vertex is the number of vertices that there are in the specific root:
e.g:
V_1
/ \
V_2 V_3
/ / \
V_4 V_5 V_6
The size of $V_4,V_5,V_6$ is: $1+0=1$
The size of $V_2$ is: $1+1=2$
The size of $V_3$ is: $1+1+1=3$
The size of $V_1$ is: $1+3+2=6$
But how can I prove about T's height