The most used formula's to calculate the range of numbers in a two's complement system are + $2^{n-1}-1$ for the highest number and $-2^{n-1}$ for the lowest number.
The problem is that this only works in a binary system. Does the following formula work as well for every system?
+$\frac{R^n}{2}-1$
for the highest number and
-$\frac{R^n}{2}$
for the lowest number.
R = radix (so 2 for binary, 10 for decimal, 16 for hexadecimal)
n = amount of numbers