A base-10 number system requires 10 symbols. Any less, and you would not be able to represent every number. (Is this a correct assumption?) A base-16 system requires 16 symbols. How can I tell how many symbols a base-3.14 system takes. Or a base-9.9 system.
I'm defining a base-N system as a finite set of symbols $S$, and choosing a combination of these symbols $...s_3s_2s_1s_0.s_{-1}s_{-2}s_{-3}...$ where $s_x \in S$ results in the value $\sum\limits_{x=-\infty}^{\infty} s_xN^{x}$
Applying this to base-4.5 with the set of symbols ${0, 1, 2, 3, 4}$, we can take the number 1342.23 and evaluate it like this.
$$1*4.5^3 + 3*4.5^2 + 4*4.5 + 2 + 2*4.5^{-1} + 3*4.5^{-2} \approx 172.4676$$
My question is how small can I make $S$ for any given base-N system?