Counting in base 13

2.1k Views Asked by At

So, I was counting in base $8$:

$1,2,3,4,5,6,7,10,11,12,13,14,15,16,17,20,21,22,23,24,25,26...$

Then I tried counting in base $13$ and got confused:

$1,2,3,4,5,6,7,8,9,10,11,12$ (confused here, maybe:) $1(01),1(02),1(03),....1(12),2(00).$

Is there a nice or more standard way list the counting numbers in a base above $10$?

3

There are 3 best solutions below

0
On BEST ANSWER

The standard way to count this (which is used in hexadecimal: base-$16$) is to use the letters of the alphabet like so: $$ 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E ... $$ So in base-$13$ it would be: $$ \begin{align} &1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C \\ &10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1A, 1B, 1C \\ &20... \end{align} $$

0
On

In order to work in base $13$, you need three extra symbols, which represent $10$, $11$, and $12$. Suppose that these symbols are $A$, $B$, and $C$ respectively. Then you have:$$1,2,3,4,5,6,7,8,9,A,B,C,10,11,12,13,14,15,16,17,18,19,1A,1B,1C,20,\ldots$$

0
On

The standard way (at least as it's used conventionally in base 16 in computing contexts) is to start using letters. So you get $$ 0,1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C,\\ 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1A, 1B, 1C,\\ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 2A, 2B, 2C, \\ \vdots $$ Some prefer to use lower case instead, and that's fine too. And of course you're free to invent your own symbols if you'd like, or steal symbols from somewhere other than the Latin alphabet. Just be sure to inform your readers which symbol means what.