Positive Sub-Martingale with Limit = 0? The Next CEO of Stack OverflowShowing a function of random walk is a martingaleOptimal Stopping TheoremMartingale and Submartingale problemSequence of independent random variables: Convergence, martingales, uniform integrabilityExponential Inequalities for MartingalesShow that a cadlag adapted martingale is a local martingale (help using DCT to show uniform integrability)Trouble understanding construction of quadratic variation of martingaleNeed to find Conditions to get a (sub-)martingaleTail probabilities of identically distributed variables.Is $C^X_n_n = 1^infty$ is a martingale?
What would be the main consequences for a country leaving the WTO?
In the "Harry Potter and the Order of the Phoenix" video game, what potion is used to sabotage Umbridge's speakers?
Can you teleport closer to a creature you are Frightened of?
Would a grinding machine be a simple and workable propulsion system for an interplanetary spacecraft?
Physiological effects of huge anime eyes
How to Implement Deterministic Encryption Safely in .NET
My ex-girlfriend uses my Apple ID to login to her iPad, do I have to give her my Apple ID password to reset it?
Is there a reasonable and studied concept of reduction between regular languages?
Won the lottery - how do I keep the money?
Spaces in which all closed sets are regular closed
What flight has the highest ratio of timezone difference to flight time?
Why did early computer designers eschew integers?
Small nick on power cord from an electric alarm clock, and copper wiring exposed but intact
Is it okay to majorly distort historical facts while writing a fiction story?
Is it professional to write unrelated content in an almost-empty email?
Defamation due to breach of confidentiality
Is it convenient to ask the journal's editor for two additional days to complete a review?
free fall ellipse or parabola?
Can I calculate next year's exemptions based on this year's refund/amount owed?
Can I board the first leg of the flight without having final country's visa?
What difference does it make using sed with/without whitespaces?
Yu-Gi-Oh cards in Python 3
Do scriptures give a method to recognize a truly self-realized person/jivanmukta?
What is the difference between "hamstring tendon" and "common hamstring tendon"?
Positive Sub-Martingale with Limit = 0?
The Next CEO of Stack OverflowShowing a function of random walk is a martingaleOptimal Stopping TheoremMartingale and Submartingale problemSequence of independent random variables: Convergence, martingales, uniform integrabilityExponential Inequalities for MartingalesShow that a cadlag adapted martingale is a local martingale (help using DCT to show uniform integrability)Trouble understanding construction of quadratic variation of martingaleNeed to find Conditions to get a (sub-)martingaleTail probabilities of identically distributed variables.Is $C^X_n_n = 1^infty$ is a martingale?
$begingroup$
We have $u(t+1)=u(t)r_t+1$, with $u(0) = 1$, and $r_t$ is a random variable with 2 possible values:
$2/9$ appears with the possibility of 80%,
$8$ appears with the possibility of 20%.
Then we have
$$
lim_ttoinftyE[u(t)]=lim_ttoinftyleft[left(frac29right)^0.8ttimes (8)^0.2tright] = limlimits_ttoinfty(0.300times1.516)^t = 0 dotsdots(1)
$$
$$
lim_ttoinftyE[u(t)]= lim_ttoinftyleft(E[r_1]E[r_2]dots E[r_t]right)=(frac29times0.8+8times0.2)^t=infty. dotsdots(2)
$$
Question 1: (1) and (2) seems to conflict with each other.
At the same time, we have
beginalignmathbbE[u(t+1)|mathcalF_t]-u(t)&=u(t)(mathbbE[r_t+1|mathcalF_t]-1) \ &=u(t)left(0.8timesfrac29+0.2times8 - 1right) \
&= 0.778u(t)>0.
endalign
It seems that $u(t)$ is a sub-martingale.
Question 2: $u(t)$ is a sub-martingale seems to conflict with (1).
import numpy as np
import random as random
u = 1
n = 100
for n in range(n):
r = random.random()
if r < 0.8:
u = u * 2 / 9
else:
u = u * 8
print(u) # the outputs are always like 2.9307827938878015e-44
Question 3:
Can we say $u(t)$ converge in distribution/probability to zero, how to prove it?
I'm a beginner with stupid questions, these questions mess me up, don't know where are the mistakes or misunderstandings.
real-analysis statistics martingales
New contributor
$endgroup$
add a comment |
$begingroup$
We have $u(t+1)=u(t)r_t+1$, with $u(0) = 1$, and $r_t$ is a random variable with 2 possible values:
$2/9$ appears with the possibility of 80%,
$8$ appears with the possibility of 20%.
Then we have
$$
lim_ttoinftyE[u(t)]=lim_ttoinftyleft[left(frac29right)^0.8ttimes (8)^0.2tright] = limlimits_ttoinfty(0.300times1.516)^t = 0 dotsdots(1)
$$
$$
lim_ttoinftyE[u(t)]= lim_ttoinftyleft(E[r_1]E[r_2]dots E[r_t]right)=(frac29times0.8+8times0.2)^t=infty. dotsdots(2)
$$
Question 1: (1) and (2) seems to conflict with each other.
At the same time, we have
beginalignmathbbE[u(t+1)|mathcalF_t]-u(t)&=u(t)(mathbbE[r_t+1|mathcalF_t]-1) \ &=u(t)left(0.8timesfrac29+0.2times8 - 1right) \
&= 0.778u(t)>0.
endalign
It seems that $u(t)$ is a sub-martingale.
Question 2: $u(t)$ is a sub-martingale seems to conflict with (1).
import numpy as np
import random as random
u = 1
n = 100
for n in range(n):
r = random.random()
if r < 0.8:
u = u * 2 / 9
else:
u = u * 8
print(u) # the outputs are always like 2.9307827938878015e-44
Question 3:
Can we say $u(t)$ converge in distribution/probability to zero, how to prove it?
I'm a beginner with stupid questions, these questions mess me up, don't know where are the mistakes or misunderstandings.
real-analysis statistics martingales
New contributor
$endgroup$
$begingroup$
I have no idea how you got $lim u(t+1)=0$. You are pretending that $r_t$ and $u(t)$ are all just numbers and not random. The argument is completely invalid.
$endgroup$
– Kavi Rama Murthy
Mar 28 at 6:06
$begingroup$
Hi, thanks for your reply, Kavi Rama Murthy, I have updated my questions, can you give me a hint?
$endgroup$
– ZhongHua Yan
Mar 28 at 8:23
$begingroup$
The first calculation is still wrong . the second one is right. I have no idea what kind of argument leads to (1).
$endgroup$
– Kavi Rama Murthy
Mar 28 at 8:25
$begingroup$
Thank you again, then how to explain the numerical simulation and what knowledge should I learn to solve question 3?
$endgroup$
– ZhongHua Yan
Mar 28 at 8:31
add a comment |
$begingroup$
We have $u(t+1)=u(t)r_t+1$, with $u(0) = 1$, and $r_t$ is a random variable with 2 possible values:
$2/9$ appears with the possibility of 80%,
$8$ appears with the possibility of 20%.
Then we have
$$
lim_ttoinftyE[u(t)]=lim_ttoinftyleft[left(frac29right)^0.8ttimes (8)^0.2tright] = limlimits_ttoinfty(0.300times1.516)^t = 0 dotsdots(1)
$$
$$
lim_ttoinftyE[u(t)]= lim_ttoinftyleft(E[r_1]E[r_2]dots E[r_t]right)=(frac29times0.8+8times0.2)^t=infty. dotsdots(2)
$$
Question 1: (1) and (2) seems to conflict with each other.
At the same time, we have
beginalignmathbbE[u(t+1)|mathcalF_t]-u(t)&=u(t)(mathbbE[r_t+1|mathcalF_t]-1) \ &=u(t)left(0.8timesfrac29+0.2times8 - 1right) \
&= 0.778u(t)>0.
endalign
It seems that $u(t)$ is a sub-martingale.
Question 2: $u(t)$ is a sub-martingale seems to conflict with (1).
import numpy as np
import random as random
u = 1
n = 100
for n in range(n):
r = random.random()
if r < 0.8:
u = u * 2 / 9
else:
u = u * 8
print(u) # the outputs are always like 2.9307827938878015e-44
Question 3:
Can we say $u(t)$ converge in distribution/probability to zero, how to prove it?
I'm a beginner with stupid questions, these questions mess me up, don't know where are the mistakes or misunderstandings.
real-analysis statistics martingales
New contributor
$endgroup$
We have $u(t+1)=u(t)r_t+1$, with $u(0) = 1$, and $r_t$ is a random variable with 2 possible values:
$2/9$ appears with the possibility of 80%,
$8$ appears with the possibility of 20%.
Then we have
$$
lim_ttoinftyE[u(t)]=lim_ttoinftyleft[left(frac29right)^0.8ttimes (8)^0.2tright] = limlimits_ttoinfty(0.300times1.516)^t = 0 dotsdots(1)
$$
$$
lim_ttoinftyE[u(t)]= lim_ttoinftyleft(E[r_1]E[r_2]dots E[r_t]right)=(frac29times0.8+8times0.2)^t=infty. dotsdots(2)
$$
Question 1: (1) and (2) seems to conflict with each other.
At the same time, we have
beginalignmathbbE[u(t+1)|mathcalF_t]-u(t)&=u(t)(mathbbE[r_t+1|mathcalF_t]-1) \ &=u(t)left(0.8timesfrac29+0.2times8 - 1right) \
&= 0.778u(t)>0.
endalign
It seems that $u(t)$ is a sub-martingale.
Question 2: $u(t)$ is a sub-martingale seems to conflict with (1).
import numpy as np
import random as random
u = 1
n = 100
for n in range(n):
r = random.random()
if r < 0.8:
u = u * 2 / 9
else:
u = u * 8
print(u) # the outputs are always like 2.9307827938878015e-44
Question 3:
Can we say $u(t)$ converge in distribution/probability to zero, how to prove it?
I'm a beginner with stupid questions, these questions mess me up, don't know where are the mistakes or misunderstandings.
real-analysis statistics martingales
real-analysis statistics martingales
New contributor
New contributor
edited Mar 28 at 8:26
ZhongHua Yan
New contributor
asked Mar 28 at 2:42
ZhongHua YanZhongHua Yan
12
12
New contributor
New contributor
$begingroup$
I have no idea how you got $lim u(t+1)=0$. You are pretending that $r_t$ and $u(t)$ are all just numbers and not random. The argument is completely invalid.
$endgroup$
– Kavi Rama Murthy
Mar 28 at 6:06
$begingroup$
Hi, thanks for your reply, Kavi Rama Murthy, I have updated my questions, can you give me a hint?
$endgroup$
– ZhongHua Yan
Mar 28 at 8:23
$begingroup$
The first calculation is still wrong . the second one is right. I have no idea what kind of argument leads to (1).
$endgroup$
– Kavi Rama Murthy
Mar 28 at 8:25
$begingroup$
Thank you again, then how to explain the numerical simulation and what knowledge should I learn to solve question 3?
$endgroup$
– ZhongHua Yan
Mar 28 at 8:31
add a comment |
$begingroup$
I have no idea how you got $lim u(t+1)=0$. You are pretending that $r_t$ and $u(t)$ are all just numbers and not random. The argument is completely invalid.
$endgroup$
– Kavi Rama Murthy
Mar 28 at 6:06
$begingroup$
Hi, thanks for your reply, Kavi Rama Murthy, I have updated my questions, can you give me a hint?
$endgroup$
– ZhongHua Yan
Mar 28 at 8:23
$begingroup$
The first calculation is still wrong . the second one is right. I have no idea what kind of argument leads to (1).
$endgroup$
– Kavi Rama Murthy
Mar 28 at 8:25
$begingroup$
Thank you again, then how to explain the numerical simulation and what knowledge should I learn to solve question 3?
$endgroup$
– ZhongHua Yan
Mar 28 at 8:31
$begingroup$
I have no idea how you got $lim u(t+1)=0$. You are pretending that $r_t$ and $u(t)$ are all just numbers and not random. The argument is completely invalid.
$endgroup$
– Kavi Rama Murthy
Mar 28 at 6:06
$begingroup$
I have no idea how you got $lim u(t+1)=0$. You are pretending that $r_t$ and $u(t)$ are all just numbers and not random. The argument is completely invalid.
$endgroup$
– Kavi Rama Murthy
Mar 28 at 6:06
$begingroup$
Hi, thanks for your reply, Kavi Rama Murthy, I have updated my questions, can you give me a hint?
$endgroup$
– ZhongHua Yan
Mar 28 at 8:23
$begingroup$
Hi, thanks for your reply, Kavi Rama Murthy, I have updated my questions, can you give me a hint?
$endgroup$
– ZhongHua Yan
Mar 28 at 8:23
$begingroup$
The first calculation is still wrong . the second one is right. I have no idea what kind of argument leads to (1).
$endgroup$
– Kavi Rama Murthy
Mar 28 at 8:25
$begingroup$
The first calculation is still wrong . the second one is right. I have no idea what kind of argument leads to (1).
$endgroup$
– Kavi Rama Murthy
Mar 28 at 8:25
$begingroup$
Thank you again, then how to explain the numerical simulation and what knowledge should I learn to solve question 3?
$endgroup$
– ZhongHua Yan
Mar 28 at 8:31
$begingroup$
Thank you again, then how to explain the numerical simulation and what knowledge should I learn to solve question 3?
$endgroup$
– ZhongHua Yan
Mar 28 at 8:31
add a comment |
0
active
oldest
votes
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
);
);
ZhongHua Yan 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%2f3165402%2fpositive-sub-martingale-with-limit-0%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
ZhongHua Yan is a new contributor. Be nice, and check out our Code of Conduct.
ZhongHua Yan is a new contributor. Be nice, and check out our Code of Conduct.
ZhongHua Yan is a new contributor. Be nice, and check out our Code of Conduct.
ZhongHua Yan 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%2f3165402%2fpositive-sub-martingale-with-limit-0%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$
I have no idea how you got $lim u(t+1)=0$. You are pretending that $r_t$ and $u(t)$ are all just numbers and not random. The argument is completely invalid.
$endgroup$
– Kavi Rama Murthy
Mar 28 at 6:06
$begingroup$
Hi, thanks for your reply, Kavi Rama Murthy, I have updated my questions, can you give me a hint?
$endgroup$
– ZhongHua Yan
Mar 28 at 8:23
$begingroup$
The first calculation is still wrong . the second one is right. I have no idea what kind of argument leads to (1).
$endgroup$
– Kavi Rama Murthy
Mar 28 at 8:25
$begingroup$
Thank you again, then how to explain the numerical simulation and what knowledge should I learn to solve question 3?
$endgroup$
– ZhongHua Yan
Mar 28 at 8:31