Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
since a path x of length l(x) will corresponds to N draws if N-l(x) is an even integer 2p and p undistinguishable annihilations in 4 possible directions have to be distributed over l(x)+1 possible locations, with Feller’s number of distinguishable distributions as a result. With a prior π(N)=1/N on N, hence on p, the posterior on p is given by
Now, given N and x, the probability of no annihilation on the last round is 1 when l(x)=N and in general
which can be integrated against the posterior. The numerical expectation is represented for a range of values of l(x) in the above graph. Interestingly, the posterior probability is constant for l(x) large and equal to 0.8125 under a flat prior over N.
#observation: elo=195 #ABC version T=1e6 el=rep(NA,T) N=sample(elo:(4*elo),T,rep=TRUE) for (t in 1:T){ #generate a path paz=sample(c(-(1:2),1:2),N[t],rep=TRUE) #eliminate U-turns uturn=paz[-N[t]]==-paz[-1] while (sum(uturn>0)){ uturn[-1]=uturn[-1]*(1- uturn[-(length(paz)-1)]) uturn=c((1:(length(paz)-1))[uturn==1], (2:length(paz))[uturn==1]) paz=paz[-uturn] uturn=paz[-length(paz)]==-paz[-1] } el[t]=length(paz)} #subsample to get exact posterior poster=N[abs(el-elo)==0]
Filed under: Books, Kids, R, Statistics, University life Tagged: ABC, combinatorics, exact ABC, Flatland, improper priors, Larry Wasserman, marginalisation paradoxes, paradox, Pierre Druilhet, random walk, subjective versus objective Bayes, William Feller
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.