Considering we have a function:
$$
f_{n, m} : \mathbb{N ^ 2} \rightarrow [0, 1]\\
\{n, m\} \in \mathbb{N ^ 2}\\
f_{n, m}(x, t) = {m \choose x} \cdot \prod_{j=0}^{x-1} \dfrac{t-j}{n-j}
$$
We want to find find out which of the two terms($x$ and $t$) affect the value of $f$ more.
I believe we can figure this out if we compute $O(f)$, though I might be wrong.
My guess is that $t$ affects the function value more than $x$ does.
How can I be sure? Should I compute $O(f)$? If yes, how? Which other ways are there?