Computer Science, asked by meerasharma9665, 10 hours ago

1. A bit stream 1011011 is transmitted using standard CRC. The generator polynomial is x3+x2+1. Show the actual bit stream transmitted also check error occurred at receiver end.

Answers

Answered by hukam0685
3

Step-by-step explanation:

Given:A bit stream 1011011 is transmitted using standard CRC. The generator polynomial is x³+x²+1.

To find: Show the actual bit stream transmitted also check error occurred at receiver end.

Solution:

  1. The generator polynomial is x³+x²+1 is and it's bits can be written as 1101.
  2. Generator polynomial consist of 4 bits,thus a string of 000 is append to the bit stream to be transmitted.
  3. Resulting bit stream is 1011011000.
  4. Divide 1011011000 by 1101 to generate CRC bit

1101)1011011000(110101 \\ 1101 \:  \:  \:  \:  \:  \:  \:  \:  \:  \:  \:  \:  \:  \:  \:  \:  \:  \\  -  -  -  -  -  \\ 1100 \\ 1101 \\  -  -  -  -  -  \\ 1110 \\ 1101 \\  -  -  -  -  -  \\ 1100 \\ 1101 \\  -  -  -  -  -  \\ 0001 \\

Quotient of division is 110101 and Remainder is 001.

Append these bits with message to be transmitted.

Thus,

The bits to be transmitted 1011011001.

At receiver end 1011011001 is divided by again 1101(Generator polynomial)

1101)1011011001(110101 \\ 1101 \:  \:  \:  \:  \:  \:   \:  \:  \:  \:  \:  \: \:  \:  \\  \:  -  -  -  -  -  -  \\ 1100  \\ 1101 \\  -  -  -  -  \\ 1110 \\ 1101 \\  -  -  -  -  \\ 1101 \\ 1101 \\  -  -  -  -  \\ 000 \\

Thus,

Remainder is 000.

Thus,

No error present in the received message.

Final answer:

1) Actual bitstream transmitted 1011011001.

2) No error occurred in the received message.

Note*: In division XOR operation is performed in place of subtraction.

Hope it helps you.

To learn more on brainly:

An 8-bits register R, determine the values of status bits C,S,Z,V after each

of the following instructions .Draw diagr...

https://brainly.in/question/24189752?

Answered by renishdhaduk111
0

Answer:

000111

Explanation:

Bit steam =100100

divisor value=x^3+x^2+1

x^3+x^2+1 = 1 x^3+1 x^2+0 x^1+1 x^0

CRC generator:-1101

Bit steam:-100100

        1 0 0 1 0 0

        1 1 0 1

   ⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻

       0 1 0 0 0

          1 1 0 1

  ⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻

      0 0 1 0 1 0

             1 1 0 1

  ⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻

     0 0 0 1 1 1

Message Transmitted :- 0 0 0 1 1 1

Similar questions