You are on page 1of 6

Jordan University of Science and Technology

College of Computer & Information Technology


Network Engineering & Security Department

NES 311: Data Communication


Semester: Spring 2020-19
Section No. 4

Assignment No. 4 (ch10)

Student Name: Hesham Abubaker


Student Id: 126344
Instructor Name: Mohammad AL-Rousan
Due to Date: April 23
24. Apply the following operations on the corresponding polynomials:
a. (x3 + x2+ + 1) + (x4 + x2+ x + 1) = x4 + x3
X

b. (x3 + x2+ x + 1) - (x4 + x2 + x + 1) = x4 + x3


c. (x3 + x2) * (x4 + x2 + x + 1) = x7 + x6 + x5 + x2
d. (x3 + x2 + x + 1) / (x2 + 1) = x + 1

25. Answer the following questions:


a. What is the polynomial representation of 10111O?
Answer: x5 + x3 + x2 + x
b. What is the result of shifting 101110 three bits to the left?
Answer: 101110000 (logic shifting)
c. Repeat part b using polynomials.
Answer: x8 + x6 + x5 + x4
d. What is the result of shifting 101110 four bits to the right?
Answer: 10 (logic divide on 2)
e. Repeat part d using polynomials.
Answer: x
30. Given the dataword 1010011110 and the divisor 10111,
a. Show the generation of the codeword at the sender site (using binary division).
b. Show the checking of the codeword at the receiver site (assume no error).
31. Repeat Exercise 30 using polynomials.

You might also like