Probability high school math competition problem The Next CEO of Stack OverflowRanking probability taskProbability…why are they different?Can this conditional probability be answered using Bayesian Theorem (or at all) with the information givenProbability Question, choosing a favorable caseExpected Exponential Times: Extended Memoryless Property?Poor Luck in Fantasy FootballConditional Probability going wrongCan someone explain to me why hot hand phenomenon is considered a fallacy?Probability of final outcome of a game of two halvesTwo random sets, how to formulate what percent of set A is bigger than set B.
"In the right combination" vs "with the right combination"?
Received an invoice from my ex-employer billing me for training; how to handle?
Sending manuscript to multiple publishers
Can I run my washing machine drain line into a condensate pump so it drains better?
If the heap is initialized for security, then why is the stack uninitialized?
How to safely derail a train during transit?
Inappropriate reference requests from Journal reviewers
If/When UK leaves the EU, can a future goverment conduct a referendum to join the EU?
How do scammers retract money, while you can’t?
What is the result of assigning to std::vector<T>::begin()?
How does the mv command work with external drives?
Unreliable Magic - Is it worth it?
In the bitcoin scripting language, how can I access other outputs of the transaction? Or how else can I limit how the coins may be spent?
Is it possible to search for a directory/file combination?
What benefits would be gained by using human laborers instead of drones in deep sea mining?
Contours of a clandestine nature
Return the Closest Prime Number
How to avoid supervisors with prejudiced views?
Bold, vivid family
Would a completely good Muggle be able to use a wand?
What connection does MS Office have to Netscape Navigator?
Real integral using residue theorem - why doesn't this work?
Several mode to write the symbol of a vector
What flight has the highest ratio of time difference to flight time?
Probability high school math competition problem
The Next CEO of Stack OverflowRanking probability taskProbability…why are they different?Can this conditional probability be answered using Bayesian Theorem (or at all) with the information givenProbability Question, choosing a favorable caseExpected Exponential Times: Extended Memoryless Property?Poor Luck in Fantasy FootballConditional Probability going wrongCan someone explain to me why hot hand phenomenon is considered a fallacy?Probability of final outcome of a game of two halvesTwo random sets, how to formulate what percent of set A is bigger than set B.
$begingroup$
Team A and Team B are playing basketball.
Team A starts with the ball, and the ball alternates between the two teams.
When a team has the ball, they have a 50% chance of scoring 1 point.
Regardless of whether or not they score, the ball is given to the other team after they attempt to score.
What is the probability that team A will score 5 points before Team B scores any?
So far I got (1/2)^9 + (1/2)^11 * ((6 choose 1) - 1) + (1/2)^13 * ((7 choose 2) - 1) + ...
I don’t know how to simplify this infinite series or maybe there is better way to solve it
probability probability-theory probability-distributions conditional-probability
$endgroup$
add a comment |
$begingroup$
Team A and Team B are playing basketball.
Team A starts with the ball, and the ball alternates between the two teams.
When a team has the ball, they have a 50% chance of scoring 1 point.
Regardless of whether or not they score, the ball is given to the other team after they attempt to score.
What is the probability that team A will score 5 points before Team B scores any?
So far I got (1/2)^9 + (1/2)^11 * ((6 choose 1) - 1) + (1/2)^13 * ((7 choose 2) - 1) + ...
I don’t know how to simplify this infinite series or maybe there is better way to solve it
probability probability-theory probability-distributions conditional-probability
$endgroup$
add a comment |
$begingroup$
Team A and Team B are playing basketball.
Team A starts with the ball, and the ball alternates between the two teams.
When a team has the ball, they have a 50% chance of scoring 1 point.
Regardless of whether or not they score, the ball is given to the other team after they attempt to score.
What is the probability that team A will score 5 points before Team B scores any?
So far I got (1/2)^9 + (1/2)^11 * ((6 choose 1) - 1) + (1/2)^13 * ((7 choose 2) - 1) + ...
I don’t know how to simplify this infinite series or maybe there is better way to solve it
probability probability-theory probability-distributions conditional-probability
$endgroup$
Team A and Team B are playing basketball.
Team A starts with the ball, and the ball alternates between the two teams.
When a team has the ball, they have a 50% chance of scoring 1 point.
Regardless of whether or not they score, the ball is given to the other team after they attempt to score.
What is the probability that team A will score 5 points before Team B scores any?
So far I got (1/2)^9 + (1/2)^11 * ((6 choose 1) - 1) + (1/2)^13 * ((7 choose 2) - 1) + ...
I don’t know how to simplify this infinite series or maybe there is better way to solve it
probability probability-theory probability-distributions conditional-probability
probability probability-theory probability-distributions conditional-probability
asked Mar 18 at 21:58
user653261user653261
411
411
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
There is a nice way to solve this recursively. Let $a_n$ be the probability that team $A$ scores $n$ points before team $B$ scores any. You want $a_5$.
There are two ways this can occur; either $A$ makes the basket, $B$ misses, and then $A$ makes $n-1$ baskets before $B$ makes any, or $A$ misses, $B$ misses, and then $A$ makes $n$ baskets before $B$ makes any. Therefore,
$$
a_n=frac14a_n-1+frac14a_n,tag1
$$
holds for all $nge 2$. However, $a_1$ behaves a little differently; you instead have
$$
a_1=frac12+frac14 a_1tag2
$$
$(2)$ lets you solve for $a_1$, and then you can use that with $(1)$ to get $a_2$, then $a_3$, then $a_4$, then $a_5.$
Here is a more direct method. Initially, there are four possibilities for how the first two shots go:
- Both teams make it.
- A misses, B makes it.
- A makes it, B misses.
- Both teams miss.
If $1$ or $2$ occurs, then team $A$ immediately fails to make $5$ baskets before $B$ makes $1$. If $4$ occurs, then we try again. Since this is repeated until $4$ does not occur, we can ignore $4$; effectively, there are three equally likely options, and we need option $3$.
So, with probability $1/3$, $A$ makes a basket and $B$ misses. Repeat this three more times, and we see there is a $(1/3)^4$ chance that $A$ makes four baskets before $B$ makes any. For the last basket, both options $1$ and $3$ are favorable to $A$, so the probability is $2/3$ for the last basket. Overall, the probability is $(1/3)^4cdot (2/3)$.
$endgroup$
$begingroup$
Thx a lot for both answers especially the direct method. Great solution since easy to understand
$endgroup$
– user653261
Mar 19 at 22:33
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
);
);
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%2f3153374%2fprobability-high-school-math-competition-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$
There is a nice way to solve this recursively. Let $a_n$ be the probability that team $A$ scores $n$ points before team $B$ scores any. You want $a_5$.
There are two ways this can occur; either $A$ makes the basket, $B$ misses, and then $A$ makes $n-1$ baskets before $B$ makes any, or $A$ misses, $B$ misses, and then $A$ makes $n$ baskets before $B$ makes any. Therefore,
$$
a_n=frac14a_n-1+frac14a_n,tag1
$$
holds for all $nge 2$. However, $a_1$ behaves a little differently; you instead have
$$
a_1=frac12+frac14 a_1tag2
$$
$(2)$ lets you solve for $a_1$, and then you can use that with $(1)$ to get $a_2$, then $a_3$, then $a_4$, then $a_5.$
Here is a more direct method. Initially, there are four possibilities for how the first two shots go:
- Both teams make it.
- A misses, B makes it.
- A makes it, B misses.
- Both teams miss.
If $1$ or $2$ occurs, then team $A$ immediately fails to make $5$ baskets before $B$ makes $1$. If $4$ occurs, then we try again. Since this is repeated until $4$ does not occur, we can ignore $4$; effectively, there are three equally likely options, and we need option $3$.
So, with probability $1/3$, $A$ makes a basket and $B$ misses. Repeat this three more times, and we see there is a $(1/3)^4$ chance that $A$ makes four baskets before $B$ makes any. For the last basket, both options $1$ and $3$ are favorable to $A$, so the probability is $2/3$ for the last basket. Overall, the probability is $(1/3)^4cdot (2/3)$.
$endgroup$
$begingroup$
Thx a lot for both answers especially the direct method. Great solution since easy to understand
$endgroup$
– user653261
Mar 19 at 22:33
add a comment |
$begingroup$
There is a nice way to solve this recursively. Let $a_n$ be the probability that team $A$ scores $n$ points before team $B$ scores any. You want $a_5$.
There are two ways this can occur; either $A$ makes the basket, $B$ misses, and then $A$ makes $n-1$ baskets before $B$ makes any, or $A$ misses, $B$ misses, and then $A$ makes $n$ baskets before $B$ makes any. Therefore,
$$
a_n=frac14a_n-1+frac14a_n,tag1
$$
holds for all $nge 2$. However, $a_1$ behaves a little differently; you instead have
$$
a_1=frac12+frac14 a_1tag2
$$
$(2)$ lets you solve for $a_1$, and then you can use that with $(1)$ to get $a_2$, then $a_3$, then $a_4$, then $a_5.$
Here is a more direct method. Initially, there are four possibilities for how the first two shots go:
- Both teams make it.
- A misses, B makes it.
- A makes it, B misses.
- Both teams miss.
If $1$ or $2$ occurs, then team $A$ immediately fails to make $5$ baskets before $B$ makes $1$. If $4$ occurs, then we try again. Since this is repeated until $4$ does not occur, we can ignore $4$; effectively, there are three equally likely options, and we need option $3$.
So, with probability $1/3$, $A$ makes a basket and $B$ misses. Repeat this three more times, and we see there is a $(1/3)^4$ chance that $A$ makes four baskets before $B$ makes any. For the last basket, both options $1$ and $3$ are favorable to $A$, so the probability is $2/3$ for the last basket. Overall, the probability is $(1/3)^4cdot (2/3)$.
$endgroup$
$begingroup$
Thx a lot for both answers especially the direct method. Great solution since easy to understand
$endgroup$
– user653261
Mar 19 at 22:33
add a comment |
$begingroup$
There is a nice way to solve this recursively. Let $a_n$ be the probability that team $A$ scores $n$ points before team $B$ scores any. You want $a_5$.
There are two ways this can occur; either $A$ makes the basket, $B$ misses, and then $A$ makes $n-1$ baskets before $B$ makes any, or $A$ misses, $B$ misses, and then $A$ makes $n$ baskets before $B$ makes any. Therefore,
$$
a_n=frac14a_n-1+frac14a_n,tag1
$$
holds for all $nge 2$. However, $a_1$ behaves a little differently; you instead have
$$
a_1=frac12+frac14 a_1tag2
$$
$(2)$ lets you solve for $a_1$, and then you can use that with $(1)$ to get $a_2$, then $a_3$, then $a_4$, then $a_5.$
Here is a more direct method. Initially, there are four possibilities for how the first two shots go:
- Both teams make it.
- A misses, B makes it.
- A makes it, B misses.
- Both teams miss.
If $1$ or $2$ occurs, then team $A$ immediately fails to make $5$ baskets before $B$ makes $1$. If $4$ occurs, then we try again. Since this is repeated until $4$ does not occur, we can ignore $4$; effectively, there are three equally likely options, and we need option $3$.
So, with probability $1/3$, $A$ makes a basket and $B$ misses. Repeat this three more times, and we see there is a $(1/3)^4$ chance that $A$ makes four baskets before $B$ makes any. For the last basket, both options $1$ and $3$ are favorable to $A$, so the probability is $2/3$ for the last basket. Overall, the probability is $(1/3)^4cdot (2/3)$.
$endgroup$
There is a nice way to solve this recursively. Let $a_n$ be the probability that team $A$ scores $n$ points before team $B$ scores any. You want $a_5$.
There are two ways this can occur; either $A$ makes the basket, $B$ misses, and then $A$ makes $n-1$ baskets before $B$ makes any, or $A$ misses, $B$ misses, and then $A$ makes $n$ baskets before $B$ makes any. Therefore,
$$
a_n=frac14a_n-1+frac14a_n,tag1
$$
holds for all $nge 2$. However, $a_1$ behaves a little differently; you instead have
$$
a_1=frac12+frac14 a_1tag2
$$
$(2)$ lets you solve for $a_1$, and then you can use that with $(1)$ to get $a_2$, then $a_3$, then $a_4$, then $a_5.$
Here is a more direct method. Initially, there are four possibilities for how the first two shots go:
- Both teams make it.
- A misses, B makes it.
- A makes it, B misses.
- Both teams miss.
If $1$ or $2$ occurs, then team $A$ immediately fails to make $5$ baskets before $B$ makes $1$. If $4$ occurs, then we try again. Since this is repeated until $4$ does not occur, we can ignore $4$; effectively, there are three equally likely options, and we need option $3$.
So, with probability $1/3$, $A$ makes a basket and $B$ misses. Repeat this three more times, and we see there is a $(1/3)^4$ chance that $A$ makes four baskets before $B$ makes any. For the last basket, both options $1$ and $3$ are favorable to $A$, so the probability is $2/3$ for the last basket. Overall, the probability is $(1/3)^4cdot (2/3)$.
edited Mar 18 at 22:40
answered Mar 18 at 22:05
Mike EarnestMike Earnest
26.2k22151
26.2k22151
$begingroup$
Thx a lot for both answers especially the direct method. Great solution since easy to understand
$endgroup$
– user653261
Mar 19 at 22:33
add a comment |
$begingroup$
Thx a lot for both answers especially the direct method. Great solution since easy to understand
$endgroup$
– user653261
Mar 19 at 22:33
$begingroup$
Thx a lot for both answers especially the direct method. Great solution since easy to understand
$endgroup$
– user653261
Mar 19 at 22:33
$begingroup$
Thx a lot for both answers especially the direct method. Great solution since easy to understand
$endgroup$
– user653261
Mar 19 at 22:33
add a comment |
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%2f3153374%2fprobability-high-school-math-competition-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