b***k 发帖数: 2673 | 1 ☆─────────────────────────────────────☆
idontknow (碧螺春真好喝) 于 (Wed Sep 5 16:01:43 2007) 提到:
偶太笨,还是没相通该怎么解这个问题,哪位牛讲一下,谢谢。
一个青蛙,每次跳1m,往左跳1m概率是0.4,往右跳1m概率0.6,问往右第一次跳到9m的期望步数
☆─────────────────────────────────────☆
Pontiff (树) 于 (Wed Sep 5 16:53:37 2007) 提到:
use recursion. Let E(x) be the expectation of steps when first hit the X
meter point on the right then we have
E(x) = 0.6(E(x-1)+1) + 0.4(E(x-1)+1+E(2)).
to solve the recursive, we need first get what is E(2).
let x = 2, then we have | w*******e 发帖数: 83 | 2 这个题是不是与下面的题同解啊?
一个青蛙,每次向左向右条的概率都是0.5,往左跳0.4m,往右跳0.6m,问往右第一次
跳到9m的期望步数. |
|