From the Maxima manual entry for the function solve
"Solves the algebraic equation $\text{expr}$ for the variable $x$ and returns a list of solution equations in $x$... $\text{expr}$ may be a rational expression, and may contain trigonometric functions, exponentials, etc."
Given the "etc", the manual is not very clear about which expressions solve works well on. But from experimentation, solve does not handle unsimplified expressions involving fractional exponents or logarithms very well.
For example Maxima returns an implicit solution (the equation itself) when attempting to use solve (with out any prior simplification) on any equation of the form
$$(x+1)^{n}=(2x)^{n},\quad \text{ where $n\in(0,1)$}$$
or
$$\quad \ln(2x)=\ln(1+x).$$
If instead we help Maxima by simplifying first to get $x+1=2x$, then solve has no trouble returning the explicit solution.