Define an to be a positive integer of or more digits where the digits are strictly
increasing moving left to right. Similarly, define a to be a positive integer
of or more digits where the digits are strictly decreasing moving left to right. For
instance, the number is an upno and is a downno. Let equal the total
number of and let equal the total number of . What is ?
Problem 7
Official solution
First, we know that is greater than , since there are less upnos than downnos. To see why, we examine what determines an upno or downno.
We notice that, given any selection of unique digits (notice that "unique" constrains this to be a finite number), we can construct a unique downno. Similarly, we can also construct an upno, but the selection can not include the digit since that isn't valid.
Thus, there are total downnos and total upnos. However, we are told that each upno or downno must be at least digits, so we subtract out the -digit and -digit cases.
For the downnos, there are -digit cases, and for the upnos, there are -digit cases. There is -digit case for both upnos and downnos.
Thus, the difference is
~Technodoggo ~minor edits by lucaswujc