I was given a task that doesn't require any special knowledge of math, but got stuck with it. Here it is:
- How many ways are there to represent the number $N$ in the
following way: $$ N = a_3 \cdot 10^3 + a_2 \cdot 10^2 +
a_1\cdot10+a_0 \ \ \ (1)$$ $$ a \in \mathbb{Z_{\geq0}}, \ \ \ \ 0\leq
a_i\leq99, \ \ i=0;1;2;3$$ for $N=1091$?
- Do 10 different numbers $N$ that are representable exactly in 110 ways as in the $(1)$ exist?
- How many numbers $N$ that are representable as in the $(1)$ are representable exactly in 110 ways?
I've written a program and found out that the answer for the first question is 110. But I have no any more ideas unfortunately.
Any ideas or hints leading to an analytical solution are greatly appreciated!
Hint: write each $a_i$ as $10b_i+c_i$ with $b_i,c_i\in \{0,1,...,9\}$ (and use the uniqueness of decimal representation).
Elaboration: if you write it out like this, then you can do the following analysis for $N=10^4d_4+10^3d_3+10^2d_2+10d_1+d_0$.
For $1091$, the only carryover that can occur is from $10^2$ to $10^3$. So we have in total $10\cdot 1\cdot 2+10\cdot9\cdot1=110$ ways.
I don't think there's any smarter way to work out second and third point than either writing a program or writing out the formula behind "And so on." and doing some more or less rough estimates.