This may sound like a silly question to begin with but I'm having problems finding a proper answer.
The question is generally targeting numeral systems of any base, but for simplicity, I will demonstrate the problem on the representation of natural numbers in a decimal system.
In the decimal system, there are ten basic symbols (also known as digits $0-9$), which are corresponding to the first ten natural numbers including zero.
In order to generate the rest of the numbers, the value of each symbol is multiplied by $10$ raised to the power of the symbol's position, and the results are summed together.
For example, the number $496$ is equivalent to $4\cdot10^2+9\cdot10^1+6\cdot10^0$.
More generally, the number ${d_{n-1}}{d_{n-2}}\dots{d_{1}}{d_{0}}$ is equivalent to $\sum\limits_{i=0}^{n-1}d_i\cdot10^i$.
My question here onwards is very simple:
The number $10$ is equivalent to $1\cdot10^1+0\cdot10^0$.
This seems like a recursive definition, where $10$ is used in order to represent itself.
So how exactly do we "allow ourselves" to use this system in order to represent $10$?
More generally, how can we actually use a base-B system in order to represent B?
Unless I have missed the actual definition of a numeral system (given here), it seems that an additional symbol has to be added just for the sake of representing the base of the system itself.
Thank you.