Discrete Probability: Expected value of random variable
Question: You flip a fair red coin once, and you flip a fair blue coin once, independently of each other.
Define the random variables:
X = {1 if the red coin flip resulted in heads, 0 if the red coin flip resulted in tails}
Y = {1 if the blue coin flip resulted in heads, 0 if the blue coin flip resulted in tails}
and Z = min(X,Y)
What is the expected value E(Z) of the random variable Z?
Answer: 0.25
Attempt:
For random variable x=1 correlates to pr(x) = 0.5 and x = 0 correlates to pr(x) = 0.5. Same with the y's.
Z=min(X,Y) = would just be either since their the same?
So, using the expected value formula I get that (0.5*1) + (0.5*0) = 0.5
probability probability-theory discrete-mathematics random-variables expected-value
add a comment |
Question: You flip a fair red coin once, and you flip a fair blue coin once, independently of each other.
Define the random variables:
X = {1 if the red coin flip resulted in heads, 0 if the red coin flip resulted in tails}
Y = {1 if the blue coin flip resulted in heads, 0 if the blue coin flip resulted in tails}
and Z = min(X,Y)
What is the expected value E(Z) of the random variable Z?
Answer: 0.25
Attempt:
For random variable x=1 correlates to pr(x) = 0.5 and x = 0 correlates to pr(x) = 0.5. Same with the y's.
Z=min(X,Y) = would just be either since their the same?
So, using the expected value formula I get that (0.5*1) + (0.5*0) = 0.5
probability probability-theory discrete-mathematics random-variables expected-value
add a comment |
Question: You flip a fair red coin once, and you flip a fair blue coin once, independently of each other.
Define the random variables:
X = {1 if the red coin flip resulted in heads, 0 if the red coin flip resulted in tails}
Y = {1 if the blue coin flip resulted in heads, 0 if the blue coin flip resulted in tails}
and Z = min(X,Y)
What is the expected value E(Z) of the random variable Z?
Answer: 0.25
Attempt:
For random variable x=1 correlates to pr(x) = 0.5 and x = 0 correlates to pr(x) = 0.5. Same with the y's.
Z=min(X,Y) = would just be either since their the same?
So, using the expected value formula I get that (0.5*1) + (0.5*0) = 0.5
probability probability-theory discrete-mathematics random-variables expected-value
Question: You flip a fair red coin once, and you flip a fair blue coin once, independently of each other.
Define the random variables:
X = {1 if the red coin flip resulted in heads, 0 if the red coin flip resulted in tails}
Y = {1 if the blue coin flip resulted in heads, 0 if the blue coin flip resulted in tails}
and Z = min(X,Y)
What is the expected value E(Z) of the random variable Z?
Answer: 0.25
Attempt:
For random variable x=1 correlates to pr(x) = 0.5 and x = 0 correlates to pr(x) = 0.5. Same with the y's.
Z=min(X,Y) = would just be either since their the same?
So, using the expected value formula I get that (0.5*1) + (0.5*0) = 0.5
probability probability-theory discrete-mathematics random-variables expected-value
probability probability-theory discrete-mathematics random-variables expected-value
asked Nov 27 '18 at 2:12
Toby
1577
1577
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
$Z$ is an indicator variable and it takes value $1$ when both get heads.
Hence $$E[Z]=P(Z=1) = 0.5^2=0.25$$
Remark:
The assumption that $Z$ would follows the same distribution as $X$ or $Y$ is false.
but why do you assume it takes 1 in your calculation? I don't follow the calculation
– Toby
Nov 27 '18 at 2:22
2
the expectation of an indicator variable is equal to the probability that it takes value $1$. That is $E[Z]=0cdot P(Z=0)+1 cdot P(Z=1)=P(Z=1)$.
– Siong Thye Goh
Nov 27 '18 at 2:23
the expectation of an indicator variable is equal to the probability that it takes value 1." is this always true?
– Toby
Nov 27 '18 at 2:30
Proof is given in the previous comment right?
– Siong Thye Goh
Nov 27 '18 at 2:34
Just wondering, for any 3 random variables say X,Y,Z would E(min(X,Y,Z)) = min(E(X),(Y),(Z))? Would this be true?
– Toby
Nov 27 '18 at 15:40
|
show 3 more comments
It is a fallacy to assume that $X$ and $Y$ are the “same” because their probability distributions have the same weights.
If the coins are independent, then by the definition of independence,
$$
P(X=1 text{ and } Y=1)
= P(X=1) P(Y=1).
$$
There are three other possible outcomes, including
$X=1$ and $Y=0$;
$X=0$ and $Y=1$;
$X=0$ and $Y=0.$
The probability of each of those events can be worked out similarly to
$P(X=1 text{ and } Y=1).$
In all of those cases the final probability comes out to $0.25.$
But the case “$X=1$ and $Y=1$” is the only case in which $min(X,Y)=1.$
In every other case the result is $0.$
So altogether you have a $0.75$ chance of $0,$ not $0.5.$
Generally, for the indicator variable, does it always take in the value of 1? Are we always looking for the indicator variable to be 1? I'm confused about the indicator variable concept
– Toby
Nov 27 '18 at 2:46
1
"Indicator variable" is simply a convenient way for someone to say that a variable takes the value $1$ when a certain event occurs, and takes the value $0$ otherwise. That's all it is. All the variables $X,$ $Y,$ and $Z$ are indicator variables in this question, but it is the knowledge that you can only have outcomes $0$ or $1$ (due to the way the variables are defined) that makes them indicator variables, not the other way around.
– David K
Nov 27 '18 at 2:54
So, if the question states that the random variables are 1 if "this scenario" happens, do we always just compute the indicator variables expected value based on its value being the scenario where it's 1?
– Toby
Nov 27 '18 at 3:04
1
The expected value can be computed as in Siong Thye Goh's comment. It is based on the same formula you used yourself, but your mistake in your calculation was you assigned probability $0.5$ to the event $Z=1.$ That is incorrect. The event $Z=1$ has only probability $0.25.$
– David K
Nov 27 '18 at 3:18
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%2f3015236%2fdiscrete-probability-expected-value-of-random-variable%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
$Z$ is an indicator variable and it takes value $1$ when both get heads.
Hence $$E[Z]=P(Z=1) = 0.5^2=0.25$$
Remark:
The assumption that $Z$ would follows the same distribution as $X$ or $Y$ is false.
but why do you assume it takes 1 in your calculation? I don't follow the calculation
– Toby
Nov 27 '18 at 2:22
2
the expectation of an indicator variable is equal to the probability that it takes value $1$. That is $E[Z]=0cdot P(Z=0)+1 cdot P(Z=1)=P(Z=1)$.
– Siong Thye Goh
Nov 27 '18 at 2:23
the expectation of an indicator variable is equal to the probability that it takes value 1." is this always true?
– Toby
Nov 27 '18 at 2:30
Proof is given in the previous comment right?
– Siong Thye Goh
Nov 27 '18 at 2:34
Just wondering, for any 3 random variables say X,Y,Z would E(min(X,Y,Z)) = min(E(X),(Y),(Z))? Would this be true?
– Toby
Nov 27 '18 at 15:40
|
show 3 more comments
$Z$ is an indicator variable and it takes value $1$ when both get heads.
Hence $$E[Z]=P(Z=1) = 0.5^2=0.25$$
Remark:
The assumption that $Z$ would follows the same distribution as $X$ or $Y$ is false.
but why do you assume it takes 1 in your calculation? I don't follow the calculation
– Toby
Nov 27 '18 at 2:22
2
the expectation of an indicator variable is equal to the probability that it takes value $1$. That is $E[Z]=0cdot P(Z=0)+1 cdot P(Z=1)=P(Z=1)$.
– Siong Thye Goh
Nov 27 '18 at 2:23
the expectation of an indicator variable is equal to the probability that it takes value 1." is this always true?
– Toby
Nov 27 '18 at 2:30
Proof is given in the previous comment right?
– Siong Thye Goh
Nov 27 '18 at 2:34
Just wondering, for any 3 random variables say X,Y,Z would E(min(X,Y,Z)) = min(E(X),(Y),(Z))? Would this be true?
– Toby
Nov 27 '18 at 15:40
|
show 3 more comments
$Z$ is an indicator variable and it takes value $1$ when both get heads.
Hence $$E[Z]=P(Z=1) = 0.5^2=0.25$$
Remark:
The assumption that $Z$ would follows the same distribution as $X$ or $Y$ is false.
$Z$ is an indicator variable and it takes value $1$ when both get heads.
Hence $$E[Z]=P(Z=1) = 0.5^2=0.25$$
Remark:
The assumption that $Z$ would follows the same distribution as $X$ or $Y$ is false.
answered Nov 27 '18 at 2:15
Siong Thye Goh
99.4k1464117
99.4k1464117
but why do you assume it takes 1 in your calculation? I don't follow the calculation
– Toby
Nov 27 '18 at 2:22
2
the expectation of an indicator variable is equal to the probability that it takes value $1$. That is $E[Z]=0cdot P(Z=0)+1 cdot P(Z=1)=P(Z=1)$.
– Siong Thye Goh
Nov 27 '18 at 2:23
the expectation of an indicator variable is equal to the probability that it takes value 1." is this always true?
– Toby
Nov 27 '18 at 2:30
Proof is given in the previous comment right?
– Siong Thye Goh
Nov 27 '18 at 2:34
Just wondering, for any 3 random variables say X,Y,Z would E(min(X,Y,Z)) = min(E(X),(Y),(Z))? Would this be true?
– Toby
Nov 27 '18 at 15:40
|
show 3 more comments
but why do you assume it takes 1 in your calculation? I don't follow the calculation
– Toby
Nov 27 '18 at 2:22
2
the expectation of an indicator variable is equal to the probability that it takes value $1$. That is $E[Z]=0cdot P(Z=0)+1 cdot P(Z=1)=P(Z=1)$.
– Siong Thye Goh
Nov 27 '18 at 2:23
the expectation of an indicator variable is equal to the probability that it takes value 1." is this always true?
– Toby
Nov 27 '18 at 2:30
Proof is given in the previous comment right?
– Siong Thye Goh
Nov 27 '18 at 2:34
Just wondering, for any 3 random variables say X,Y,Z would E(min(X,Y,Z)) = min(E(X),(Y),(Z))? Would this be true?
– Toby
Nov 27 '18 at 15:40
but why do you assume it takes 1 in your calculation? I don't follow the calculation
– Toby
Nov 27 '18 at 2:22
but why do you assume it takes 1 in your calculation? I don't follow the calculation
– Toby
Nov 27 '18 at 2:22
2
2
the expectation of an indicator variable is equal to the probability that it takes value $1$. That is $E[Z]=0cdot P(Z=0)+1 cdot P(Z=1)=P(Z=1)$.
– Siong Thye Goh
Nov 27 '18 at 2:23
the expectation of an indicator variable is equal to the probability that it takes value $1$. That is $E[Z]=0cdot P(Z=0)+1 cdot P(Z=1)=P(Z=1)$.
– Siong Thye Goh
Nov 27 '18 at 2:23
the expectation of an indicator variable is equal to the probability that it takes value 1." is this always true?
– Toby
Nov 27 '18 at 2:30
the expectation of an indicator variable is equal to the probability that it takes value 1." is this always true?
– Toby
Nov 27 '18 at 2:30
Proof is given in the previous comment right?
– Siong Thye Goh
Nov 27 '18 at 2:34
Proof is given in the previous comment right?
– Siong Thye Goh
Nov 27 '18 at 2:34
Just wondering, for any 3 random variables say X,Y,Z would E(min(X,Y,Z)) = min(E(X),(Y),(Z))? Would this be true?
– Toby
Nov 27 '18 at 15:40
Just wondering, for any 3 random variables say X,Y,Z would E(min(X,Y,Z)) = min(E(X),(Y),(Z))? Would this be true?
– Toby
Nov 27 '18 at 15:40
|
show 3 more comments
It is a fallacy to assume that $X$ and $Y$ are the “same” because their probability distributions have the same weights.
If the coins are independent, then by the definition of independence,
$$
P(X=1 text{ and } Y=1)
= P(X=1) P(Y=1).
$$
There are three other possible outcomes, including
$X=1$ and $Y=0$;
$X=0$ and $Y=1$;
$X=0$ and $Y=0.$
The probability of each of those events can be worked out similarly to
$P(X=1 text{ and } Y=1).$
In all of those cases the final probability comes out to $0.25.$
But the case “$X=1$ and $Y=1$” is the only case in which $min(X,Y)=1.$
In every other case the result is $0.$
So altogether you have a $0.75$ chance of $0,$ not $0.5.$
Generally, for the indicator variable, does it always take in the value of 1? Are we always looking for the indicator variable to be 1? I'm confused about the indicator variable concept
– Toby
Nov 27 '18 at 2:46
1
"Indicator variable" is simply a convenient way for someone to say that a variable takes the value $1$ when a certain event occurs, and takes the value $0$ otherwise. That's all it is. All the variables $X,$ $Y,$ and $Z$ are indicator variables in this question, but it is the knowledge that you can only have outcomes $0$ or $1$ (due to the way the variables are defined) that makes them indicator variables, not the other way around.
– David K
Nov 27 '18 at 2:54
So, if the question states that the random variables are 1 if "this scenario" happens, do we always just compute the indicator variables expected value based on its value being the scenario where it's 1?
– Toby
Nov 27 '18 at 3:04
1
The expected value can be computed as in Siong Thye Goh's comment. It is based on the same formula you used yourself, but your mistake in your calculation was you assigned probability $0.5$ to the event $Z=1.$ That is incorrect. The event $Z=1$ has only probability $0.25.$
– David K
Nov 27 '18 at 3:18
add a comment |
It is a fallacy to assume that $X$ and $Y$ are the “same” because their probability distributions have the same weights.
If the coins are independent, then by the definition of independence,
$$
P(X=1 text{ and } Y=1)
= P(X=1) P(Y=1).
$$
There are three other possible outcomes, including
$X=1$ and $Y=0$;
$X=0$ and $Y=1$;
$X=0$ and $Y=0.$
The probability of each of those events can be worked out similarly to
$P(X=1 text{ and } Y=1).$
In all of those cases the final probability comes out to $0.25.$
But the case “$X=1$ and $Y=1$” is the only case in which $min(X,Y)=1.$
In every other case the result is $0.$
So altogether you have a $0.75$ chance of $0,$ not $0.5.$
Generally, for the indicator variable, does it always take in the value of 1? Are we always looking for the indicator variable to be 1? I'm confused about the indicator variable concept
– Toby
Nov 27 '18 at 2:46
1
"Indicator variable" is simply a convenient way for someone to say that a variable takes the value $1$ when a certain event occurs, and takes the value $0$ otherwise. That's all it is. All the variables $X,$ $Y,$ and $Z$ are indicator variables in this question, but it is the knowledge that you can only have outcomes $0$ or $1$ (due to the way the variables are defined) that makes them indicator variables, not the other way around.
– David K
Nov 27 '18 at 2:54
So, if the question states that the random variables are 1 if "this scenario" happens, do we always just compute the indicator variables expected value based on its value being the scenario where it's 1?
– Toby
Nov 27 '18 at 3:04
1
The expected value can be computed as in Siong Thye Goh's comment. It is based on the same formula you used yourself, but your mistake in your calculation was you assigned probability $0.5$ to the event $Z=1.$ That is incorrect. The event $Z=1$ has only probability $0.25.$
– David K
Nov 27 '18 at 3:18
add a comment |
It is a fallacy to assume that $X$ and $Y$ are the “same” because their probability distributions have the same weights.
If the coins are independent, then by the definition of independence,
$$
P(X=1 text{ and } Y=1)
= P(X=1) P(Y=1).
$$
There are three other possible outcomes, including
$X=1$ and $Y=0$;
$X=0$ and $Y=1$;
$X=0$ and $Y=0.$
The probability of each of those events can be worked out similarly to
$P(X=1 text{ and } Y=1).$
In all of those cases the final probability comes out to $0.25.$
But the case “$X=1$ and $Y=1$” is the only case in which $min(X,Y)=1.$
In every other case the result is $0.$
So altogether you have a $0.75$ chance of $0,$ not $0.5.$
It is a fallacy to assume that $X$ and $Y$ are the “same” because their probability distributions have the same weights.
If the coins are independent, then by the definition of independence,
$$
P(X=1 text{ and } Y=1)
= P(X=1) P(Y=1).
$$
There are three other possible outcomes, including
$X=1$ and $Y=0$;
$X=0$ and $Y=1$;
$X=0$ and $Y=0.$
The probability of each of those events can be worked out similarly to
$P(X=1 text{ and } Y=1).$
In all of those cases the final probability comes out to $0.25.$
But the case “$X=1$ and $Y=1$” is the only case in which $min(X,Y)=1.$
In every other case the result is $0.$
So altogether you have a $0.75$ chance of $0,$ not $0.5.$
answered Nov 27 '18 at 2:32
David K
52.6k340115
52.6k340115
Generally, for the indicator variable, does it always take in the value of 1? Are we always looking for the indicator variable to be 1? I'm confused about the indicator variable concept
– Toby
Nov 27 '18 at 2:46
1
"Indicator variable" is simply a convenient way for someone to say that a variable takes the value $1$ when a certain event occurs, and takes the value $0$ otherwise. That's all it is. All the variables $X,$ $Y,$ and $Z$ are indicator variables in this question, but it is the knowledge that you can only have outcomes $0$ or $1$ (due to the way the variables are defined) that makes them indicator variables, not the other way around.
– David K
Nov 27 '18 at 2:54
So, if the question states that the random variables are 1 if "this scenario" happens, do we always just compute the indicator variables expected value based on its value being the scenario where it's 1?
– Toby
Nov 27 '18 at 3:04
1
The expected value can be computed as in Siong Thye Goh's comment. It is based on the same formula you used yourself, but your mistake in your calculation was you assigned probability $0.5$ to the event $Z=1.$ That is incorrect. The event $Z=1$ has only probability $0.25.$
– David K
Nov 27 '18 at 3:18
add a comment |
Generally, for the indicator variable, does it always take in the value of 1? Are we always looking for the indicator variable to be 1? I'm confused about the indicator variable concept
– Toby
Nov 27 '18 at 2:46
1
"Indicator variable" is simply a convenient way for someone to say that a variable takes the value $1$ when a certain event occurs, and takes the value $0$ otherwise. That's all it is. All the variables $X,$ $Y,$ and $Z$ are indicator variables in this question, but it is the knowledge that you can only have outcomes $0$ or $1$ (due to the way the variables are defined) that makes them indicator variables, not the other way around.
– David K
Nov 27 '18 at 2:54
So, if the question states that the random variables are 1 if "this scenario" happens, do we always just compute the indicator variables expected value based on its value being the scenario where it's 1?
– Toby
Nov 27 '18 at 3:04
1
The expected value can be computed as in Siong Thye Goh's comment. It is based on the same formula you used yourself, but your mistake in your calculation was you assigned probability $0.5$ to the event $Z=1.$ That is incorrect. The event $Z=1$ has only probability $0.25.$
– David K
Nov 27 '18 at 3:18
Generally, for the indicator variable, does it always take in the value of 1? Are we always looking for the indicator variable to be 1? I'm confused about the indicator variable concept
– Toby
Nov 27 '18 at 2:46
Generally, for the indicator variable, does it always take in the value of 1? Are we always looking for the indicator variable to be 1? I'm confused about the indicator variable concept
– Toby
Nov 27 '18 at 2:46
1
1
"Indicator variable" is simply a convenient way for someone to say that a variable takes the value $1$ when a certain event occurs, and takes the value $0$ otherwise. That's all it is. All the variables $X,$ $Y,$ and $Z$ are indicator variables in this question, but it is the knowledge that you can only have outcomes $0$ or $1$ (due to the way the variables are defined) that makes them indicator variables, not the other way around.
– David K
Nov 27 '18 at 2:54
"Indicator variable" is simply a convenient way for someone to say that a variable takes the value $1$ when a certain event occurs, and takes the value $0$ otherwise. That's all it is. All the variables $X,$ $Y,$ and $Z$ are indicator variables in this question, but it is the knowledge that you can only have outcomes $0$ or $1$ (due to the way the variables are defined) that makes them indicator variables, not the other way around.
– David K
Nov 27 '18 at 2:54
So, if the question states that the random variables are 1 if "this scenario" happens, do we always just compute the indicator variables expected value based on its value being the scenario where it's 1?
– Toby
Nov 27 '18 at 3:04
So, if the question states that the random variables are 1 if "this scenario" happens, do we always just compute the indicator variables expected value based on its value being the scenario where it's 1?
– Toby
Nov 27 '18 at 3:04
1
1
The expected value can be computed as in Siong Thye Goh's comment. It is based on the same formula you used yourself, but your mistake in your calculation was you assigned probability $0.5$ to the event $Z=1.$ That is incorrect. The event $Z=1$ has only probability $0.25.$
– David K
Nov 27 '18 at 3:18
The expected value can be computed as in Siong Thye Goh's comment. It is based on the same formula you used yourself, but your mistake in your calculation was you assigned probability $0.5$ to the event $Z=1.$ That is incorrect. The event $Z=1$ has only probability $0.25.$
– David K
Nov 27 '18 at 3:18
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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.
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%2f3015236%2fdiscrete-probability-expected-value-of-random-variable%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