The probability of reaching the absorbing states from a particular transient state?
Clash Royale CLAN TAG#URR8PPP
$begingroup$
Can I use the data available from MarkovProcessProperties to compute the probability of reaching each of the absorbing states from a particular transient state?
In an earlier post, kglr showed a solution involving the probabilities from State 1. Can that solution be amended easily to compute the probabilities from any of the transient states?
markov-chains markov-process
$endgroup$
add a comment |
$begingroup$
Can I use the data available from MarkovProcessProperties to compute the probability of reaching each of the absorbing states from a particular transient state?
In an earlier post, kglr showed a solution involving the probabilities from State 1. Can that solution be amended easily to compute the probabilities from any of the transient states?
markov-chains markov-process
$endgroup$
$begingroup$
Do you mean something like this?StationaryDistribution[DiscreteMarkovProcess[1,0,0,0,1/2,1/2,0,1,0,0,0,1]]
$endgroup$
– Sjoerd Smit
Feb 26 at 13:56
$begingroup$
I am looking for a solution like the one shown by kglr in the link, but which is more dynamic because it offers the possibility of specifying the particular transient state to be examined.
$endgroup$
– user120911
Feb 26 at 14:20
add a comment |
$begingroup$
Can I use the data available from MarkovProcessProperties to compute the probability of reaching each of the absorbing states from a particular transient state?
In an earlier post, kglr showed a solution involving the probabilities from State 1. Can that solution be amended easily to compute the probabilities from any of the transient states?
markov-chains markov-process
$endgroup$
Can I use the data available from MarkovProcessProperties to compute the probability of reaching each of the absorbing states from a particular transient state?
In an earlier post, kglr showed a solution involving the probabilities from State 1. Can that solution be amended easily to compute the probabilities from any of the transient states?
markov-chains markov-process
markov-chains markov-process
edited Feb 26 at 13:45
user120911
asked Feb 26 at 13:35
user120911user120911
75128
75128
$begingroup$
Do you mean something like this?StationaryDistribution[DiscreteMarkovProcess[1,0,0,0,1/2,1/2,0,1,0,0,0,1]]
$endgroup$
– Sjoerd Smit
Feb 26 at 13:56
$begingroup$
I am looking for a solution like the one shown by kglr in the link, but which is more dynamic because it offers the possibility of specifying the particular transient state to be examined.
$endgroup$
– user120911
Feb 26 at 14:20
add a comment |
$begingroup$
Do you mean something like this?StationaryDistribution[DiscreteMarkovProcess[1,0,0,0,1/2,1/2,0,1,0,0,0,1]]
$endgroup$
– Sjoerd Smit
Feb 26 at 13:56
$begingroup$
I am looking for a solution like the one shown by kglr in the link, but which is more dynamic because it offers the possibility of specifying the particular transient state to be examined.
$endgroup$
– user120911
Feb 26 at 14:20
$begingroup$
Do you mean something like this?
StationaryDistribution[DiscreteMarkovProcess[1,0,0,0,1/2,1/2,0,1,0,0,0,1]]
$endgroup$
– Sjoerd Smit
Feb 26 at 13:56
$begingroup$
Do you mean something like this?
StationaryDistribution[DiscreteMarkovProcess[1,0,0,0,1/2,1/2,0,1,0,0,0,1]]
$endgroup$
– Sjoerd Smit
Feb 26 at 13:56
$begingroup$
I am looking for a solution like the one shown by kglr in the link, but which is more dynamic because it offers the possibility of specifying the particular transient state to be examined.
$endgroup$
– user120911
Feb 26 at 14:20
$begingroup$
I am looking for a solution like the one shown by kglr in the link, but which is more dynamic because it offers the possibility of specifying the particular transient state to be examined.
$endgroup$
– user120911
Feb 26 at 14:20
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
proc = DiscreteMarkovProcess[1, 0., 0.5, 0., 0., 0.5, 0., 0., 0., 0., 0.,
0., 0., 0.5, 0., 0., 0.5, 0., 0., 0., 0.,
0., 0., 0., 0.5, 0., 0., 0.5, 0., 0., 0.,
0., 0., 0., 1., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0.5, 0., 0.5, 0., 0.,
0., 0., 0., 0., 0., 0., 0.5, 0., 0.5, 0.,
0., 0., 0., 0., 0., 0., 1., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0.5, 0.5,
0., 0., 0., 0., 0., 0., 0., 0., 1., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 1.];
Graph[proc]
tr, ab, ltm = MarkovProcessProperties[proc, #] & /@
"TransientClasses", "AbsorbingClasses", "LimitTransitionMatrix";
TeXForm @ TableForm[ltm[[Flatten@tr, Flatten@ab]],
TableHeadings -> Flatten@tr, Flatten@ab]
$beginarrayccccc
& 4 & 7 & 9 & 10 \
3 & 0.5 & 0.5 & 0. & 0. \
6 & 0. & 0.5 & 0.5 & 0. \
2 & 0.25 & 0.5 & 0.25 & 0. \
8 & 0. & 0. & 0.5 & 0.5 \
5 & 0. & 0.25 & 0.5 & 0.25 \
1 & 0.125 & 0.375 & 0.375 & 0.125 \
endarray$
Update: "Suppose I had a very large transition matrix, and I was interested in only one transient state, say 6."
The 6th row of ltm
contains the desired probabilities:
ltm[[6, Flatten@ab]]
0., 0.5, 0.5, 0.
$endgroup$
$begingroup$
Suppose I had a very large transition matrix, and I was interested in only one transient state, say 6. How would I go about entering just that number in your code (a newbie question, I know, but I am having a little difficulty seeing where the number 6 goes). But please don't remove your current solution, which is terrific.
$endgroup$
– user120911
Feb 27 at 0:53
1
$begingroup$
@user120911, if, say,8
is the transient state you are interested in you can useltm[[8, Flatten@ab]
$endgroup$
– kglr
Feb 27 at 0:59
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: "387"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
,
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%2fmathematica.stackexchange.com%2fquestions%2f192241%2fthe-probability-of-reaching-the-absorbing-states-from-a-particular-transient-sta%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
proc = DiscreteMarkovProcess[1, 0., 0.5, 0., 0., 0.5, 0., 0., 0., 0., 0.,
0., 0., 0.5, 0., 0., 0.5, 0., 0., 0., 0.,
0., 0., 0., 0.5, 0., 0., 0.5, 0., 0., 0.,
0., 0., 0., 1., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0.5, 0., 0.5, 0., 0.,
0., 0., 0., 0., 0., 0., 0.5, 0., 0.5, 0.,
0., 0., 0., 0., 0., 0., 1., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0.5, 0.5,
0., 0., 0., 0., 0., 0., 0., 0., 1., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 1.];
Graph[proc]
tr, ab, ltm = MarkovProcessProperties[proc, #] & /@
"TransientClasses", "AbsorbingClasses", "LimitTransitionMatrix";
TeXForm @ TableForm[ltm[[Flatten@tr, Flatten@ab]],
TableHeadings -> Flatten@tr, Flatten@ab]
$beginarrayccccc
& 4 & 7 & 9 & 10 \
3 & 0.5 & 0.5 & 0. & 0. \
6 & 0. & 0.5 & 0.5 & 0. \
2 & 0.25 & 0.5 & 0.25 & 0. \
8 & 0. & 0. & 0.5 & 0.5 \
5 & 0. & 0.25 & 0.5 & 0.25 \
1 & 0.125 & 0.375 & 0.375 & 0.125 \
endarray$
Update: "Suppose I had a very large transition matrix, and I was interested in only one transient state, say 6."
The 6th row of ltm
contains the desired probabilities:
ltm[[6, Flatten@ab]]
0., 0.5, 0.5, 0.
$endgroup$
$begingroup$
Suppose I had a very large transition matrix, and I was interested in only one transient state, say 6. How would I go about entering just that number in your code (a newbie question, I know, but I am having a little difficulty seeing where the number 6 goes). But please don't remove your current solution, which is terrific.
$endgroup$
– user120911
Feb 27 at 0:53
1
$begingroup$
@user120911, if, say,8
is the transient state you are interested in you can useltm[[8, Flatten@ab]
$endgroup$
– kglr
Feb 27 at 0:59
add a comment |
$begingroup$
proc = DiscreteMarkovProcess[1, 0., 0.5, 0., 0., 0.5, 0., 0., 0., 0., 0.,
0., 0., 0.5, 0., 0., 0.5, 0., 0., 0., 0.,
0., 0., 0., 0.5, 0., 0., 0.5, 0., 0., 0.,
0., 0., 0., 1., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0.5, 0., 0.5, 0., 0.,
0., 0., 0., 0., 0., 0., 0.5, 0., 0.5, 0.,
0., 0., 0., 0., 0., 0., 1., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0.5, 0.5,
0., 0., 0., 0., 0., 0., 0., 0., 1., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 1.];
Graph[proc]
tr, ab, ltm = MarkovProcessProperties[proc, #] & /@
"TransientClasses", "AbsorbingClasses", "LimitTransitionMatrix";
TeXForm @ TableForm[ltm[[Flatten@tr, Flatten@ab]],
TableHeadings -> Flatten@tr, Flatten@ab]
$beginarrayccccc
& 4 & 7 & 9 & 10 \
3 & 0.5 & 0.5 & 0. & 0. \
6 & 0. & 0.5 & 0.5 & 0. \
2 & 0.25 & 0.5 & 0.25 & 0. \
8 & 0. & 0. & 0.5 & 0.5 \
5 & 0. & 0.25 & 0.5 & 0.25 \
1 & 0.125 & 0.375 & 0.375 & 0.125 \
endarray$
Update: "Suppose I had a very large transition matrix, and I was interested in only one transient state, say 6."
The 6th row of ltm
contains the desired probabilities:
ltm[[6, Flatten@ab]]
0., 0.5, 0.5, 0.
$endgroup$
$begingroup$
Suppose I had a very large transition matrix, and I was interested in only one transient state, say 6. How would I go about entering just that number in your code (a newbie question, I know, but I am having a little difficulty seeing where the number 6 goes). But please don't remove your current solution, which is terrific.
$endgroup$
– user120911
Feb 27 at 0:53
1
$begingroup$
@user120911, if, say,8
is the transient state you are interested in you can useltm[[8, Flatten@ab]
$endgroup$
– kglr
Feb 27 at 0:59
add a comment |
$begingroup$
proc = DiscreteMarkovProcess[1, 0., 0.5, 0., 0., 0.5, 0., 0., 0., 0., 0.,
0., 0., 0.5, 0., 0., 0.5, 0., 0., 0., 0.,
0., 0., 0., 0.5, 0., 0., 0.5, 0., 0., 0.,
0., 0., 0., 1., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0.5, 0., 0.5, 0., 0.,
0., 0., 0., 0., 0., 0., 0.5, 0., 0.5, 0.,
0., 0., 0., 0., 0., 0., 1., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0.5, 0.5,
0., 0., 0., 0., 0., 0., 0., 0., 1., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 1.];
Graph[proc]
tr, ab, ltm = MarkovProcessProperties[proc, #] & /@
"TransientClasses", "AbsorbingClasses", "LimitTransitionMatrix";
TeXForm @ TableForm[ltm[[Flatten@tr, Flatten@ab]],
TableHeadings -> Flatten@tr, Flatten@ab]
$beginarrayccccc
& 4 & 7 & 9 & 10 \
3 & 0.5 & 0.5 & 0. & 0. \
6 & 0. & 0.5 & 0.5 & 0. \
2 & 0.25 & 0.5 & 0.25 & 0. \
8 & 0. & 0. & 0.5 & 0.5 \
5 & 0. & 0.25 & 0.5 & 0.25 \
1 & 0.125 & 0.375 & 0.375 & 0.125 \
endarray$
Update: "Suppose I had a very large transition matrix, and I was interested in only one transient state, say 6."
The 6th row of ltm
contains the desired probabilities:
ltm[[6, Flatten@ab]]
0., 0.5, 0.5, 0.
$endgroup$
proc = DiscreteMarkovProcess[1, 0., 0.5, 0., 0., 0.5, 0., 0., 0., 0., 0.,
0., 0., 0.5, 0., 0., 0.5, 0., 0., 0., 0.,
0., 0., 0., 0.5, 0., 0., 0.5, 0., 0., 0.,
0., 0., 0., 1., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0.5, 0., 0.5, 0., 0.,
0., 0., 0., 0., 0., 0., 0.5, 0., 0.5, 0.,
0., 0., 0., 0., 0., 0., 1., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0.5, 0.5,
0., 0., 0., 0., 0., 0., 0., 0., 1., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 1.];
Graph[proc]
tr, ab, ltm = MarkovProcessProperties[proc, #] & /@
"TransientClasses", "AbsorbingClasses", "LimitTransitionMatrix";
TeXForm @ TableForm[ltm[[Flatten@tr, Flatten@ab]],
TableHeadings -> Flatten@tr, Flatten@ab]
$beginarrayccccc
& 4 & 7 & 9 & 10 \
3 & 0.5 & 0.5 & 0. & 0. \
6 & 0. & 0.5 & 0.5 & 0. \
2 & 0.25 & 0.5 & 0.25 & 0. \
8 & 0. & 0. & 0.5 & 0.5 \
5 & 0. & 0.25 & 0.5 & 0.25 \
1 & 0.125 & 0.375 & 0.375 & 0.125 \
endarray$
Update: "Suppose I had a very large transition matrix, and I was interested in only one transient state, say 6."
The 6th row of ltm
contains the desired probabilities:
ltm[[6, Flatten@ab]]
0., 0.5, 0.5, 0.
edited Feb 27 at 1:16
answered Feb 26 at 14:41
kglrkglr
189k10206424
189k10206424
$begingroup$
Suppose I had a very large transition matrix, and I was interested in only one transient state, say 6. How would I go about entering just that number in your code (a newbie question, I know, but I am having a little difficulty seeing where the number 6 goes). But please don't remove your current solution, which is terrific.
$endgroup$
– user120911
Feb 27 at 0:53
1
$begingroup$
@user120911, if, say,8
is the transient state you are interested in you can useltm[[8, Flatten@ab]
$endgroup$
– kglr
Feb 27 at 0:59
add a comment |
$begingroup$
Suppose I had a very large transition matrix, and I was interested in only one transient state, say 6. How would I go about entering just that number in your code (a newbie question, I know, but I am having a little difficulty seeing where the number 6 goes). But please don't remove your current solution, which is terrific.
$endgroup$
– user120911
Feb 27 at 0:53
1
$begingroup$
@user120911, if, say,8
is the transient state you are interested in you can useltm[[8, Flatten@ab]
$endgroup$
– kglr
Feb 27 at 0:59
$begingroup$
Suppose I had a very large transition matrix, and I was interested in only one transient state, say 6. How would I go about entering just that number in your code (a newbie question, I know, but I am having a little difficulty seeing where the number 6 goes). But please don't remove your current solution, which is terrific.
$endgroup$
– user120911
Feb 27 at 0:53
$begingroup$
Suppose I had a very large transition matrix, and I was interested in only one transient state, say 6. How would I go about entering just that number in your code (a newbie question, I know, but I am having a little difficulty seeing where the number 6 goes). But please don't remove your current solution, which is terrific.
$endgroup$
– user120911
Feb 27 at 0:53
1
1
$begingroup$
@user120911, if, say,
8
is the transient state you are interested in you can use ltm[[8, Flatten@ab]
$endgroup$
– kglr
Feb 27 at 0:59
$begingroup$
@user120911, if, say,
8
is the transient state you are interested in you can use ltm[[8, Flatten@ab]
$endgroup$
– kglr
Feb 27 at 0:59
add a comment |
Thanks for contributing an answer to Mathematica 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%2fmathematica.stackexchange.com%2fquestions%2f192241%2fthe-probability-of-reaching-the-absorbing-states-from-a-particular-transient-sta%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$
Do you mean something like this?
StationaryDistribution[DiscreteMarkovProcess[1,0,0,0,1/2,1/2,0,1,0,0,0,1]]
$endgroup$
– Sjoerd Smit
Feb 26 at 13:56
$begingroup$
I am looking for a solution like the one shown by kglr in the link, but which is more dynamic because it offers the possibility of specifying the particular transient state to be examined.
$endgroup$
– user120911
Feb 26 at 14:20