I have the following inequality:
$\frac{(n-a)!}{(n-b)!} < \frac{(m-a)!}{(m-b)!}$,
where $n<m$ and $a,b,n,m\in \mathbb{N}$. I now need to derive sufficient conditions among $a$ and $b$ such that the inequality holds. (e.g. $a<b$). Can I do this with Mathematica and if so, how?
Perhaps in a while someone will remember a function which will give you the answer. But while we wait for them lets look at the answer.
which will throw a bunch of errors about dividing by zero for the cases that don't satisfy your inequality and show you only the results where your inequality is true, which gives you
Now we stare at that and look for relations between a,b,m,n that seem to yield True. In those results I see
which gives exactly the same result as
zz.Thus
a < b && b <= m && a <= nappears to be your necessary and sufficient conditions.You can try removing any one of those relations and see that it fails. You can try substituting other relations and see if you can find anything simpler.
Test this carefully to make certain that I haven't made any mistakes.
And yes, people will be able to find a way to remove perhaps as many as a dozen characters from the code I've written, there are always a dozen different ways of writing anything in Mathematica. Pick one that you can remember and not make mistakes using.