Sum of $n$ coin flips, where the probability of heads at experiment $t$ is dependent on the outcomes of the...
$begingroup$
Suppose I play a game of $n$ coin flips, where heads is $1$ and tails is $0$. If each coin flip was independent, the expected sum of all $n$ coin flips is trivial. What if there is dependence? How can this be solved?
A general solution (if any) would be best, but let's construct a precise game just for simplicity. Let ${X_1, X_2, dots, X_n}$ be a sequence of $n$ coin flips, where:
$$
begin{cases}
P(X_t = 1) = (P(X_{t-1} = 1))^2text{ IF } X_{t-1} = 1; text{ ELSE } P(X_t = 1) = frac{1}{2}P(X_{t-1} = 1)\
P(X_t = 0) = 1 - P(X_t = 1)
end{cases}
$$
with base case:
$$
begin{cases}
P(X_1 = 1) = p\
P(X_1 = 0) = 1 - p
end{cases}
$$
In other words, the coin flip at time $t$ has two different probabilities of being heads. It is heads with half the probability of being heads at time $t-1$ if it was tails at $t-1$. On the other hand, if it was heads at $t-1$, then you take the squared value of the probability of heads at $t-1$.
How does one go about reasoning about this types of stochastic fields?
probability statistics stochastic-processes
$endgroup$
add a comment |
$begingroup$
Suppose I play a game of $n$ coin flips, where heads is $1$ and tails is $0$. If each coin flip was independent, the expected sum of all $n$ coin flips is trivial. What if there is dependence? How can this be solved?
A general solution (if any) would be best, but let's construct a precise game just for simplicity. Let ${X_1, X_2, dots, X_n}$ be a sequence of $n$ coin flips, where:
$$
begin{cases}
P(X_t = 1) = (P(X_{t-1} = 1))^2text{ IF } X_{t-1} = 1; text{ ELSE } P(X_t = 1) = frac{1}{2}P(X_{t-1} = 1)\
P(X_t = 0) = 1 - P(X_t = 1)
end{cases}
$$
with base case:
$$
begin{cases}
P(X_1 = 1) = p\
P(X_1 = 0) = 1 - p
end{cases}
$$
In other words, the coin flip at time $t$ has two different probabilities of being heads. It is heads with half the probability of being heads at time $t-1$ if it was tails at $t-1$. On the other hand, if it was heads at $t-1$, then you take the squared value of the probability of heads at $t-1$.
How does one go about reasoning about this types of stochastic fields?
probability statistics stochastic-processes
$endgroup$
$begingroup$
For every $p<1$, the expected sum of infinitely many flips is finite. The expected sum $s_n(p)$ of $n$ flips for parameter $p$ solves the recursion $$s_n(p)=(1-p)s_{n-1}left(tfrac12pright)+p(1+s_{n-1}(p^2))$$ with initialization $$s_1(p)=p$$ The way to solve these for the exact values $s_n(p)$, if possible, is not obvious.
$endgroup$
– Did
Dec 4 '18 at 22:35
$begingroup$
@Did these types of processes might also be described by something similar to Polya's urn process. Do you happen to have good references to them?
$endgroup$
– ux74bn1
Dec 5 '18 at 22:10
add a comment |
$begingroup$
Suppose I play a game of $n$ coin flips, where heads is $1$ and tails is $0$. If each coin flip was independent, the expected sum of all $n$ coin flips is trivial. What if there is dependence? How can this be solved?
A general solution (if any) would be best, but let's construct a precise game just for simplicity. Let ${X_1, X_2, dots, X_n}$ be a sequence of $n$ coin flips, where:
$$
begin{cases}
P(X_t = 1) = (P(X_{t-1} = 1))^2text{ IF } X_{t-1} = 1; text{ ELSE } P(X_t = 1) = frac{1}{2}P(X_{t-1} = 1)\
P(X_t = 0) = 1 - P(X_t = 1)
end{cases}
$$
with base case:
$$
begin{cases}
P(X_1 = 1) = p\
P(X_1 = 0) = 1 - p
end{cases}
$$
In other words, the coin flip at time $t$ has two different probabilities of being heads. It is heads with half the probability of being heads at time $t-1$ if it was tails at $t-1$. On the other hand, if it was heads at $t-1$, then you take the squared value of the probability of heads at $t-1$.
How does one go about reasoning about this types of stochastic fields?
probability statistics stochastic-processes
$endgroup$
Suppose I play a game of $n$ coin flips, where heads is $1$ and tails is $0$. If each coin flip was independent, the expected sum of all $n$ coin flips is trivial. What if there is dependence? How can this be solved?
A general solution (if any) would be best, but let's construct a precise game just for simplicity. Let ${X_1, X_2, dots, X_n}$ be a sequence of $n$ coin flips, where:
$$
begin{cases}
P(X_t = 1) = (P(X_{t-1} = 1))^2text{ IF } X_{t-1} = 1; text{ ELSE } P(X_t = 1) = frac{1}{2}P(X_{t-1} = 1)\
P(X_t = 0) = 1 - P(X_t = 1)
end{cases}
$$
with base case:
$$
begin{cases}
P(X_1 = 1) = p\
P(X_1 = 0) = 1 - p
end{cases}
$$
In other words, the coin flip at time $t$ has two different probabilities of being heads. It is heads with half the probability of being heads at time $t-1$ if it was tails at $t-1$. On the other hand, if it was heads at $t-1$, then you take the squared value of the probability of heads at $t-1$.
How does one go about reasoning about this types of stochastic fields?
probability statistics stochastic-processes
probability statistics stochastic-processes
asked Dec 4 '18 at 21:55
ux74bn1ux74bn1
263
263
$begingroup$
For every $p<1$, the expected sum of infinitely many flips is finite. The expected sum $s_n(p)$ of $n$ flips for parameter $p$ solves the recursion $$s_n(p)=(1-p)s_{n-1}left(tfrac12pright)+p(1+s_{n-1}(p^2))$$ with initialization $$s_1(p)=p$$ The way to solve these for the exact values $s_n(p)$, if possible, is not obvious.
$endgroup$
– Did
Dec 4 '18 at 22:35
$begingroup$
@Did these types of processes might also be described by something similar to Polya's urn process. Do you happen to have good references to them?
$endgroup$
– ux74bn1
Dec 5 '18 at 22:10
add a comment |
$begingroup$
For every $p<1$, the expected sum of infinitely many flips is finite. The expected sum $s_n(p)$ of $n$ flips for parameter $p$ solves the recursion $$s_n(p)=(1-p)s_{n-1}left(tfrac12pright)+p(1+s_{n-1}(p^2))$$ with initialization $$s_1(p)=p$$ The way to solve these for the exact values $s_n(p)$, if possible, is not obvious.
$endgroup$
– Did
Dec 4 '18 at 22:35
$begingroup$
@Did these types of processes might also be described by something similar to Polya's urn process. Do you happen to have good references to them?
$endgroup$
– ux74bn1
Dec 5 '18 at 22:10
$begingroup$
For every $p<1$, the expected sum of infinitely many flips is finite. The expected sum $s_n(p)$ of $n$ flips for parameter $p$ solves the recursion $$s_n(p)=(1-p)s_{n-1}left(tfrac12pright)+p(1+s_{n-1}(p^2))$$ with initialization $$s_1(p)=p$$ The way to solve these for the exact values $s_n(p)$, if possible, is not obvious.
$endgroup$
– Did
Dec 4 '18 at 22:35
$begingroup$
For every $p<1$, the expected sum of infinitely many flips is finite. The expected sum $s_n(p)$ of $n$ flips for parameter $p$ solves the recursion $$s_n(p)=(1-p)s_{n-1}left(tfrac12pright)+p(1+s_{n-1}(p^2))$$ with initialization $$s_1(p)=p$$ The way to solve these for the exact values $s_n(p)$, if possible, is not obvious.
$endgroup$
– Did
Dec 4 '18 at 22:35
$begingroup$
@Did these types of processes might also be described by something similar to Polya's urn process. Do you happen to have good references to them?
$endgroup$
– ux74bn1
Dec 5 '18 at 22:10
$begingroup$
@Did these types of processes might also be described by something similar to Polya's urn process. Do you happen to have good references to them?
$endgroup$
– ux74bn1
Dec 5 '18 at 22:10
add a comment |
0
active
oldest
votes
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%2f3026236%2fsum-of-n-coin-flips-where-the-probability-of-heads-at-experiment-t-is-depen%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f3026236%2fsum-of-n-coin-flips-where-the-probability-of-heads-at-experiment-t-is-depen%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$
For every $p<1$, the expected sum of infinitely many flips is finite. The expected sum $s_n(p)$ of $n$ flips for parameter $p$ solves the recursion $$s_n(p)=(1-p)s_{n-1}left(tfrac12pright)+p(1+s_{n-1}(p^2))$$ with initialization $$s_1(p)=p$$ The way to solve these for the exact values $s_n(p)$, if possible, is not obvious.
$endgroup$
– Did
Dec 4 '18 at 22:35
$begingroup$
@Did these types of processes might also be described by something similar to Polya's urn process. Do you happen to have good references to them?
$endgroup$
– ux74bn1
Dec 5 '18 at 22:10