in Computer Networks
13,832 views
32 votes
32 votes

There are $n$ stations in slotted LAN. Each station attempts to transmit with a probability $p$ in each time slot. What is the probability that ONLY one station transmits in a given time slot?

  1. $np(1-p)^{n-1}$

  2. $(1-p)^{n-1}$

  3. $p(1-p)^{n-1}$

  4. $1-(1-p)^{n-1}$

in Computer Networks
13.8k views

4 Comments

Application of this question: https://gateoverflow.in/3729/gate2004-it-85
0
0
Book : Computer Networking - Kurose : Ross 7th Global edition

Page : 485
0
0
0
0

7 Answers

2 votes
2 votes

Out of all stations only 1 allowed to transmit so to select  1 station out of N stations there are N ways possible (nC1 ) then 
it must transmit and other n-1 stations should not transmit 
therefore    n * p * (1-p)*(1-p)*.............(1-p)
= np(1-p)n-1

by
0 votes
0 votes
as u can do it with the help of  probability distribution

n is the no of station out of  which 1 sation send the data then the probability of transmitting of1 station is (p)^1

and the probabilty of transmitting "n-1" staion is (1-p)^n-1 which is unsuccess probability then u got the answer.
0 votes
0 votes

Event 1: Only one station should transmit

We can select one station out of 1 station in C(n,1 ) ways = n

This station has to transmit with the probability 'p'

Therefore, P(E1) = n * p

Event 2: Remaining (n-1) stations should not transmit

Then remaining (n-1) stations should not transmit.

So, for all of them probability will be (1-P)

therefore, P(E2) = (1-p)^(n-1).

Now, both the events should occur simultaneously

Hence, n * p * (1 - p )^(n-1)

Answer:

Related questions