|
|
Explanation:
|
Explanation:
|
|
Generator polynomial: x3 + x2 + 1 Genenrator polnomial in bit string: 1101 (1101 represents the polynomial: 1×x3 + 1×x2 + 0×x1 + 1×x0)
|
|
CRC generator polynomial: 11011 (N = 5) Message: 11100110 |
------------------------------ CRC-polynomial / Original-Message + 000..000 .... ----------------------------- CRC-code |
Original-Message + CRC-code |
|
Reason:
Since: ------------------------------ CRC-polynomial / Original-Message + 000..000 .... ----------------------------- CRC-code We will have: ------------------------------ CRC-polynomial / Original-Message + CRC-code .... |||||||| VVVVVVVV ----------------------------- CRC-code XOR CRC-code ----------------- 000..000 |
(The dvision will now bring down the value "CRC-code" which will be subtracted from the remaining value "CRC-code" --- therefore producting the final remainder 0)
|