Assume I have a finite state machine and a bunch of tokens. Transitions happen every time a token is inserted. Transitions are based on the token (i.e. at state S, inserting a blue token would give a different result from, say, inserting a red token). There is one state designated as the 'goal'. How would I go about calculating the probability of reaching the goal for randomly throwing tokens to the machine?
2026-04-01 14:00:52.1775052052
Transition probabilities in a finite state machine
1.3k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in DISCRETE-MATHEMATICS
- What is (mathematically) minimal computer architecture to run any software
- What's $P(A_1\cap A_2\cap A_3\cap A_4) $?
- The function $f(x)=$ ${b^mx^m}\over(1-bx)^{m+1}$ is a generating function of the sequence $\{a_n\}$. Find the coefficient of $x^n$
- Given is $2$ dimensional random variable $(X,Y)$ with table. Determine the correlation between $X$ and $Y$
- Given a function, prove that it's injective
- Surjective function proof
- How to find image of a function
- Find the truth value of... empty set?
- Solving discrete recursion equations with min in the equation
- Determine the marginal distributions of $(T_1, T_2)$
Related Questions in MARKOV-CHAINS
- Calculating probabilities using Markov chains.
- Probability being in the same state
- Random walk on $\mathbb{Z}^2$
- Polya's Urn and Conditional Independence
- Markov Chain never reaches a state
- Finding a mixture of 1st and 0'th order Markov models that is closest to an empirical distribution
- Find probability function of random walk, stochastic processes
- Generating cycles on a strongly connected graph
- Will be this random walk a Markov chain?
- An irreducible Markov chain cannot have an absorbing state
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
Let $(X_n)_{n\ge 0}$ be our Markov chain, let $T$ be the set of all tokens and let token $a$ have transition matrix $P_a$. Then $\mathbb{P}(X_1=j|X_0=i,\text{next token is t})=(P_t)_{ij}$.
By the law of total probability $$\mathbb{P}(X_1=j|X_0=i)=\sum_{t\in T} (P_t)_{ij}\mathbb{P}(\text{next token is t}|X_0=i)$$
I hope this is what you are after. Then you just use this probability and the usual calculations of hitting probabilities.
Example
Let's say there are 4 states and 2 tokens (red, blue). The transition matrixes for the two tokens are
$$P_r=\begin{pmatrix} \frac{1}{2} & \frac{1}{4} & 0 & \frac{1}{4}\\ \frac{1}{2} & 0 & 0 & \frac{1}{2}\\ 0 & 0 & 1 & 0\\ 0&0&0&1 \end{pmatrix},P_b=\begin{pmatrix} \frac{1}{3} & \frac{2}{3} & 0 & 0\\ \frac{1}{3} & 0 & \frac{1}{3} & \frac{1}{3}\\ 0 & 0 & 1 &0\\ 0&0&0&1 \end{pmatrix}$$ where the third and fourth states are absorbing and represent goal and failure respectively.
Let's say the probability of receiving a red token is $\frac{1}{2}$ if the current state is $1$ and $\frac{2}{3}$ if the current state is $2$. Then $$P=\begin{pmatrix} \frac{1}{2}\cdot \frac{1}{2}+\frac{1}{2}\cdot \frac{1}{3} & \frac{1}{2}\cdot \frac{1}{4}+\frac{1}{2}\cdot \frac{2}{3} & 0&\frac{1}{2}\cdot \frac{1}{4}\\ \frac{2}{3}\cdot \frac{1}{2}+\frac{1}{3}\cdot \frac{1}{3} & 0 & \frac{1}{3}\cdot \frac{1}{3} & \frac{2}{3}\cdot \frac{1}{2}+\frac{1}{3}\cdot \frac{1}{3}\\ 0 & 0 & 1&0\\ 0&0&0&1 \end{pmatrix}=\begin{pmatrix} \frac{5}{12} & \frac{11}{24} & 0&\frac{1}{8}\\ \frac{4}{9} & 0 & \frac{1}{9}& \frac{4}{9}\\ 0 & 0 & 1&0\\ 0&0&0&1 \end{pmatrix}$$
Now, let $h_i$ be the probability of hitting the goal (state $3$) given that the current state is $i$. Then $$h_3=1, h_4=0$$ $$h_1=\frac{5}{12} h_1+\frac{11}{24} h_2$$$$h_2=\frac{4}{9} h_1+\frac{1}{9}$$ And the solution to those equations is $h_1=\frac{11}{82},h_2=\frac{7}{41}$.