3

This reddit thread says 6 trits ~ 9.5 bits.

alt text

How is 6 trits ~ 9.5 bits?

ergosys
  • 47,835
  • 5
  • 49
  • 70
Lazer
  • 90,700
  • 113
  • 281
  • 364

9 Answers9

9

It's talking about information capacity. You can store roughly the same amount of data in 9.5 bits as you can 6 trits because 29.5 (724) is approximately 36 (729).

tvanfosson
  • 524,688
  • 99
  • 697
  • 795
4

Because 3^6 (729) is approximately 2^9.5 (724).

You can read about the ternary number system for more details.

tvanfosson
  • 524,688
  • 99
  • 697
  • 795
LBushkin
  • 129,300
  • 32
  • 216
  • 265
2

I suppose, a trit is a "bit with three states" (0, 1 and 2).

Since you can form 3^6=729 different states with 6 trits (every trit can take three different states and you have 6 trits), the above calculation considers how many bits one needs to form 729 different states.

In fact (i.e. reality) you would need ten bits to form 729 different states, but a common calculation to derive how many bits are needed to form a specified number of states is to take the logarithm base 2 of the number. This yields log_2(3^6) = log_2(729) ~ 9.5.

Note: If you want to use the logarithm-base-2 calculation to determine how many bits are needed, you have to take the ceiling of the result.

phimuemue
  • 34,669
  • 9
  • 84
  • 115
1

http://en.wikipedia.org/wiki/Ternary_numeral_system

"One trit contains log23 (about 1.58496) bits of information."

1.58496 * 6 ~ 9.5

brydgesk
  • 864
  • 1
  • 8
  • 14
1

log(3**6)/log(2) ~ 9.5097750043269382

ony
  • 12,457
  • 1
  • 33
  • 41
0

Binary are discrete values. You have only whole values, so I guess 9.5 bits are in actuality 10 Bits.

Batusai Jack
  • 67
  • 1
  • 2
0

this might all be true, but as computers still works binary (high or low, on or off, open or closed) for a trit you would still need two binary positions. That is not really a good basis to talk about better information density. So as I see it, it takes 100% more space but gives 58% more info? unless ofcourse I completely misunderstand the concept

0

One trit contains alt text (about 1.58496) bits of information. and hence 6 trit = 9.5 bits (approx)

Some more interesting information in Wikipedia

Community
  • 1
  • 1
Santosh Joshi
  • 3,290
  • 5
  • 36
  • 49
0

A trits would be based off of its own discrete transistor with three states rather than two. So it would occupy (hypothetically) the exact same amount of space, but would hold much more data.

Joe
  • 1