東京大学 新領域創成科学研究科 メディカル情報生命専攻 2022年8月実施 問題11
Author
zephyr, 祭音Myyura
Description
Let {xt∣t=0,1,2,…} be a random sequence of non-negative integers generated by the following rules.
(i) If xt>0, xt+1=xt+1 with probability p, and xt+1=xt−1 with probability q=(1−p).
(ii) If xt=0, xt+1=0 with probability 1.
In the following, p=q is assumed. Further, we define uk(T) as the probability that xT=0 at time t=T with initial value x0=k (k: a nonnegative integer). Answer the following questions.
(1) Answer the probability that x3=2 given x0=1.
(2) Answer the probability that x4=0 given x0=2.
(3) Express uk(T) using uk+1(T−1) and uk−1(T−1) (k>0, T≥1).
(4) Let uk=limT→∞uk(T). Derive the equations that the uks satisfy using (3).
(5) Answer the condition for p that the equations of (4) have a solution uk with limk→∞uk=0, as well as the solution uk (Examine the case: uk=zk).
题目描述
随机序列 {xt∣t=0,1,2,…} 取非负整数值,并按下列规则演化:
- 若 xt>0,则以概率 p 令 xt+1=xt+1,以概率 q=1−p 令 xt+1=xt−1;
- 若 xt=0,则以概率 1 保持 xt+1=0。
以下假设 p=q。对非负整数初值 x0=k,定义
uk(T)=P(xT=0∣x0=k).
回答下列问题:
-
求 P(x3=2∣x0=1)。
-
求 P(x4=0∣x0=2)。
-
对 k>0,T≥1,用 uk+1(T−1) 与 uk−1(T−1) 表示 uk(T)。
-
令
uk=T→∞limuk(T),
由第 3 问推出 {uk} 满足的方程及边界条件。
-
求使上述方程存在满足 limk→∞uk=0 的解时 p 的条件,并求相应 uk;可尝试代入 uk=zk。
Kai
(1) The probability that x3=2 given x0=1
To find the probability that x3=2 given x0=1, we need to consider the different paths the process can take to reach from 1 to 2 in three steps.
The paths and their probabilities are:
- 1→2→3→2: probability p⋅p⋅q
- 1→2→1→2: probability p⋅q⋅p
Adding these probabilities together, we get:
P(x3=2∣x0=1)=p2q+p2q=2p2q=2p2(1−p)=2p2−2p3
(2) The probability that x4=0 given x0=2
To find the probability that x4=0 given x0=2, we consider the paths to reach 0 from 2 in four steps.
The paths and their probabilities are:
- 2→1→0→0→0: probability q2 (state 0 is absorbing)
- 2→1→2→1→0: probability q⋅p⋅q⋅q
- 2→3→2→1→0: probability p⋅q⋅q⋅q
Adding these probabilities together, we get:
P(x4=0∣x0=2)=q2+2pq3=q2(1+2pq)
(3) Express uk(T) using uk+1(T−1) and uk−1(T−1) (k>0, T≥1)
For k>0, the probability that xT=0 given x0=k can be written in terms of the probabilities at T−1:
uk(T)=p⋅uk+1(T−1)+q⋅uk−1(T−1)=p⋅uk+1(T−1)+(1−p)⋅uk−1(T−1)
(4) Let uk=limT→∞uk(T). Derive the equations that the uks satisfy using (3)
As T→∞, uk becomes time-independent. Thus,
uk=p⋅uk+1+q⋅uk−1=p⋅uk+1+(1−p)⋅uk−1
Also, u0=1 because state 0 is absorbing.
(5) The condition for p that the equations of (4) have a solution uk with limk→∞uk=0, as well as the solution uk (Examine the case: uk=zk)
Assume a solution of the form uk=zk:
zk=p⋅zk+1+(1−p)⋅zk−1
Dividing by zk−1, we get:
z=pz2+(1−p)
This is a quadratic equation in z:
pz2−z+q=0=(z−1)(pz−q)
The roots of this equation are:
z=1,z=pq
Thus the general solution is uk=C1+C2(q/p)k. The conditions u0=1 and limk→∞uk=0 can hold exactly when q/p<1, i.e. p>1/2. They then give C1=0, C2=1, so
uk=(pq)k
When p<1/2, the absorption probability is uk=1, which does not tend to 0 as k→∞.
Knowledge
随机过程 马尔可夫链 概率计算
难点解题思路
- 分析每个时间步的状态变化及其概率。
- 考虑随机过程的限制条件如 xt=0 时的吸收状态。
解题技巧和信息
- 分步计算状态转移概率。
- 利用马尔可夫链的平稳状态来解答长时间行为问题。
重点词汇
- random sequence 随机序列
- probability 概率
- Markov chain 马尔可夫链
- absorbing state 吸收状态
参考资料
- Ross, S. M. (2007). Introduction to Probability Models. Chapter 4: Markov Chains.