From Surf Wiki (app.surf) — the open knowledge base
Chen–Ho encoding
Memory-efficient binary encoding of decimal digits
Memory-efficient binary encoding of decimal digits
Chen–Ho encoding is a memory-efficient alternate system of binary encoding for decimal digits.
The traditional system of binary encoding for decimal digits, known as binary-coded decimal (BCD), uses four bits to encode each digit, resulting in significant wastage of binary data bandwidth (since four bits can store 16 states and are being used to store only 10), even when using packed BCD.
The encoding reduces the storage requirements of two decimal digits (100 states) from 8 to 7 bits, and those of three decimal digits (1000 states) from 12 to 10 bits using only simple Boolean transformations avoiding any complex arithmetic operations like a base conversion.
History
In what appears to have been a multiple discovery, some of the concepts behind what later became known as Chen–Ho encoding were independently developed by Theodore M. Hertz in 1969 and by Tien Chi Chen (陳天機) (1928–) in 1971.
Hertz of Rockwell filed a patent for his encoding in 1969, which was granted in 1971.
Chen first discussed his ideas with Irving Tze Ho (何宜慈) (1921–2003) in 1971. Chen and Ho were both working for IBM at the time, albeit in different locations. Chen also consulted with Frank Chin Tung to verify the results of his theories independently. IBM filed a patent in their name in 1973, which was granted in 1974. At least by 1973, Hertz's earlier work must have been known to them, as the patent cites his patent as prior art.
With input from Joseph D. Rutledge and John C. McPherson, the final version of the Chen–Ho encoding was circulated inside IBM in 1974 and published in 1975 in the journal Communications of the ACM. This version included several refinements, primarily related to the application of the encoding system. It constitutes a Huffman-like prefix code.
The encoding was referred to as Chen and Ho's scheme in 1975, Chen's encoding in 1982 and became known as Chen–Ho encoding or Chen–Ho algorithm since 2000. After having filed a patent for it in 2001, Michael F. Cowlishaw published a further refinement of Chen–Ho encoding known as densely packed decimal (DPD) encoding in IEE Proceedings – Computers and Digital Techniques in 2002. DPD has subsequently been adopted as the decimal encoding used in the IEEE 754-2008 and ISO/IEC/IEEE 60559:2011 floating-point standards.
Application
Chen noted that the digits zero through seven were simply encoded using three binary digits of the corresponding octal group. He also postulated that one could use a flag to identify a different encoding for the digits eight and nine, which would be encoded using a single bit.
In practice, a series of Boolean transformations are applied to the stream of input bits, compressing BCD encoded digits from 12 bits per three digits to 10 bits per three digits. Reversed transformations are used to decode the resulting coded stream to BCD. Equivalent results can also be achieved by the use of a look-up table.
Chen–Ho encoding is limited to encoding sets of three decimal digits into groups of 10 bits (so called declets). Of the 1024 states possible by using 10 bits, it leaves only 24 states unused (with don't care bits typically set to 0 on write and ignored on read). With only 2.34% wastage it gives a 20% more efficient encoding than BCD with one digit in 4 bits.
Both, Hertz and Chen also proposed similar, but less efficient, encoding schemes to compress sets of two decimal digits (requiring 8 bits in BCD) into groups of 7 bits.
Larger sets of decimal digits could be divided into three- and two-digit groups.
The patents also discuss the possibility to adapt the scheme to digits encoded in any other decimal codes than 8-4-2-1 BCD, like f.e. Excess-3, Excess-6, Jump-at-2, Jump-at-8, Gray, Glixon, O'Brien type-I and Gray–Stibitz code. The same principles could also be applied to other bases.
In 1973, some form of Chen–Ho encoding appears to have been utilized in the address conversion hardware of the optional IBM 7070/7074 emulation feature for the IBM System/370 Model 165 and 370 Model 168 computers.
One prominent application uses a 128-bit register to store 33 decimal digits with a three digit exponent, effectively not less than what could be achieved using binary encoding (whereas BCD encoding would need 144 bits to store the same number of digits).
{{anchor|7-bit encodings}}Encodings for two decimal digits
{{anchor|Hertz|7-bit Hertz}}Hertz encoding
| Binary encoding | Decimal digits | Code space (128 states) | b6 | b5 | b4 | b3 | b2 | b1 | b0 | d1 | d0 | Values encoded | Description | Occurrences (100 states) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 50% (64 states) | **0** | a | b | c | d | e | f | 0**abc** | 0**def** | (0–7) (0–7) | Two lower digits | 64% (64 states) | ||
| 12.5% (16 states) | **1** | **1** | **0** | c | d | e | f | 100**c** | 0**def** | (8–9) (0–7) | One lower digit, | |||
| one higher digit | 16% (16 states) | |||||||||||||
| 12.5% (16 states) | **1** | **0** | **1** | f | a | b | c | 0**abc** | 100**f** | (0–7) (8–9) | 16% (16 states) | |||
| 12.5% (16 states, 4 used) | **1** | **1** | **1** | c | x | x | f | 100**c** | 100**f** | (8–9) (8–9) | Two higher digits | 4% (4 states) | ||
| 12.5% (16 states, 0 used) | **1** | **0** | **0** | x | x | x | x | 0% (0 states) |
- This encoding is not parity-preserving.
Early Chen–Ho encoding, method A
| Binary encoding | Decimal digits | Code space (128 states) | b6 | b5 | b4 | b3 | b2 | b1 | b0 | d1 | d0 | Values encoded | Description | Occurrences (100 states) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 50% (64 states) | **0** | a | b | c | d | e | f | 0**abc** | 0**def** | (0–7) (0–7) | Two lower digits | 64% (64 states) | ||
| 25% (32 states, 16 used) | **1** | **0** | x (b) | c | d | e | f | 100**c** | 0**def** | (8–9) (0–7) | One lower digit, | |||
| one higher digit | 16% (16 states) | |||||||||||||
| 12.5% (16 states) | **1** | **1** | **0** | f | a | b | c | 0**abc** | 100**f** | (0–7) (8–9) | 16% (16 states) | |||
| 12.5% (16 states, 4 used) | **1** | **1** | **1** | c | x (a) | x (b) | f | 100**c** | 100**f** | (8–9) (8–9) | Two higher digits | 4% (4 states) |
- This encoding is not parity-preserving.
Early Chen–Ho encoding, method B
| Binary encoding | Decimal digits | Code space (128 states) | b6 | b5 | b4 | b3 | b2 | b1 | b0 | d1 | d0 | Values encoded | Description | Occurrences (100 states) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 50% (64 states) | **0** | a | b | c | d | e | f | 0**abc** | 0**def** | (0–7) (0–7) | Two lower digits | 64% (64 states) | ||
| 12.5% (16 states) | **1** | **0** | c | **0** | d | e | f | 100**c** | 0**def** | (8–9) (0–7) | One lower digit, | |||
| one higher digit | 16% (16 states) | |||||||||||||
| 12.5% (16 states, 4 used) | **1** | **0** | c | **1** | x | x | f | 100**c** | 100**f** | (8–9) (8–9) | Two higher digits | 4% (4 states) | ||
| 12.5% (16 states) | **1** | **1** | f | **0** | a | b | c | 0**abc** | 100**f** | (0–7) (8–9) | One lower digit, | |||
| one higher digit | 16% (16 states) | |||||||||||||
| 12.5% (16 states, 0 used) | **1** | **1** | x | **1** | x | x | x | 0% (0 states) |
- This encoding is not parity-preserving.
{{anchor|7-bit Chen–Ho}}Patented and final Chen–Ho encoding
| Binary encoding | Decimal digits | Code space (128 states) | b6 | b5 | b4 | b3 | b2 | b1 | b0 | d1 | d0 | Values encoded | Description | Occurrences (100 states) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 50% (64 states) | **0** | a | b | c | d | e | f | 0**abc** | 0**def** | (0–7) (0–7) | Two lower digits | 64% (64 states) | ||
| 25.0% (32 states, 16 used) | **1** | **0** | x (b) | c | d | e | f | 100**c** | 0**def** | (8–9) (0–7) | One lower digit, | |||
| one higher digit | 16% (16 states) | |||||||||||||
| 12.5% (16 states) | **1** | **1** | **1** | c | a | b | f | 0**abc** | 100**f** | (0–7) (8–9) | 16% (16 states) | |||
| 12.5% (16 states, 4 used) | **1** | **1** | **0** | c | x (a) | x (b) | f | 100**c** | 100**f** | (8–9) (8–9) | Two higher digits | 4% (4 states) |
- Assuming certain values for the don't-care bits (f.e. 0), this encoding is parity-preserving.
{{anchor|10-bit encodings}}Encodings for three decimal digits
{{anchor|10-bit Hertz}}Hertz encoding
| Binary encoding | Decimal digits | Code space (1024 states) | b9 | b8 | b7 | b6 | b5 | b4 | b3 | b2 | b1 | b0 | d2 | d1 | d0 | Values encoded | Description | Occurrences (1000 states) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 50.0% (512 states) | **0** | a | b | c | d | e | f | g | h | i | 0**abc** | 0**def** | 0**ghi** | (0–7) (0–7) (0–7) | Three lower digits | 51.2% (512 states) | ||
| 37.5% (384 states) | **1** | **0** | **0** | c | d | e | f | g | h | i | 100**c** | 0**def** | 0**ghi** | (8–9) (0–7) (0–7) | Two lower digits, | |||
| one higher digit | 38.4% (384 states) | |||||||||||||||||
| **1** | **0** | **1** | f | a | b | c | g | h | i | 0**abc** | 100**f** | 0**ghi** | (0–7) (8–9) (0–7) | |||||
| **1** | **1** | **0** | i | a | b | c | d | e | f | 0**abc** | 0**def** | 100**i** | (0–7) (0–7) (8–9) | |||||
| 9.375% (96 states) | **1** | **1** | **1** | f | **0** | **0** | i | a | b | c | 0**abc** | 100**f** | 100**i** | (0–7) (8–9) (8–9) | One lower digit, | |||
| two higher digits | 9.6% (96 states) | |||||||||||||||||
| **1** | **1** | **1** | c | **0** | **1** | i | d | e | f | 100**c** | 0**def** | 100**i** | (8–9) (0–7) (8–9) | |||||
| **1** | **1** | **1** | c | **1** | **0** | f | g | h | i | 100**c** | 100**f** | 0**ghi** | (8–9) (8–9) (0–7) | |||||
| 3.125% (32 states, 8 used) | **1** | **1** | **1** | c | **1** | **1** | f | (**0**) | (**0**) | i | 100**c** | 100**f** | 100**i** | (8–9) (8–9) (8–9) | Three higher digits, bits b2 and b1 are don't care | 0.8% (8 states) |
- This encoding is not parity-preserving.
Early Chen–Ho encoding
| Binary encoding | Decimal digits | Code space (1024 states) | b9 | b8 | b7 | b6 | b5 | b4 | b3 | b2 | b1 | b0 | d2 | d1 | d0 | Values encoded | Description | Occurrences (1000 states) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 50.0% (512 states) | **0** | a | b | c | d | e | f | g | h | i | 0**abc** | 0**def** | 0**ghi** | (0–7) (0–7) (0–7) | Three lower digits | 51.2% (512 states) | ||
| 37.5% (384 states) | **1** | **0** | **0** | c | d | e | f | g | h | i | 100**c** | 0**def** | 0**ghi** | (8–9) (0–7) (0–7) | Two lower digits, | |||
| one higher digit | 38.4% (384 states) | |||||||||||||||||
| **1** | **0** | **1** | f | g | h | i | a | b | c | 0**abc** | 100**f** | 0**ghi** | (0–7) (8–9) (0–7) | |||||
| **1** | **1** | **0** | i | a | b | c | d | e | f | 0**abc** | 0**def** | 100**i** | (0–7) (0–7) (8–9) | |||||
| 9.375% (96 states) | **1** | **1** | **1** | **0** | **0** | f | i | a | b | c | 0**abc** | 100**f** | 100**i** | (0–7) (8–9) (8–9) | One lower digit, | |||
| two higher digits | 9.6% (96 states) | |||||||||||||||||
| **1** | **1** | **1** | **0** | **1** | i | c | d | e | f | 100**c** | 0**def** | 100**i** | (8–9) (0–7) (8–9) | |||||
| **1** | **1** | **1** | **1** | **0** | c | f | g | h | i | 100**c** | 100**f** | 0**ghi** | (8–9) (8–9) (0–7) | |||||
| 3.125% (32 states, 8 used) | **1** | **1** | **1** | **1** | **1** | c | f | i | (**0**) | (**0**) | 100**c** | 100**f** | 100**i** | (8–9) (8–9) (8–9) | Three higher digits, bits b1 and b0 are don't care | 0.8% (8 states) |
- This encoding is not parity-preserving.
Patented Chen–Ho encoding
| Binary encoding | Decimal digits | Code space (1024 states) | b9 | b8 | b7 | b6 | b5 | b4 | b3 | b2 | b1 | b0 | d2 | d1 | d0 | Values encoded | Description | Occurrences (1000 states) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 50.0% (512 states) | **0** | a | b | d | e | g | h | c | f | i | 0**abc** | 0**def** | 0**ghi** | (0–7) (0–7) (0–7) | Three lower digits | 51.2% (512 states) | ||
| 37.5% (384 states) | **1** | **0** | **0** | d | e | g | h | c | f | i | 100**c** | 0**def** | 0**ghi** | (8–9) (0–7) (0–7) | Two lower digits, | |||
| one higher digit | 38.4% (384 states) | |||||||||||||||||
| **1** | **0** | **1** | a | b | g | h | c | f | i | 0**abc** | 100**f** | 0**ghi** | (0–7) (8–9) (0–7) | |||||
| **1** | **1** | **0** | d | e | a | b | c | f | i | 0**abc** | 0**def** | 100**i** | (0–7) (0–7) (8–9) | |||||
| 9.375% (96 states) | **1** | **1** | **1** | **1** | **0** | a | b | c | f | i | 0**abc** | 100**f** | 100**i** | (0–7) (8–9) (8–9) | One lower digit, | |||
| two higher digits | 9.6% (96 states) | |||||||||||||||||
| **1** | **1** | **1** | **0** | **1** | d | e | c | f | i | 100**c** | 0**def** | 100**i** | (8–9) (0–7) (8–9) | |||||
| **1** | **1** | **1** | **0** | **0** | g | h | c | f | i | 100**c** | 100**f** | 0**ghi** | (8–9) (8–9) (0–7) | |||||
| 3.125% (32 states, 8 used) | **1** | **1** | **1** | **1** | **1** | (**0**) | (**0**) | c | f | i | 100**c** | 100**f** | 100**i** | (8–9) (8–9) (8–9) | Three higher digits, bits b4 and b3 are don't care | 0.8% (8 states) |
- This encoding is not parity-preserving.
{{anchor|10-bit Chen–Ho}}Final Chen–Ho encoding
| Binary encoding | Decimal digits | Code space (1024 states) | b9 | b8 | b7 | b6 | b5 | b4 | b3 | b2 | b1 | b0 | d2 | d1 | d0 | Values encoded | Description | Occurrences (1000 states) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 50.0% (512 states) | **0** | a | b | c | d | e | f | g | h | i | 0**abc** | 0**def** | 0**ghi** | (0–7) (0–7) (0–7) | Three lower digits | 51.2% (512 states) | ||
| 37.5% (384 states) | **1** | **0** | **0** | c | d | e | f | g | h | i | 100**c** | 0**def** | 0**ghi** | (8–9) (0–7) (0–7) | Two lower digits, | |||
| one higher digit | 38.4% (384 states) | |||||||||||||||||
| **1** | **0** | **1** | c | a | b | f | g | h | i | 0**abc** | 100**f** | 0**ghi** | (0–7) (8–9) (0–7) | |||||
| **1** | **1** | **0** | c | d | e | f | a | b | i | 0**abc** | 0**def** | 100**i** | (0–7) (0–7) (8–9) | |||||
| 9.375% (96 states) | **1** | **1** | **1** | c | **0** | **0** | f | a | b | i | 0**abc** | 100**f** | 100**i** | (0–7) (8–9) (8–9) | One lower digit, | |||
| two higher digits | 9.6% (96 states) | |||||||||||||||||
| **1** | **1** | **1** | c | **0** | **1** | f | d | e | i | 100**c** | 0**def** | 100**i** | (8–9) (0–7) (8–9) | |||||
| **1** | **1** | **1** | c | **1** | **0** | f | g | h | i | 100**c** | 100**f** | 0**ghi** | (8–9) (8–9) (0–7) | |||||
| 3.125% (32 states, 8 used) | **1** | **1** | **1** | c | **1** | **1** | f | (**0**) | (**0**) | i | 100**c** | 100**f** | 100**i** | (8–9) (8–9) (8–9) | Three higher digits, bits b2 and b1 are don't care | 0.8% (8 states) |
- This encoding is not parity-preserving.
Storage efficiency
| BCD | Necessary bits | Bit difference | Digits | States | Bits | Binary code space | Binary encoding [A] | 2-digit encoding [B] | 3-digit encoding [C] | Mixed encoding | Mixed vs. Binary | Mixed vs. BCD |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | 4 | 4 | (7) | (10) | 4 [1×A] | 0 | 0 | |||||
| 2 | 8 | 7 | 7 | (10) | 7 [1×B] | 0 | −1 | |||||
| 3 | 12 | 10 | (14) | 10 | 10 [1×C] | 0 | −2 | |||||
| 4 | 16 | 14 | 14 | (20) | 14 [2×B] | 0 | −2 | |||||
| 5 | 20 | 17 | (21) | (20) | 17 [1×C+1×B] | 0 | −3 | |||||
| 6 | 24 | 20 | 21 | 20 | 20 [2×C] | 0 | −4 | |||||
| 7 | 28 | 24 | (28) | (30) | 24 [2×C+1×A] | 0 | −4 | |||||
| 8 | 32 | 27 | 28 | (30) | 27 [2×C+1×B] | 0 | −5 | |||||
| 9 | 36 | 30 | (35) | 30 | 30 [3×C] | 0 | −6 | |||||
| 10 | 40 | 34 | 35 | (40) | 34 [3×C+1×A] | 0 | −6 | |||||
| 11 | 44 | 37 | (42) | (40) | 37 [3×C+1×B] | 0 | −7 | |||||
| 12 | 48 | 40 | 42 | 40 | 40 [4×C] | 0 | −8 | |||||
| 13 | 52 | 44 | (49) | (50) | 44 [4×C+1×A] | 0 | −8 | |||||
| 14 | 56 | 47 | 49 | (50) | 47 [4×C+1×B] | 0 | −9 | |||||
| 15 | 60 | 50 | (56) | 50 | 50 [5×C] | 0 | −10 | |||||
| 16 | 64 | 54 | 56 | (60) | 54 [5×C+1×A] | 0 | −10 | |||||
| 17 | 68 | 57 | (63) | (60) | 57 [5×C+1×B] | 0 | −11 | |||||
| 18 | 72 | 60 | 63 | 60 | 60 [6×C] | 0 | −12 | |||||
| 19 | 76 | 64 | (70) | (70) | 64 [6×C+1×A] | 0 | −12 | |||||
| 20 | … | 80 | … | 67 | 70 | (70) | 67 [6×C+1×B] | 0 | −13 | |||
| 21 | … | 84 | … | 70 | (77) | 70 | 70 [7×C] | 0 | −14 | |||
| 22 | … | 88 | … | 74 | 77 | (80) | 74 [7×C+1×A] | 0 | −14 | |||
| 23 | … | 92 | … | 77 | (84) | (80) | 77 [7×C+1×B] | 0 | −15 | |||
| 24 | … | 96 | … | 80 | 84 | 80 | 80 [8×C] | 0 | −16 | |||
| 25 | … | 100 | … | 84 | (91) | (90) | 84 [8×C+1×A] | 0 | −16 | |||
| 26 | … | 104 | … | 87 | 91 | (90) | 87 [8×C+1×B] | 0 | −17 | |||
| 27 | … | 108 | … | 90 | (98) | 90 | 90 [9×C] | 0 | −18 | |||
| 28 | … | 112 | … | 94 | 98 | (100) | 94 [9×C+1×A] | 0 | −18 | |||
| 29 | … | 116 | … | 97 | (105) | (100) | 97 [9×C+1×B] | 0 | −19 | |||
| 30 | … | 120 | … | 100 | 105 | 100 | 100 [10×C] | 0 | −20 | |||
| 31 | … | 124 | … | 103 | (112) | (110) | 104 [10×C+1×A] | +1 | −20 | |||
| 32 | … | 128 | … | 107 | 112 | (110) | 107 [10×C+1×B] | 0 | −21 | |||
| 33 | … | 132 | … | 110 | (119) | 110 | 110 [11×C] | 0 | −22 | |||
| 34 | … | 136 | … | 113 | 119 | (120) | 114 [11×C+1×A] | +1 | −22 | |||
| 35 | … | 140 | … | 117 | (126) | (120) | 117 [11×C+1×B] | 0 | −23 | |||
| 36 | … | 144 | … | 120 | 126 | 120 | 120 [12×C] | 0 | −24 | |||
| 37 | … | 148 | … | 123 | (133) | (130) | 124 [12×C+1×A] | +1 | −24 | |||
| 38 | … | 152 | … | 127 | 133 | (130) | 127 [12×C+1×B] | 0 | −25 | |||
| … | … | … | … | … | … | … | … | … | … |
Notes
References
References
- (2010). "Handbook of Floating-Point Arithmetic". [[Birkhäuser]].
- . (1959). ["We hear that..."](https://physicstoday.scitation.org/doi/abs/10.1063/1.3060696?journalCode=pto). *[[American Institute of Physics]] (AIP)*.
- (2003). "Honorary Fellow - A Citation - Professor Chen Tien Chi". [[The Chinese University of Hong Kong]] (CUHK).
- . (2013-01-12). ["CHEN Tien Chi"](http://www.cse.cuhk.edu.hk/v7/en/people/tcchen.html). *[[The Chinese University of Hong Kong]] (CUHK)*.
- (2014-08-15). Classical Chinese Poems in English. link
- . (1979-02-01). ["Scientist Given Task To Set Up Science-Oriented Industrial Park"](https://ejournal.stpi.narl.org.tw/index/items/download?viId=D9F1CC76-75FC-4440-8530-AC0B4B9CCE82&usg=AOvVaw0NgCMp2GIN8d2aXRbfhNMt). *[[National Science Council]]*.
- (1988-04-01). "High-Tech Leadership: Irving T. Ho". [[Taiwan Info]].
- . (2003-04-26). ["Irving T. Ho"](https://www.legacy.com/obituaries/mercurynews/obituary.aspx?n=irving-t-ho&pid=967196). *[[San Jose Mercury News]]*.
- . (2004-08-04). *[[South China University of Technology]] (SCUT)*. [link](http://www2.scut.edu.cn/software/news/news13.htm)
- (1971-03-12). "Decimal-binary integer conversion scheme". [[IBM]].
- (1971-03-29). "Decimal Number Compression". [[IBM]].
- (1974-06-25). "Storage-Efficient Representation of Decimal Data". [[IBM]].
- (January 1975). "Storage-Efficient Representation of Decimal Data". [[Association for Computing Machinery]].
- (August 1975). "Comments on a paper by T. C. Chen and I. T. Ho". [[Communications of the ACM]].
- (2014). "A Summary of Chen-Ho Decimal Data encoding". [[IBM]].
- (2002-08-07). "Densely Packed Decimal Encoding". [[Institution of Electrical Engineers]] (IEE).
- (1974-10-15). "Binary coded decimal conversion apparatus". [[International Business Machines Corporation]] (IBM).
- (2007-02-13). "A Summary of Densely Packed Decimal encoding". [[IBM]].
- (2003-02-25). "Decimal to binary coder/decoder". [[International Business Machines Corporation]] (IBM).
- (1971-11-02). "System for the compact storage of decimal numbers". [[North American Rockwell Corporation]].
- (2018). "Chen-Ho Encoding and Densely Packed Decimal". quadibloc.
- . (June 1973). ["7070/7074 Compatibility Feature for IBM System/370 Models 165, 165 II, and 168"](http://www.bitsavers.org/pdf/ibm/370/compatibility_feature/GA22-6958-1_707x_Compatibility_Feature_for_IBM-370_165_168.pdf). *[[IBM]]*.
- (1982-11-01). "Applications of Redundant Number Representations to Decimal Arithmetic". [[Wiley Heyden Ltd]].
This article was imported from Wikipedia and is available under the Creative Commons Attribution-ShareAlike 4.0 License. Content has been adapted to SurfDoc format. Original contributors can be found on the article history page.
Ask Mako anything about Chen–Ho encoding — get instant answers, deeper analysis, and related topics.
Research with MakoFree with your Surf account
Create a free account to save articles, ask Mako questions, and organize your research.
Sign up freeThis content may have been generated or modified by AI. CloudSurf Software LLC is not responsible for the accuracy, completeness, or reliability of AI-generated content. Always verify important information from primary sources.
Report