Probability Distributions (Tree Diagram)
$begingroup$
Satish picks a card at random from an ordinary pack. If the card is ace, he stops; if not, he continues to pick cards at random, without replacement, until either an ace is picked, or four cards have been drawn. The random variable C is the total number of cards drawn. Construct a tree diagram to illustrate the possible outcomes of the experiment, and use it to calculate the probability distribution of C.
Can anyone explain this question for me? Thanks.
probability probability-distributions
$endgroup$
add a comment |
$begingroup$
Satish picks a card at random from an ordinary pack. If the card is ace, he stops; if not, he continues to pick cards at random, without replacement, until either an ace is picked, or four cards have been drawn. The random variable C is the total number of cards drawn. Construct a tree diagram to illustrate the possible outcomes of the experiment, and use it to calculate the probability distribution of C.
Can anyone explain this question for me? Thanks.
probability probability-distributions
$endgroup$
$begingroup$
This is not (probability-distributions).
$endgroup$
– Brian Tung
Aug 25 '15 at 16:38
add a comment |
$begingroup$
Satish picks a card at random from an ordinary pack. If the card is ace, he stops; if not, he continues to pick cards at random, without replacement, until either an ace is picked, or four cards have been drawn. The random variable C is the total number of cards drawn. Construct a tree diagram to illustrate the possible outcomes of the experiment, and use it to calculate the probability distribution of C.
Can anyone explain this question for me? Thanks.
probability probability-distributions
$endgroup$
Satish picks a card at random from an ordinary pack. If the card is ace, he stops; if not, he continues to pick cards at random, without replacement, until either an ace is picked, or four cards have been drawn. The random variable C is the total number of cards drawn. Construct a tree diagram to illustrate the possible outcomes of the experiment, and use it to calculate the probability distribution of C.
Can anyone explain this question for me? Thanks.
probability probability-distributions
probability probability-distributions
asked Aug 25 '15 at 16:33
MathxxMathxx
3,41811544
3,41811544
$begingroup$
This is not (probability-distributions).
$endgroup$
– Brian Tung
Aug 25 '15 at 16:38
add a comment |
$begingroup$
This is not (probability-distributions).
$endgroup$
– Brian Tung
Aug 25 '15 at 16:38
$begingroup$
This is not (probability-distributions).
$endgroup$
– Brian Tung
Aug 25 '15 at 16:38
$begingroup$
This is not (probability-distributions).
$endgroup$
– Brian Tung
Aug 25 '15 at 16:38
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
Perhaps it would be easier to write it out as a piece of code—viz.,
if first card is an ace
C = 1
else if second card is an ace
C = 2
else if third card is an ace
C = 3
else
C = 4
Now, draw the above as a tree. Start with a "$52$ cards, $4$ aces" node, and have two branches coming out of it: one for ace, and one for not-ace. The ace branch leads to a node with $C = 1$; this node is a leaf. The not-ace branch leads to another node "$51$ cards, $4$ aces" with two branches: one for ace, and one for not-ace. The ace branch leads to a node with $C = 2$; this node is a leaf. Again, the not-ace branch leads to another node with two branches. And so on.
Nexct, label each branch with its associated probability. For instance, the first two branches have probability $4/52 = 1/13$ and $48/52 = 12/13$, respectively. Finally, use independence and multiplication to determine the probability of ending up at each leaf node.
$endgroup$
add a comment |
$begingroup$
You are being asked to construct a Decision tree based on wether you draw an ace or not.
You will have four nodes, for one, two, three, or four cards drawn, as well as 'start' and 'stop'. The decision after each node is "Was the last card an ace?"; if "yes", report the count then go to 'stop', if "no" then move to the next draw. But automatically report "4" and go to 'stop' if you reach the fourth draw.
To calculate the probability of each result, evaluate the probability of each decision's answer needed to reach that result, and multiply.
For bonus points, instead of a chain, include a loop decision in the process.
$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
});
}
});
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%2f1409325%2fprobability-distributions-tree-diagram%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
Perhaps it would be easier to write it out as a piece of code—viz.,
if first card is an ace
C = 1
else if second card is an ace
C = 2
else if third card is an ace
C = 3
else
C = 4
Now, draw the above as a tree. Start with a "$52$ cards, $4$ aces" node, and have two branches coming out of it: one for ace, and one for not-ace. The ace branch leads to a node with $C = 1$; this node is a leaf. The not-ace branch leads to another node "$51$ cards, $4$ aces" with two branches: one for ace, and one for not-ace. The ace branch leads to a node with $C = 2$; this node is a leaf. Again, the not-ace branch leads to another node with two branches. And so on.
Nexct, label each branch with its associated probability. For instance, the first two branches have probability $4/52 = 1/13$ and $48/52 = 12/13$, respectively. Finally, use independence and multiplication to determine the probability of ending up at each leaf node.
$endgroup$
add a comment |
$begingroup$
Perhaps it would be easier to write it out as a piece of code—viz.,
if first card is an ace
C = 1
else if second card is an ace
C = 2
else if third card is an ace
C = 3
else
C = 4
Now, draw the above as a tree. Start with a "$52$ cards, $4$ aces" node, and have two branches coming out of it: one for ace, and one for not-ace. The ace branch leads to a node with $C = 1$; this node is a leaf. The not-ace branch leads to another node "$51$ cards, $4$ aces" with two branches: one for ace, and one for not-ace. The ace branch leads to a node with $C = 2$; this node is a leaf. Again, the not-ace branch leads to another node with two branches. And so on.
Nexct, label each branch with its associated probability. For instance, the first two branches have probability $4/52 = 1/13$ and $48/52 = 12/13$, respectively. Finally, use independence and multiplication to determine the probability of ending up at each leaf node.
$endgroup$
add a comment |
$begingroup$
Perhaps it would be easier to write it out as a piece of code—viz.,
if first card is an ace
C = 1
else if second card is an ace
C = 2
else if third card is an ace
C = 3
else
C = 4
Now, draw the above as a tree. Start with a "$52$ cards, $4$ aces" node, and have two branches coming out of it: one for ace, and one for not-ace. The ace branch leads to a node with $C = 1$; this node is a leaf. The not-ace branch leads to another node "$51$ cards, $4$ aces" with two branches: one for ace, and one for not-ace. The ace branch leads to a node with $C = 2$; this node is a leaf. Again, the not-ace branch leads to another node with two branches. And so on.
Nexct, label each branch with its associated probability. For instance, the first two branches have probability $4/52 = 1/13$ and $48/52 = 12/13$, respectively. Finally, use independence and multiplication to determine the probability of ending up at each leaf node.
$endgroup$
Perhaps it would be easier to write it out as a piece of code—viz.,
if first card is an ace
C = 1
else if second card is an ace
C = 2
else if third card is an ace
C = 3
else
C = 4
Now, draw the above as a tree. Start with a "$52$ cards, $4$ aces" node, and have two branches coming out of it: one for ace, and one for not-ace. The ace branch leads to a node with $C = 1$; this node is a leaf. The not-ace branch leads to another node "$51$ cards, $4$ aces" with two branches: one for ace, and one for not-ace. The ace branch leads to a node with $C = 2$; this node is a leaf. Again, the not-ace branch leads to another node with two branches. And so on.
Nexct, label each branch with its associated probability. For instance, the first two branches have probability $4/52 = 1/13$ and $48/52 = 12/13$, respectively. Finally, use independence and multiplication to determine the probability of ending up at each leaf node.
answered Aug 25 '15 at 16:44


Brian TungBrian Tung
26.2k32656
26.2k32656
add a comment |
add a comment |
$begingroup$
You are being asked to construct a Decision tree based on wether you draw an ace or not.
You will have four nodes, for one, two, three, or four cards drawn, as well as 'start' and 'stop'. The decision after each node is "Was the last card an ace?"; if "yes", report the count then go to 'stop', if "no" then move to the next draw. But automatically report "4" and go to 'stop' if you reach the fourth draw.
To calculate the probability of each result, evaluate the probability of each decision's answer needed to reach that result, and multiply.
For bonus points, instead of a chain, include a loop decision in the process.
$endgroup$
add a comment |
$begingroup$
You are being asked to construct a Decision tree based on wether you draw an ace or not.
You will have four nodes, for one, two, three, or four cards drawn, as well as 'start' and 'stop'. The decision after each node is "Was the last card an ace?"; if "yes", report the count then go to 'stop', if "no" then move to the next draw. But automatically report "4" and go to 'stop' if you reach the fourth draw.
To calculate the probability of each result, evaluate the probability of each decision's answer needed to reach that result, and multiply.
For bonus points, instead of a chain, include a loop decision in the process.
$endgroup$
add a comment |
$begingroup$
You are being asked to construct a Decision tree based on wether you draw an ace or not.
You will have four nodes, for one, two, three, or four cards drawn, as well as 'start' and 'stop'. The decision after each node is "Was the last card an ace?"; if "yes", report the count then go to 'stop', if "no" then move to the next draw. But automatically report "4" and go to 'stop' if you reach the fourth draw.
To calculate the probability of each result, evaluate the probability of each decision's answer needed to reach that result, and multiply.
For bonus points, instead of a chain, include a loop decision in the process.
$endgroup$
You are being asked to construct a Decision tree based on wether you draw an ace or not.
You will have four nodes, for one, two, three, or four cards drawn, as well as 'start' and 'stop'. The decision after each node is "Was the last card an ace?"; if "yes", report the count then go to 'stop', if "no" then move to the next draw. But automatically report "4" and go to 'stop' if you reach the fourth draw.
To calculate the probability of each result, evaluate the probability of each decision's answer needed to reach that result, and multiply.
For bonus points, instead of a chain, include a loop decision in the process.
answered Aug 26 '15 at 2:08


Graham KempGraham Kemp
87.9k43578
87.9k43578
add a comment |
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%2f1409325%2fprobability-distributions-tree-diagram%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
$begingroup$
This is not (probability-distributions).
$endgroup$
– Brian Tung
Aug 25 '15 at 16:38