Question: Problem 1 . Suppose we want to transmit the message 1 0 1 1 0 0 1 0 0 1 0 0 1 0 1

Problem 1.
Suppose we want to transmit the message 1011001001001011 and protect it from errors using the CRC-8 generator 100000111.
1.1. Determine the message that is transmitted.
1.2. Suppose the leftmost bit of the message is inverted due to noise on the transmission link. What is the result of the receiver's CRC calculation? How does the receiver know that an error has occurred?
Problem 2.
The CRC algorithm as presented in this chapter, requires lots of bit manipulations. It is, however, possible to do them by taking multiple bits at a time, via a table-driven method, that enables efficient software implementations of CRC. I outline the strategy here for long division 3 bits at a time (See table below); in practice, we would divide 8 bits at a time, and the table would have 256 entries.
Let the generator \( G=1101\). To build the table for \( G \), we take each 3-bit sequence \( p \), append three trailing 0 s , and then find the quotient \( q=p 000\div G \), ignoring the remainder. The third column is the product of \( G \times q \)(note: do exclusive-or when adding bits up), and the first 3 bits should be equal \( p \).2.1. Fill in the missing entries in the following table (I did two rows for you already.)
2.2 Use the table you developed above to divide 101001011001100 by \( G=1101\).
Hint: The first 3 bits of the dividend are \( p=101\), so from the table, the corresponding first 3 bits of the quotient are \( q=110\). Write 110 above the second 3 bits of the dividend, and subtract \( G \times q=101110\)(again, from table) from the first 6 bits of the dividend. Keep going in groups of 3 bits.
Problem 1 . Suppose we want to transmit the

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!