I've been working on a problem that involves discovering valid methods of expressing natural numbers as Roman Numerals, and I came across a few oddities in the numbering system.
For example, the number 5 could be most succinctly expressed as $\texttt{V}$, but as per the rules I've seen online, could also be expressed as $\texttt{IVI}$.
Are there any rules that bar the second expression from being valid? Or are the rules for roman numerals such that multiple valid expressions express the same number.
Edit
A sample set of rules I've seen online:
- Only one I, X, and C can be used as the leading numeral in part of a subtractive pair.
- I can only be placed before V or X in a subtractive pair.
- X can only be placed before L or C in a subtractive pair.
- C can only be placed before D or M in a subtractive pair.
- Other than subtractive pairs, numerals must be in descending order (meaning that if you drop the first term of each subtractive pair, then the numerals will be in descending order).
- M, C, and X cannot be equalled or exceeded by smaller denominations.
- D, L, and V can each only appear once.
- Only M can be repeated 4 or more times.
IVIvalid? – Rushabh Mehta Aug 10 '18 at 14:50