User Tools

Site Tools


tanszek:oktatas:techcomm:error_detection_and_correction

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
tanszek:oktatas:techcomm:error_detection_and_correction [2024/10/06 18:46] – [Example] kneheztanszek:oktatas:techcomm:error_detection_and_correction [2025/10/27 20:05] (current) – [Example 2.] knehez
Line 1: Line 1:
 +===== Elias-style block protection =====
 +
 +Elias-style block protection uses horizontal and vertical control bits. It should be used if the protected data can be written in matrix form. During the decoding process, the logical values of the equations are examined both individually and combined.
 +
 +**Example**
 +
 +A binary data which is stored in a 3x3 matrix is given: **101011001**
 +
 +Let's write it down in matrix form and attach parity bits, too.
 +
 +|  1  |  0  |  1  |  **0**  |
 +|  0  |  1  |  1  |  **0**  |
 +|  0  |  0  |  1  |  **1**  |
 +|  **1**  |  **1**  |  **1**  |  **1**  |
 +
 +Let's suppose that the first bit was wrong during transmission, then the parity bit in the row and column will show us the bad bit:
 +
 +|  1-> |  0  |  1  |  **0** -> **1**  |
 +|  0  |  1  |  1  |  **0**  |
 +|  0  |  0  |  1  |  **1**  |
 +|  **1** -> **0**  |  **1**  |  **1**  |  **1** -> **0**  |
 +
 +
 +
 +
 ===== Error Detection and Correction Using Hamming Codes ===== ===== Error Detection and Correction Using Hamming Codes =====
  
Line 7: Line 32:
 $$ n = m + r $$ $$ n = m + r $$
  
-If two code-words are given, for example : **0101110** and **001111110** and the only difference between them is 1 bit, then the 'Hamming distance' of these code-words will be 1. This is an interesting measure for distance because it does not matter which bit in the row is different or whether it belongs to a binary or decimal system. So for example : **45635263** and **45615263** have the Hamming distance of 1 too. It does not matter that 10 different digits could be in the place of the wrong digit.+If two code-words are given, for example : **0101110** and **0111110** and the only difference between them is 1 bit, then the '**Hamming distance**' of these code-words will be 1. This is an interesting measure for distance because it does not matter which bit in the row is different or whether it belongs to a binary or decimal system. So for example : **45635263** and **45615263** have the **Hamming distance** of 1 too. It does not matter that 10 different digits could be in the place of the wrong digit.
  
-The **Hamming-style** correction code supposed to increase the number of parity bits. To correct single bit errors we have to use **k** number of parity bits using this formula:+The **Hamming-style** correction code supposed to increase the number of parity bits. To correct single bit errorswe have to use \(r\) number of parity bits using this formula:
  
-$$ n + 1 \le 2^$$+$$ 2^r \ge m + r + 1 $$
  
-According to this formula the necessary number of parity bits which are needed to correct single bit errors are stated in the following table (for different word lengths):+According to this formula the necessary number of parity bits which are needed to correct single bit errors are stated in the following table:
  
-word length ^ number of parity bits ^ whole bit length ^ % of added bits ^+Data bits (\(m\)) ^ number of parity bits (\(r\)) ^ whole bit length (\(n = m + r\)) ^ % of added bits ^
 | 4 | 3 | 7 | 66 | | 4 | 3 | 7 | 66 |
 | 8 | 4 | 12 | 50 | | 8 | 4 | 12 | 50 |
Line 25: Line 50:
 |512| 10 | 522 | 2 | |512| 10 | 522 | 2 |
  
-==== How Hamming Codes Work ====+==== How Hamming Codes Work====
  
 Hamming codes introduce additional bits, called parity bits, into the data. These parity bits are strategically placed within the data to allow the detection of errors. The positions of the parity bits are powers of two (e.g., positions 1, 2, 4, 8, etc.). Hamming codes introduce additional bits, called parity bits, into the data. These parity bits are strategically placed within the data to allow the detection of errors. The positions of the parity bits are powers of two (e.g., positions 1, 2, 4, 8, etc.).
Line 31: Line 56:
 For example, in an 11-bit data block, we might have 4 parity bits, making it a 15-bit Hamming code. For example, in an 11-bit data block, we might have 4 parity bits, making it a 15-bit Hamming code.
  
-  * Detecting Errors: After transmission, the parity bits are recalculated and compared with the received parity bits. If there is any mismatch, the system can determine which bit is incorrect by checking the positions covered by the erroneous parity bits. +  * **Detecting Errors**: After transmission, the parity bits are recalculated and compared with the received parity bits. If there is any mismatch, the system can determine which bit is incorrect by checking the positions covered by the erroneous parity bits. 
-  * Correcting Errors: If a single-bit error is detected, the Hamming code identifies which bit is incorrect (from the parity bits' positions) and corrects it by flipping the bit.+  * **Correcting Errors**: If a single-bit error is detected, the Hamming code identifies which bit is incorrect (from the parity bits' positions) and corrects it by flipping the bit.
  
-==== Example ====+==== Example 1. ====
  
 In this simple example we encode 4 bits of data into 7 bits by adding 3 parity bits. In this simple example we encode 4 bits of data into 7 bits by adding 3 parity bits.
Line 49: Line 74:
   * p4 covers bit positions: 4, 5, 6, 7   * p4 covers bit positions: 4, 5, 6, 7
  
-Parity bit **p1** covers all positions where the least significant bit of the position number is **1**. Positions covered: 1, 3, 5, 7 (since 001, 011, 101, and 111 in binary all have a 1 in the least significant bit).+Parity bit **p1** covers all positions where the **least significant** bit of the position number is **1**. Positions covered: 1, 3, 5, 7 (since 001, 011, 101, and 111 in binary all have a 1 in the least significant bit).
  
-Parity bit **p2** covers all positions where the second least significant bit is 1. Positions covered: 2, 3, 6, 7 (since 010, 011, 110, and 111 in binary all have a 1 in the second bit).+Parity bit **p2** covers all positions where the **second least significant** bit is 1. Positions covered: 2, 3, 6, 7 (since 010, 011, 110, and 111 in binary all have a 1 in the second bit).
  
-Parity bit **p4** covers all positions where the third least significant bit is 1.+Parity bit **p4** covers all positions where the **third least significant** bit is 1.
 Positions covered: 4, 5, 6, 7 (since 100, 101, 110, and 111 in binary all have a 1 in the third bit). Positions covered: 4, 5, 6, 7 (since 100, 101, 110, and 111 in binary all have a 1 in the third bit).
  
 In general we can build a table to help to determine covers positions: In general we can build a table to help to determine covers positions:
  
-|1. bit|1|3|5|7|9|11|13|15|17|19|21| +|1. bit (p1)|1|3|5|7|9|11|13|15|17|19|21| 
-|2. bit|2|3|6|7|10|11|14|15|18|19| | +|2. bit (p2)|2|3|6|7|10|11|14|15|18|19| | 
-|4. bit|4|5|6|7|12|13|14|15|20|21| | +|4. bit (p4)|4|5|6|7|12|13|14|15|20|21| | 
-|8. bit|8|9|10|11|12|13|14|15| | | |  +|8. bit (p8)|8|9|10|11|12|13|14|15| | | |  
-|16. bit|16|17|18|19|20|21| | | | | |+|16. bit (p16)|16|17|18|19|20|21| | | | | |
  
 Now calculate the values of parity bits: Now calculate the values of parity bits:
Line 73: Line 98:
 **p2**: Covers 0, 1, 0 (positions 2, 3, 6, 7), so p2 = 1 (to make the total even). **p2**: Covers 0, 1, 0 (positions 2, 3, 6, 7), so p2 = 1 (to make the total even).
  
-**p4**: Covers 0, 0, 1, 0 (positions 4, 5, 6, 7), so p4 = 1 (to make the total even).+**p4**: Covers 0, 1, 0 (positions 4, 5, 6, 7), so p4 = 1 (to make the total even).
  
 Thus, the final transmitted Hamming code is: Thus, the final transmitted Hamming code is:
Line 84: Line 109:
 However from 5, 6, 7 are included in the good parity bits -> therefore the wrong parity bit is the **3rd** one.  (note that: 1, 2 cannot be wrong in this case. If 1 was wrong, only the **p1** parity bit would be wrong.) However from 5, 6, 7 are included in the good parity bits -> therefore the wrong parity bit is the **3rd** one.  (note that: 1, 2 cannot be wrong in this case. If 1 was wrong, only the **p1** parity bit would be wrong.)
  
 +==== Example 2. ====
 +
 +Assume that we try to transmit 16 bits: ''1001011101011011''
 +
 +The following table show the placement of the __parity bits__ and the __data bits__:
 +
 +| 1| 2|3| 4|5|6|7| 8|9|10|11|12|13|14|15|16 |17|18|19|20|21| 
 +|p1|p2|1|p4|0|0|1|p8|0|1 |1 |1 |0 |1 |0 |p16|1 |1 |0 |1 |1 |
 +
 +p1: Covers (positions: 1, 3, 5, 7, 9, 11, 13, 15, 17, 19), so p1 = (1, 0, 1, 0, 1, 0, 0, 1, 0, 1) -> **1**
 +
 +p2: Covers (positions: 2, 3, 6, 7, 10, 11, 14, 15, 18, 19) so p2 = (1, 0, 1, 1, 1, 1, 0, 1, 0) -> **0**
 +
 +p4: Covers (positions: 4, 5, 6, 7, 12, 13, 14, 15, 20, 21) so p4 = (0, 0, 1, 1, 0, 1, 0, 1, 1) -> **1**
 +
 +p8: Covers (positions: 8, 9, 10, 11, 12, 13, 14, 15) so p8 = (0, 1, 1, 1, 0, 1, 0) -> **0**
 +
 +p16: Covers (positions: 16, 17, 18, 19, 20, 21) so p16 = (1, 1, 0, 1, 1) -> **0**
 +
 +Encoded message with parity bits will be:
 +
 +| 1| 2|3| 4|5|6|7| 8|9|10|11|12|13|14|15|16|17|18|19|20|21| 
 +| 1| 0|1| 1|0|0|1| 0|0|1 | 1| 1| 0| 1| 0| 0| 1| 1| 0| 1| 1|
tanszek/oktatas/techcomm/error_detection_and_correction.1728240387.txt.gz · Last modified: 2024/10/06 18:46 by knehez