Not sure what to make the title. Let $f(x)$ represent the function that takes a hexadecimal number and returns its value in base 10. Let $x$ be a number in base 10. Can we solve $f(x) - x = y$?
For example, choose $y$ to be, say, 400,000. Then can we determine $x$? Here is what I came up with:
Express $x:= \sum_{0}^{n} a_i \cdot (10)^i$ where $a_i \in \{0, \dots, 9\}$
Then $f(x) := \sum_{0}^{n} a_i \cdot (16)^i$
Then $f(x) - x = \sum_{i=1}^n a_i \cdot ({16}^i - {10}^i)$.
At this point I think it must be brute forced? But there should always exist a unique solution, so we know if we start brute forcing, we should find an answer in finite time?
No clue what to tag or title this.