I would like to find all $(a,b,c)\in\mathbb{N}^3$ such that $a\times 1111+b\times 111+c\times 11=9002$.
It is obvious that $a+b+c \equiv 2 \pmod{10}$. I made a little computer program, that basically looped over all possiblities and I found no answer, so I just have to prove it...
I am thinking of an inductive solution, something like:
If no solution is found for $a=a_{1}$, then there is no solution for $a=a_{1}+1$
Rewrite the equation as
$$1000a+100(a+b)+11(a+b+c)=9002$$
and now look for solutions of $1000A+100B+11C=9002$ with $0\le A\le B\le C$ (or $0\lt A\lt B\lt C$ if you want positive integer solutions). From $11C\equiv2$ mod $100$, we see $-C\equiv99C\equiv18$ mod $100$, so $C\equiv82$ mod $100$. Thus, since $882\cdot11=9702\gt9002$, we have
$$C\in\{82,182,282,382,482,582,682,782\}$$
From these we get
$$10A+B= \begin{cases} 81\\70\\59\\48\\37\\26\\15\\4 \end{cases}$$
and appropriate values for $0\le A\le B$ can be easily worked out, and then values of $(a,b,c)$ obtained. For example $(A,B,C)=(7,11,82)$ corresponds to $(a,b,c)=(7,4,71)$.