Created
November 15, 2012 16:53
-
-
Save girving/4079727 to your computer and use it in GitHub Desktop.
Lower and upper bounds for a gambler's ruin problem
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from __future__ import division | |
from numpy import * | |
def iter(n,boundary): | |
p = ones(n) | |
b = boundary.copy() | |
j = 3*arange(1,n) | |
for i in xrange(1000): | |
b[:n] = p | |
p[1:] = .5*(p[:-1]+b[j]) | |
return p | |
print repr(iter(1000,zeros(3000))[1]) | |
print repr(iter(1000,((1-sqrt(5))/2)**arange(3000))[1]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Output: