edited by
2,707 views

2 Answers

Best answer
0 votes
0 votes

Here CRC polynomial is X4+X+1 

so we can transform it to a string of binary word i.e 10010

[convert a polynomial functio to a binary word by making the places 1 which are valid for x and other places 0 starting from right hand side as place 0]

look here we have x4 so after counting from rhs ...2,1,0 like this we made the 4th one 1 ..again for X(means X1)  we made the second from rhs 1 and we have already 1 here so X0 means LSB is 1..

now polynomial is 10010 (5 bit)

so we have to append (5-1)=4 0's after the data word        [add n-1 0's if poly is n bit]

now the modified dataword is 11010110110000

now apply simple divide and then xor...as mentioned in book

edited by
0 votes
0 votes

g(x)=x4+x+1

here degree of polynomial  = 4 , So x4 will be used to augument the dataword

dataword = 1101011011

dataword polynomial = x9+x8+x6+x4+x+x+1

 augumented dataword polynomial = (x9+x8+x6+x4+x+x+1).x4

 augumented dataword polynomial =x13+x12+x10+x8+x+x5+x4

Related questions

0 votes
0 votes
1 answer
3
sh!va asked Jul 9, 2016
606 views
In CRC, which of the following could be the polynomial , if the code is 11001 ?(A) 100(B) 101(C) 110(D) 111
0 votes
0 votes
1 answer
4
durgesh94 asked Jun 15, 2016
1,230 views
(A) checksum (B) even parity mechanism (C) CRC (D) odd parity mechanism.