9

What is the reason that the least significant trit is at the very left in the IOTA ternary implementation when all other numbering systems have it at the very right?

For T = -1:
(dec)8 is T01 instead of 10T

Same for trytes:
(ASCII) 1 is VA instead of AV
(ASCII) 2 is WA instead of AW

Is there a reason for this or was it just random choice?

mihi
  • 7,324
  • 2
  • 15
  • 34
TorstenW
  • 91
  • 4
  • I’m voting to close this question because it is about the legacy-network and it is a good idea to keep only Shimmer/ShimmerEVM and latest IOTA Chrysalis questions – Antonio Nardella Apr 24 '23 at 14:03

1 Answers1

1

By convention, unbalanced ternary notation have the most significant trit on the left.

By convention, balanced ternary notation have the least significant trit first.

Iota use balanced ternary, so least significant trit first (i.e. on the left)

ben75
  • 5,344
  • 11
  • 32