If you're looking for how many 4 digit numbers are increasing or decreasing between 1000 and 9999, the answer has been provided here: How many of the 9000 four digit integers have four digits that are increasing?
If you (or since this was posted 3 years ago, if a discrete math student) are looking for how many non-decreasing or non-increasing 4-digit numbers there are between 1000 and 9999, I believe I have the answer.
*the difference is that non-decreasing can have 1226 or 7888 while increasing cannot have repetition.
$\binom{10}{4}$ is the correct answer for decreasing combinations, while $\binom{10}{4} - {9 \choose 3}$ is the answer for increasing combinations because you can't begin the 4 digit segment with (or include) a zero.
The same idea applies to non-decreasing / non-increasing values, this time we allow for repetition, so for every integer after the 1st integer, we have +1 choices in digits.
For decreasing numbers, 3210 was the only option where the 1st digit was 3. This is reflected by $\binom{3}{3}$. Now, since we can have 4-digit numbers like 3332, 3200, and 3111, we have $\binom{3+3}{3}$ combinations. We then have to subtract 1 because 3333 is not a non-increasing number.
So, this same principle applies. We get $\binom{10+3}{4}$ + ($\binom{10+3} {4} - \binom{9+3}{3}$) - 10 = 1200. We subtract ten because 1111,2222,...9999 are not valid options for either non-increasing nor non-decreasing.
Final answer = 1200.