Reverse Poisson Distribution problemNumber of calls following a poisson distributionPoisson distributionIs this a conditional probability or not?Exponential distribution helpLink between exponential distribution and poisson probability mass functionPoisson(Exponential) Distribution questionClarification on Poisson distributionProbability Statistics :Probability Poisson distribution customer servicePoisson Distribution question solving
Is it normal that my co-workers at a fitness company criticize my food choices?
Provisioning profile doesn't include the application-identifier and keychain-access-groups entitlements
Why must traveling waves have the same amplitude to form a standing wave?
Life insurance that covers only simultaneous/dual deaths
Is it true that real estate prices mainly go up?
What is IP squat space
What is a good source for large tables on the properties of water?
Co-worker team leader wants to inject his friend's awful software into our development. What should I say to our common boss?
Why do Australian milk farmers need to protest supermarkets' milk price?
How to explain that I do not want to visit a country due to personal safety concern?
RegionDifference for Cylinder and Cuboid
What are the possible solutions of the given equation?
Calculus II Professor will not accept my correct integral evaluation that uses a different method, should I bring this up further?
Pinhole Camera with Instant Film
2D counterpart of std::array in C++17
Do I need life insurance if I can cover my own funeral costs?
Ban on all campaign finance?
How to simplify this time periods definition interface?
How do I hide Chekhov's Gun?
Know when to turn notes upside-down(eighth notes, sixteen notes, etc.)
Why do passenger jet manufacturers design their planes with stall prevention systems?
Old race car problem/puzzle
Russian cases: A few examples, I'm really confused
Connecting top and bottom SMD component pads using via
Reverse Poisson Distribution problem
Number of calls following a poisson distributionPoisson distributionIs this a conditional probability or not?Exponential distribution helpLink between exponential distribution and poisson probability mass functionPoisson(Exponential) Distribution questionClarification on Poisson distributionProbability Statistics :Probability Poisson distribution customer servicePoisson Distribution question solving
$begingroup$
I was recently solving a quiz on Poisson distribution and I encountered this question
A call center receives an average of • 4.5 calls every 5 minutes. Each agent can handle one of these calls over the 5 minute period. If a call is received, but no agent is available to take it, then that caller will be placed on hold. Assuming that the calls follow a Poisson distribution, what is the minimum number of agents needed on duty so that calls are placed on hold at most 10% of the time?
I figured out this was a case of finding K while we are given the expected probability in the question itself.
what is the minimum number of agents needed on duty so that calls are
placed on hold at most 10% of the time?
I could not event determine the lambda and X to solve this question.
PS : The correct answer was 7 agents.A detailed explanation will be helpful.
Thanks
statistics probability-distributions poisson-distribution
New contributor
$endgroup$
add a comment |
$begingroup$
I was recently solving a quiz on Poisson distribution and I encountered this question
A call center receives an average of • 4.5 calls every 5 minutes. Each agent can handle one of these calls over the 5 minute period. If a call is received, but no agent is available to take it, then that caller will be placed on hold. Assuming that the calls follow a Poisson distribution, what is the minimum number of agents needed on duty so that calls are placed on hold at most 10% of the time?
I figured out this was a case of finding K while we are given the expected probability in the question itself.
what is the minimum number of agents needed on duty so that calls are
placed on hold at most 10% of the time?
I could not event determine the lambda and X to solve this question.
PS : The correct answer was 7 agents.A detailed explanation will be helpful.
Thanks
statistics probability-distributions poisson-distribution
New contributor
$endgroup$
add a comment |
$begingroup$
I was recently solving a quiz on Poisson distribution and I encountered this question
A call center receives an average of • 4.5 calls every 5 minutes. Each agent can handle one of these calls over the 5 minute period. If a call is received, but no agent is available to take it, then that caller will be placed on hold. Assuming that the calls follow a Poisson distribution, what is the minimum number of agents needed on duty so that calls are placed on hold at most 10% of the time?
I figured out this was a case of finding K while we are given the expected probability in the question itself.
what is the minimum number of agents needed on duty so that calls are
placed on hold at most 10% of the time?
I could not event determine the lambda and X to solve this question.
PS : The correct answer was 7 agents.A detailed explanation will be helpful.
Thanks
statistics probability-distributions poisson-distribution
New contributor
$endgroup$
I was recently solving a quiz on Poisson distribution and I encountered this question
A call center receives an average of • 4.5 calls every 5 minutes. Each agent can handle one of these calls over the 5 minute period. If a call is received, but no agent is available to take it, then that caller will be placed on hold. Assuming that the calls follow a Poisson distribution, what is the minimum number of agents needed on duty so that calls are placed on hold at most 10% of the time?
I figured out this was a case of finding K while we are given the expected probability in the question itself.
what is the minimum number of agents needed on duty so that calls are
placed on hold at most 10% of the time?
I could not event determine the lambda and X to solve this question.
PS : The correct answer was 7 agents.A detailed explanation will be helpful.
Thanks
statistics probability-distributions poisson-distribution
statistics probability-distributions poisson-distribution
New contributor
New contributor
New contributor
asked Mar 11 at 9:32
Piyush DixitPiyush Dixit
33
33
New contributor
New contributor
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
I believe you are being asked to focus on a typical 5-minute period of time.
Then the average number $X$ of incoming calls within 5 minutes has the distribution $X sim mathsfPois(lambda = 4.5).$ A bar plot of this distribution is shown below:
Poisson Model: Computations with the Poisson PDF $P(X = i) = e^-lambdafraclambda^ii!,$ where $lambda = 4.5,$ show that $P(X le 6) = 0.8311 < 0.9$ and
$P(X le 7) = 0.9134.$ Thus seven agents would suffice to serve
incoming customers at least 90% of the time.
Trial and error with Poisson CDF: Computations using
R statistical software (where the CDF of a Poisson distribution is denoted ppois
) are as follows:
ppois(6, 4.5)
## 0.8310506
ppois(7, 4.5)
## 0.9134135
Using a Poisson quantile function: If you have such software available, you can use the inverse CDF
or quantile function qpois
to get to the answer without
exploration.
qpois(.9, 4.5)
## 7
Note: Without knowing the context of this problem in your course, I suppose something like this is the approach you are expected to take. However, there
are some unstated assumptions involved. A complete analysis of such
a problem would involve finding the required number of servers $k$ required in an M/M/k queue (at steady state) that are sufficient to keep the average number of customers in the
system below $k$ 90% of the time. This would involve knowing the
exponential arrival rate $lambda = 4.5$ per five minutes or $0.9$ per
minute, and knowing the exponential rate (often denoted $mu)$ at
which each server can finish serving customers.
For starters: here are a few unstated assumptions: (a) No agents are busy at the beginning of the 5-minute period. (b) Each agent handles only one call within this period. (c) We are not concerned whether
agents are still handling calls from this 5-minute period ends and the next begins.
$endgroup$
$begingroup$
maybe I was making too many assumptions at first and did not look it in a simplistic manner. I did try it using a cdf with hit and trial like you mentioned, but accepting lambda to be 4.5 instead of 0.9 was not clear to me. Considering the given assumptions, I believe you have provided the simplest solution to this. Thanks a lot
$endgroup$
– Piyush Dixit
yesterday
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "69"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Piyush Dixit is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3143479%2freverse-poisson-distribution-problem%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
I believe you are being asked to focus on a typical 5-minute period of time.
Then the average number $X$ of incoming calls within 5 minutes has the distribution $X sim mathsfPois(lambda = 4.5).$ A bar plot of this distribution is shown below:
Poisson Model: Computations with the Poisson PDF $P(X = i) = e^-lambdafraclambda^ii!,$ where $lambda = 4.5,$ show that $P(X le 6) = 0.8311 < 0.9$ and
$P(X le 7) = 0.9134.$ Thus seven agents would suffice to serve
incoming customers at least 90% of the time.
Trial and error with Poisson CDF: Computations using
R statistical software (where the CDF of a Poisson distribution is denoted ppois
) are as follows:
ppois(6, 4.5)
## 0.8310506
ppois(7, 4.5)
## 0.9134135
Using a Poisson quantile function: If you have such software available, you can use the inverse CDF
or quantile function qpois
to get to the answer without
exploration.
qpois(.9, 4.5)
## 7
Note: Without knowing the context of this problem in your course, I suppose something like this is the approach you are expected to take. However, there
are some unstated assumptions involved. A complete analysis of such
a problem would involve finding the required number of servers $k$ required in an M/M/k queue (at steady state) that are sufficient to keep the average number of customers in the
system below $k$ 90% of the time. This would involve knowing the
exponential arrival rate $lambda = 4.5$ per five minutes or $0.9$ per
minute, and knowing the exponential rate (often denoted $mu)$ at
which each server can finish serving customers.
For starters: here are a few unstated assumptions: (a) No agents are busy at the beginning of the 5-minute period. (b) Each agent handles only one call within this period. (c) We are not concerned whether
agents are still handling calls from this 5-minute period ends and the next begins.
$endgroup$
$begingroup$
maybe I was making too many assumptions at first and did not look it in a simplistic manner. I did try it using a cdf with hit and trial like you mentioned, but accepting lambda to be 4.5 instead of 0.9 was not clear to me. Considering the given assumptions, I believe you have provided the simplest solution to this. Thanks a lot
$endgroup$
– Piyush Dixit
yesterday
add a comment |
$begingroup$
I believe you are being asked to focus on a typical 5-minute period of time.
Then the average number $X$ of incoming calls within 5 minutes has the distribution $X sim mathsfPois(lambda = 4.5).$ A bar plot of this distribution is shown below:
Poisson Model: Computations with the Poisson PDF $P(X = i) = e^-lambdafraclambda^ii!,$ where $lambda = 4.5,$ show that $P(X le 6) = 0.8311 < 0.9$ and
$P(X le 7) = 0.9134.$ Thus seven agents would suffice to serve
incoming customers at least 90% of the time.
Trial and error with Poisson CDF: Computations using
R statistical software (where the CDF of a Poisson distribution is denoted ppois
) are as follows:
ppois(6, 4.5)
## 0.8310506
ppois(7, 4.5)
## 0.9134135
Using a Poisson quantile function: If you have such software available, you can use the inverse CDF
or quantile function qpois
to get to the answer without
exploration.
qpois(.9, 4.5)
## 7
Note: Without knowing the context of this problem in your course, I suppose something like this is the approach you are expected to take. However, there
are some unstated assumptions involved. A complete analysis of such
a problem would involve finding the required number of servers $k$ required in an M/M/k queue (at steady state) that are sufficient to keep the average number of customers in the
system below $k$ 90% of the time. This would involve knowing the
exponential arrival rate $lambda = 4.5$ per five minutes or $0.9$ per
minute, and knowing the exponential rate (often denoted $mu)$ at
which each server can finish serving customers.
For starters: here are a few unstated assumptions: (a) No agents are busy at the beginning of the 5-minute period. (b) Each agent handles only one call within this period. (c) We are not concerned whether
agents are still handling calls from this 5-minute period ends and the next begins.
$endgroup$
$begingroup$
maybe I was making too many assumptions at first and did not look it in a simplistic manner. I did try it using a cdf with hit and trial like you mentioned, but accepting lambda to be 4.5 instead of 0.9 was not clear to me. Considering the given assumptions, I believe you have provided the simplest solution to this. Thanks a lot
$endgroup$
– Piyush Dixit
yesterday
add a comment |
$begingroup$
I believe you are being asked to focus on a typical 5-minute period of time.
Then the average number $X$ of incoming calls within 5 minutes has the distribution $X sim mathsfPois(lambda = 4.5).$ A bar plot of this distribution is shown below:
Poisson Model: Computations with the Poisson PDF $P(X = i) = e^-lambdafraclambda^ii!,$ where $lambda = 4.5,$ show that $P(X le 6) = 0.8311 < 0.9$ and
$P(X le 7) = 0.9134.$ Thus seven agents would suffice to serve
incoming customers at least 90% of the time.
Trial and error with Poisson CDF: Computations using
R statistical software (where the CDF of a Poisson distribution is denoted ppois
) are as follows:
ppois(6, 4.5)
## 0.8310506
ppois(7, 4.5)
## 0.9134135
Using a Poisson quantile function: If you have such software available, you can use the inverse CDF
or quantile function qpois
to get to the answer without
exploration.
qpois(.9, 4.5)
## 7
Note: Without knowing the context of this problem in your course, I suppose something like this is the approach you are expected to take. However, there
are some unstated assumptions involved. A complete analysis of such
a problem would involve finding the required number of servers $k$ required in an M/M/k queue (at steady state) that are sufficient to keep the average number of customers in the
system below $k$ 90% of the time. This would involve knowing the
exponential arrival rate $lambda = 4.5$ per five minutes or $0.9$ per
minute, and knowing the exponential rate (often denoted $mu)$ at
which each server can finish serving customers.
For starters: here are a few unstated assumptions: (a) No agents are busy at the beginning of the 5-minute period. (b) Each agent handles only one call within this period. (c) We are not concerned whether
agents are still handling calls from this 5-minute period ends and the next begins.
$endgroup$
I believe you are being asked to focus on a typical 5-minute period of time.
Then the average number $X$ of incoming calls within 5 minutes has the distribution $X sim mathsfPois(lambda = 4.5).$ A bar plot of this distribution is shown below:
Poisson Model: Computations with the Poisson PDF $P(X = i) = e^-lambdafraclambda^ii!,$ where $lambda = 4.5,$ show that $P(X le 6) = 0.8311 < 0.9$ and
$P(X le 7) = 0.9134.$ Thus seven agents would suffice to serve
incoming customers at least 90% of the time.
Trial and error with Poisson CDF: Computations using
R statistical software (where the CDF of a Poisson distribution is denoted ppois
) are as follows:
ppois(6, 4.5)
## 0.8310506
ppois(7, 4.5)
## 0.9134135
Using a Poisson quantile function: If you have such software available, you can use the inverse CDF
or quantile function qpois
to get to the answer without
exploration.
qpois(.9, 4.5)
## 7
Note: Without knowing the context of this problem in your course, I suppose something like this is the approach you are expected to take. However, there
are some unstated assumptions involved. A complete analysis of such
a problem would involve finding the required number of servers $k$ required in an M/M/k queue (at steady state) that are sufficient to keep the average number of customers in the
system below $k$ 90% of the time. This would involve knowing the
exponential arrival rate $lambda = 4.5$ per five minutes or $0.9$ per
minute, and knowing the exponential rate (often denoted $mu)$ at
which each server can finish serving customers.
For starters: here are a few unstated assumptions: (a) No agents are busy at the beginning of the 5-minute period. (b) Each agent handles only one call within this period. (c) We are not concerned whether
agents are still handling calls from this 5-minute period ends and the next begins.
edited 2 days ago
answered 2 days ago
BruceETBruceET
35.9k71540
35.9k71540
$begingroup$
maybe I was making too many assumptions at first and did not look it in a simplistic manner. I did try it using a cdf with hit and trial like you mentioned, but accepting lambda to be 4.5 instead of 0.9 was not clear to me. Considering the given assumptions, I believe you have provided the simplest solution to this. Thanks a lot
$endgroup$
– Piyush Dixit
yesterday
add a comment |
$begingroup$
maybe I was making too many assumptions at first and did not look it in a simplistic manner. I did try it using a cdf with hit and trial like you mentioned, but accepting lambda to be 4.5 instead of 0.9 was not clear to me. Considering the given assumptions, I believe you have provided the simplest solution to this. Thanks a lot
$endgroup$
– Piyush Dixit
yesterday
$begingroup$
maybe I was making too many assumptions at first and did not look it in a simplistic manner. I did try it using a cdf with hit and trial like you mentioned, but accepting lambda to be 4.5 instead of 0.9 was not clear to me. Considering the given assumptions, I believe you have provided the simplest solution to this. Thanks a lot
$endgroup$
– Piyush Dixit
yesterday
$begingroup$
maybe I was making too many assumptions at first and did not look it in a simplistic manner. I did try it using a cdf with hit and trial like you mentioned, but accepting lambda to be 4.5 instead of 0.9 was not clear to me. Considering the given assumptions, I believe you have provided the simplest solution to this. Thanks a lot
$endgroup$
– Piyush Dixit
yesterday
add a comment |
Piyush Dixit is a new contributor. Be nice, and check out our Code of Conduct.
Piyush Dixit is a new contributor. Be nice, and check out our Code of Conduct.
Piyush Dixit is a new contributor. Be nice, and check out our Code of Conduct.
Piyush Dixit is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3143479%2freverse-poisson-distribution-problem%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown