In "Introduction to Algorithms" by CLRS, section 11.4 states:
$n < m$ implies that $\frac{n - j}{m - j} \leq \frac{n}{m}$ for all $j$ such that $0 \leq j \lt m$
This section of the text assumes $n,m,j$ are all non-negative integers, and that $n \lt m$.
I'm struggling to derive a proof of this statement.
Intuitively I can understand that $m-j$ in the denominator increases the size of a fractional part: $\frac{1}{m-j} \gt \frac{1}{m}$, and by removing $j$ of these "larger" portions I will have $\frac{n - j}{m - j} \leq \frac{n}{m}$.
But I'm having trouble deriving an equality to prove this intuition. Any help?
We need to prove that $$mn-jm\leq mn-nj$$ or $$j(n-m)\leq0,$$ which is true.