I have this rather complicated expression, namely the following.
h[p_, k_] := -(((-1 + k) p Log[(-1 + k) p])/Log[2]) + ((-(1/k) + 1/2 (-1 + k) p) Log[1/k - 1/2 (-1 + k) p])/Log[2] + ((-1 + k) (-2 + k p) Log[-(((-1 + k) (-2 + k p))/(2 k))])/(2 k Log[2]) And I am then interested in
sol[k_] := 2^h[4/(k (k + Sqrt[-12 + k (12 + k)])), k] for different $k \in \mathbb{Z}_{\geq 2}$. For $k=2$ the expression is rather simple and it correctly yields $3$. If I look at $k=3$ via
FullSimplify[sol[3]] it yields the following expression: $$2^{\frac{1}{9} \left(21-4 \sqrt{33}\right)} 3^{\frac{1}{9} \left(21-\sqrt{33}\right)} \left(9-\sqrt{33}\right)^{\frac{1}{18} \left(\sqrt{33}-9\right)} \left(15-\sqrt{33}\right)^{\frac{1}{18} \left(\sqrt{33}-15\right)} \left(3+\sqrt{33}\right)^{\frac{1}{9} \left(\sqrt{33}-3\right)}.$$
I suspect, backed up by numerical evidence, that this expression is equal to $$\frac{3}{8}\left(207+33\sqrt{33}\right)^\frac{1}{3}.$$ Is there a way to make Mathematica simplify the expression further? One of the things that is disappointing about this lack of simplification is that the big expression is not recognized as an algebraic number, while
RootReduce[(3/8) (207 + 33*Sqrt[33])^(1/3)] does work.