That can happen if solve() decides that it is a kind of problem that it does not know how to answer.
Generally speaking, you should solve for equalities rather than inequalities.
One trick is to convert something of the form
syms A B
solve(A < B)
into the form
syms A B
syms delta positive
A = B - delta