SHARE
SPREAD
HELP

The Tradition of Sharing

Help your friends and juniors by posting answers to the questions that you know. Also post questions that are not available.


To start with, Sr2Jr’s first step is to reduce the expenses related to education. To achieve this goal Sr2Jr organized the textbook’s question and answers. Sr2Jr is community based and need your support to fill the question and answers. The question and answers posted will be available free of cost to all.

 

#
Authors:
James F. Kurose, Keith W. Ross
Chapter:
Computer Networks And The Internet
Exercise:
Problems
Question:2 | ISBN:9780132856201 | Edition: 6

Question

Equation 1.1 gives a formula for the end-to-end delay of sending one packet

of length L over N links of transmission rate R. Generalize this formula for sending P such packets back-to-back over the N links.

TextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbook

Answer

Consider the given data

           N = Total number of links

           R = Transmission rate

           L = Packet length

           P = packets that tramnsmit over the N link

The following is the formula of back-to-back delay of sending P packets, each of length L over N links of transmisson rateR=d_{back-to-back}=PN\left ( \frac{L}{R} \right )

0 2

Discussions

cml cgdm

first packet's delay N\frac{L}{R}  but, consecutive packet's delay would be \frac{L}{R} , because they are not at the beginnig. They are at the router just before the final host. When a packet comes to final destination, at the same time next packet come to the router previous packet left. Then formula would be N\frac{L}{R}+(P-1)\frac{L}{R}  . First term for the first packet and second term is for remaining packets.

Trueman

Yes this is the correct formula,  N\frac{L}{R}+(P-1)\frac{L}{R}

CroetCalc

N*L/R  the first packet reaches the destination.

N*L/R +L/R  the second packet reaches the destination.

N*L/R +L/R+L/R the third packet reaches the destination.

After  N*L/R + (P-1)*L/R  reaches the Pth packet the destination.

More simplyfied

N*L/R + (P-1)*L/R = (N+P-1)*L/R

Post the discussion to improve the above solution.