Unfair coin question The 2019 Stack Overflow Developer Survey Results Are InUnfair coin flippingGiven $5$ heads in $17$ coin flips of a biased coin, what is the probability at least $3$ of those heads occured in the first $10$ flips?If I flip a nonbiased coin 13 times what is the probability that I get tails 10 times?A coin is flipped 6 times. What is the probability that heads and tails occur an equal number of times?Probability of Unfair coin with p between (0, 1) and find # of heads s.t. it is even or |3.probability that we stop flipping after exactly ten flips in a biased coin flipping?What is the probability of heads in unfair coin when you flip the coin ten times?binomial distribution unfair coinFlip an unfair coin. Find: (a) p, exactly 7 heads (b) p, exactly 7 tails (c) p, atleast 7 headsCoin flipping and Bayes' theorem… but where does binomial theorem come in?
Why was M87 targetted for the Event Horizon Telescope instead of Sagittarius A*?
Why is the maximum length of OpenWrt’s root password 8 characters?
Can a flute soloist sit?
What does Linus Torvalds mean when he says that Git "never ever" tracks a file?
Return to UK after being refused entry years previously
Deal with toxic manager when you can't quit
Apparent duplicates between Haynes service instructions and MOT
Are there incongruent pythagorean triangles with the same perimeter and same area?
What is the accessibility of a package's `Private` context variables?
What is the meaning of Triage in Cybersec world?
Geography at the pixel level
Is flight data recorder erased after every flight?
What is the most effective way of iterating a std::vector and why?
Am I thawing this London Broil safely?
Where to refill my bottle in India?
Right tool to dig six foot holes?
What do the Banks children have against barley water?
The difference between dialogue marks
Multiply Two Integer Polynomials
How can I autofill dates in Excel excluding Sunday?
Did Section 31 appear in Star Trek: The Next Generation?
Who coined the term "madman theory"?
Does a dangling wire really electrocute me if I'm standing in water?
How come people say “Would of”?
Unfair coin question
The 2019 Stack Overflow Developer Survey Results Are InUnfair coin flippingGiven $5$ heads in $17$ coin flips of a biased coin, what is the probability at least $3$ of those heads occured in the first $10$ flips?If I flip a nonbiased coin 13 times what is the probability that I get tails 10 times?A coin is flipped 6 times. What is the probability that heads and tails occur an equal number of times?Probability of Unfair coin with p between (0, 1) and find # of heads s.t. it is even or |3.probability that we stop flipping after exactly ten flips in a biased coin flipping?What is the probability of heads in unfair coin when you flip the coin ten times?binomial distribution unfair coinFlip an unfair coin. Find: (a) p, exactly 7 heads (b) p, exactly 7 tails (c) p, atleast 7 headsCoin flipping and Bayes' theorem… but where does binomial theorem come in?
$begingroup$
Supposed that you flip an unfair coin with the probability of heads being $p(rm heads) = 3/4$ and the probability of tails being $1/4$ a total of ten times. How do you find the possibility of getting exactly $x$ heads and at least $x$ heads?
discrete-mathematics probability-distributions binomial-distribution
New contributor
Mark is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
$endgroup$
add a comment |
$begingroup$
Supposed that you flip an unfair coin with the probability of heads being $p(rm heads) = 3/4$ and the probability of tails being $1/4$ a total of ten times. How do you find the possibility of getting exactly $x$ heads and at least $x$ heads?
discrete-mathematics probability-distributions binomial-distribution
New contributor
Mark is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
$endgroup$
add a comment |
$begingroup$
Supposed that you flip an unfair coin with the probability of heads being $p(rm heads) = 3/4$ and the probability of tails being $1/4$ a total of ten times. How do you find the possibility of getting exactly $x$ heads and at least $x$ heads?
discrete-mathematics probability-distributions binomial-distribution
New contributor
Mark is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
$endgroup$
Supposed that you flip an unfair coin with the probability of heads being $p(rm heads) = 3/4$ and the probability of tails being $1/4$ a total of ten times. How do you find the possibility of getting exactly $x$ heads and at least $x$ heads?
discrete-mathematics probability-distributions binomial-distribution
discrete-mathematics probability-distributions binomial-distribution
New contributor
Mark is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Mark is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited Apr 6 at 20:27
David G. Stork
12.2k41836
12.2k41836
New contributor
Mark is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked Apr 6 at 19:50
MarkMark
32
32
New contributor
Mark is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Mark is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Mark is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
$begingroup$
In general, if the probability of heads on a given toss is $p$, and you toss $n$ times, the probability of getting exactly $x$ heads is
$$bbox[10px,#ffd]P(textexactly xtext heads)=binomnxp^x (1-p)^n-x,quad x=0,1,ldots,n.$$
To get the probability of getting at least $x$ heads, you sum up the probability of getting exactly $x$ heads, $x+1$ heads, ..., $n$ heads. So
$$bbox[10px,#ffd]P(textat least xtext heads)
=sum_k=x^nbinomnkp^k(1-p)^n-k.$$
If you want probabilities for tails instead of heads, replace every $p$ above with $1-p$. Note that $n=10$ and $p=3/4$ in your particular example.
By the way, the number of heads you get is said to follow a binomial distribution. See the Wikipedia page for more information.
$endgroup$
add a comment |
$begingroup$
Hint: use the binomial distribution. See, in particular, the examples on the Wikipedia page.
$endgroup$
add a comment |
$begingroup$
The probability of getting exactly $x$ tails is $binom 10 x left (frac 3 4 right )^x left ( frac 1 4 right )^10-x.$
The probability of getting at least $x$ many heads is $sumlimits_k=x^10 binom 10 k left (frac 3 4 right )^k left ( frac 1 4 right )^10-k.$
$endgroup$
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
);
);
Mark 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%2f3177371%2funfair-coin-question%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
In general, if the probability of heads on a given toss is $p$, and you toss $n$ times, the probability of getting exactly $x$ heads is
$$bbox[10px,#ffd]P(textexactly xtext heads)=binomnxp^x (1-p)^n-x,quad x=0,1,ldots,n.$$
To get the probability of getting at least $x$ heads, you sum up the probability of getting exactly $x$ heads, $x+1$ heads, ..., $n$ heads. So
$$bbox[10px,#ffd]P(textat least xtext heads)
=sum_k=x^nbinomnkp^k(1-p)^n-k.$$
If you want probabilities for tails instead of heads, replace every $p$ above with $1-p$. Note that $n=10$ and $p=3/4$ in your particular example.
By the way, the number of heads you get is said to follow a binomial distribution. See the Wikipedia page for more information.
$endgroup$
add a comment |
$begingroup$
In general, if the probability of heads on a given toss is $p$, and you toss $n$ times, the probability of getting exactly $x$ heads is
$$bbox[10px,#ffd]P(textexactly xtext heads)=binomnxp^x (1-p)^n-x,quad x=0,1,ldots,n.$$
To get the probability of getting at least $x$ heads, you sum up the probability of getting exactly $x$ heads, $x+1$ heads, ..., $n$ heads. So
$$bbox[10px,#ffd]P(textat least xtext heads)
=sum_k=x^nbinomnkp^k(1-p)^n-k.$$
If you want probabilities for tails instead of heads, replace every $p$ above with $1-p$. Note that $n=10$ and $p=3/4$ in your particular example.
By the way, the number of heads you get is said to follow a binomial distribution. See the Wikipedia page for more information.
$endgroup$
add a comment |
$begingroup$
In general, if the probability of heads on a given toss is $p$, and you toss $n$ times, the probability of getting exactly $x$ heads is
$$bbox[10px,#ffd]P(textexactly xtext heads)=binomnxp^x (1-p)^n-x,quad x=0,1,ldots,n.$$
To get the probability of getting at least $x$ heads, you sum up the probability of getting exactly $x$ heads, $x+1$ heads, ..., $n$ heads. So
$$bbox[10px,#ffd]P(textat least xtext heads)
=sum_k=x^nbinomnkp^k(1-p)^n-k.$$
If you want probabilities for tails instead of heads, replace every $p$ above with $1-p$. Note that $n=10$ and $p=3/4$ in your particular example.
By the way, the number of heads you get is said to follow a binomial distribution. See the Wikipedia page for more information.
$endgroup$
In general, if the probability of heads on a given toss is $p$, and you toss $n$ times, the probability of getting exactly $x$ heads is
$$bbox[10px,#ffd]P(textexactly xtext heads)=binomnxp^x (1-p)^n-x,quad x=0,1,ldots,n.$$
To get the probability of getting at least $x$ heads, you sum up the probability of getting exactly $x$ heads, $x+1$ heads, ..., $n$ heads. So
$$bbox[10px,#ffd]P(textat least xtext heads)
=sum_k=x^nbinomnkp^k(1-p)^n-k.$$
If you want probabilities for tails instead of heads, replace every $p$ above with $1-p$. Note that $n=10$ and $p=3/4$ in your particular example.
By the way, the number of heads you get is said to follow a binomial distribution. See the Wikipedia page for more information.
edited Apr 6 at 20:01
answered Apr 6 at 19:55
Minus One-TwelfthMinus One-Twelfth
3,388413
3,388413
add a comment |
add a comment |
$begingroup$
Hint: use the binomial distribution. See, in particular, the examples on the Wikipedia page.
$endgroup$
add a comment |
$begingroup$
Hint: use the binomial distribution. See, in particular, the examples on the Wikipedia page.
$endgroup$
add a comment |
$begingroup$
Hint: use the binomial distribution. See, in particular, the examples on the Wikipedia page.
$endgroup$
Hint: use the binomial distribution. See, in particular, the examples on the Wikipedia page.
answered Apr 6 at 19:52
parsiadparsiad
18.8k32554
18.8k32554
add a comment |
add a comment |
$begingroup$
The probability of getting exactly $x$ tails is $binom 10 x left (frac 3 4 right )^x left ( frac 1 4 right )^10-x.$
The probability of getting at least $x$ many heads is $sumlimits_k=x^10 binom 10 k left (frac 3 4 right )^k left ( frac 1 4 right )^10-k.$
$endgroup$
add a comment |
$begingroup$
The probability of getting exactly $x$ tails is $binom 10 x left (frac 3 4 right )^x left ( frac 1 4 right )^10-x.$
The probability of getting at least $x$ many heads is $sumlimits_k=x^10 binom 10 k left (frac 3 4 right )^k left ( frac 1 4 right )^10-k.$
$endgroup$
add a comment |
$begingroup$
The probability of getting exactly $x$ tails is $binom 10 x left (frac 3 4 right )^x left ( frac 1 4 right )^10-x.$
The probability of getting at least $x$ many heads is $sumlimits_k=x^10 binom 10 k left (frac 3 4 right )^k left ( frac 1 4 right )^10-k.$
$endgroup$
The probability of getting exactly $x$ tails is $binom 10 x left (frac 3 4 right )^x left ( frac 1 4 right )^10-x.$
The probability of getting at least $x$ many heads is $sumlimits_k=x^10 binom 10 k left (frac 3 4 right )^k left ( frac 1 4 right )^10-k.$
answered Apr 6 at 19:54
Dbchatto67Dbchatto67
2,753622
2,753622
add a comment |
add a comment |
Mark is a new contributor. Be nice, and check out our Code of Conduct.
Mark is a new contributor. Be nice, and check out our Code of Conduct.
Mark is a new contributor. Be nice, and check out our Code of Conduct.
Mark 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%2f3177371%2funfair-coin-question%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