Processing math: 100%

Probability That a Drunk Person Can Cross the Bridge [gnuplot]

Sunday, October 21, 2018

Monte Carlo Random Walk YouTube

t f B! P L

YouTube

 

Simulation [gnuplot]

Simulation model of bridge and river


Source code (PLT file)

  1. reset
  2.  
  3. # Parameter --------------------
  4. w = 0.8 # Stride length
  5. level = 5 # Level of drunk
  6. ang = pi/3*level # Movable range
  7.  
  8. N = 5e4 # Number of trials
  9. suc = 0. # Success (float: 0. = 0.0)
  10. fail = 0. # Failure
  11. STOP = 40 # Number of plotting repeatedly
  12.  
  13. xd = 0. # Bridge
  14. xu = 20.
  15. yd = 0.
  16. yu = 4.
  17. Lx = 2.
  18. Ly = 4.
  19.  
  20. # Setting --------------------
  21. set term gif animate delay 4 size 1280,720
  22. filename = sprintf("Lev.%d.gif", level)
  23. set output filename
  24.  
  25. set nokey
  26. unset grid
  27. set size ratio ((yu+Ly)-(yd-Ly)) / ((xu+2*Lx)-(xd-2*Lx))
  28.  
  29. set xr[xd-2*Lx:xu+2*Lx]
  30. set yr[yd-Ly:yu+Ly]
  31. set xl "x" font 'Times New Roman:Italic, 26'
  32. set yl "y" font 'Times New Roman:Italic, 26'
  33. set xtics 2
  34. set ytics 2
  35. set tics font 'Times New Roman,24'
  36.  
  37. # Functions --------------------
  38. N(i) = sprintf("{/Times:Italic N} = %d\n", i)
  39. P(i, j) = sprintf("{/Times:Italic p} = %.5f\n", i/j)
  40. Sf(sum, fail) = sprintf("{/Times:Italic s_f} = %.1f\n", sum/fail)
  41.  
  42. # Plot --------------------
  43. # Bridge
  44. set arrow 1 nohead from 0, yd-Ly to 0, yd lc -1 lw 4 back
  45. set arrow 2 nohead from 0, yu to 0, yu+Ly lc -1 lw 4 back
  46. set arrow 3 nohead from xu, yd-Ly to xu, yd lc -1 lw 4 back
  47. set arrow 4 nohead from xu, yu to xu, yu+Ly lc -1 lw 4 back
  48. set arrow 5 nohead from 0, 0 to xu, 0 lc -1 lw 4 back
  49. set arrow 6 nohead from 0, yu to xu, yu lc -1 lw 4 back
  50. set arrow 7 nohead from xd-Lx, yd-Ly to xd-Lx, yu+Ly lc 7 lw 1.5 back
  51. set arrow 8 nohead from xu+Lx, yd-Ly to xu+Lx, yu+Ly lc 7 lw 1.5 back
  52.  
  53. # River
  54. set object 1 rect from xd, yu to xu, yu+Ly back fc rgb "light-cyan" fs solid
  55. set object 2 rect from xd, yd-Ly to xu, yd back fc rgb "light-cyan" fs solid
  56.  
  57. # Display level of drunk
  58. set label 1 sprintf("Level %d", level) center at graph 0.5, 1.05 font 'TimesNewRoman, 28'
  59.  
  60. sum = 0. # Sum of sf (sf: steps on falling in a river)
  61. dec = 0 # Counter for decimation
  62.  
  63. do for [i = 1:N] {
  64. # Initiate value
  65. x1 = 0.
  66. y1 = yu/2.
  67. x2 = x1
  68. y2 = y1
  69. sf = 0 # Steps on falling in a river
  70. num = 3 # Number of object
  71. # Calculate digits of i
  72. buf = i
  73. digit = 0
  74. while(buf!=0){
  75. digit = digit + 1
  76. buf = buf / 10
  77. }
  78.  
  79. # Start position
  80. set object num circle at x1, y1 size 0.08 fc rgb 'black' fs solid front
  81.  
  82. # Display number of trials
  83. set label 2 left N(i) font 'Times New Roman, 28' at graph 0.45, 0.94
  84. # Draw initiate state for STOP frame(i=1)
  85. if(i==1){
  86. do for[j=1:STOP]{ plot 1/0 }
  87. }
  88. # Loop
  89. while( (x2>=xd && x2<xu && y2>yd && y2<yu)||(x2<xd && x2>xd-Lx)||(x2>=xu && x2<xu+Lx) ) {
  90. sf = sf + 1
  91. num = num + 1
  92. x1 = x2 # Old position
  93. y1 = y2
  94. r = rand(0)
  95. x2 = x2 + w*cos(ang*(r-0.5)) # New position
  96. y2 = y2 + w*sin(ang*(r-0.5))
  97. # Display a point and a line
  98. set object num circle at x2, y2 size 0.08 fc rgb 'black' fs solid front
  99. set arrow num+7 nohead from x1, y1 to x2, y2 lc -1 lw 2
  100.  
  101. # SUCCESS: Reach the goal
  102. if(x2>=xu+Lx){
  103. suc = suc + 1
  104. set label 3 P(suc, i) left font 'Times New Roman, 28' at graph 0.45, 0.87
  105. if(fail!=0){
  106. set label 4 Sf(sum, fail) left font 'Times New Roman, 28' at graph 0.45, 0.80
  107. }
  108. # Turn path red
  109. t = 3
  110. set object t fc rgb 'red'
  111. while(t<num){
  112. t = t+1
  113. set object t fc rgb 'red'
  114. set arrow t+7 lc 7
  115. }
  116. }
  117. # FAILURE: Fall in a river
  118. if ( (x2>=xd && x2<=xu && y2<=yd) || (x2>=xd && x2<=xu && y2>=yu) || x2<=xd-Lx){
  119. fail = fail + 1
  120. sum = sum + sf # Sum of sf (sf: steps on falling in a river)
  121. set label 3 P(suc, i) left font 'Times New Roman, 28' at graph 0.45, 0.87
  122. set label 4 Sf(sum, fail) left font 'Times New Roman, 28' at graph 0.45, 0.80
  123. }
  124. # Plot process in a trial
  125. # i = 1 -> 10
  126. if(i<=10){
  127. plot 1/0
  128. }
  129. # i = 11 -> 20
  130. if(i>=11 && i<=20){
  131. dec = dec + 1
  132. if( (dec%3==0) || (x2<xd) || (x2>=xu) || (y2<=yd) || (y2>=yu) ){
  133. plot 1/0 # Decimate by 3 steps (from Cond.1)
  134. }
  135. }
  136. }
  137. # Plot results of each trial (i = 20 -> N)
  138. if(i>20 && i>=10**(digit-1) && i<10**digit && i%(10**(digit-1)/5)==0){
  139. plot 1/0 # Decimate
  140. }
  141. # Draw final state for STOP steps(i=N)
  142. if(i==N){
  143. do for[j=1:STOP]{ plot 1/0 }
  144. }
  145. # Remove the path for preparing the next trial
  146. while(num>=4){
  147. unset object num
  148. unset arrow num+7
  149. num = num - 1
  150. }
  151. }
  152.  
  153. set out

Output (Lev.1.gif → Lev.6.gif)


Extra : Graph representing change in the success probability and s_f

Source code (PLT file)

  1. reset
  2. set term png size 1000, 600
  3. set output "Graph.png"
  4.  
  5. set multiplot layout 1, 2 title "{/Times:Italic N}=50000" font 'Times New Roman, 20'
  6. set size ratio 1.3
  7. set nokey
  8. set grid
  9. set xr[1:6]
  10. set xtics 1
  11. set xl 'Level' font 'Times New Roman:Normal, 22'
  12.  
  13. # Left side
  14. set yr[0:1]
  15. set ytics 0.1
  16. set yl 'Success probability' font 'Times New Roman:Normal, 22'
  17. plot '-' w linesp lt 1 lw 2 lc -1 ps 1 pt 7
  18. 1, 0.84492
  19. 2, 0.30508
  20. 3, 0.06662
  21. 4, 0.00752
  22. 5, 0.00012
  23. 6, 0.00000
  24. e
  25.  
  26. # Right side
  27. set yr[0:20]
  28. set ytics 2
  29. set yl "Average numbers of steps {/Times:Italic=24 s_f}" font 'Times New Roman, 22
  30. plot '-' w linesp lt 1 lw 2 lc 3 ps 1 pt 7
  31. 1, 19.0
  32. 2, 15.2
  33. 3, 13.8
  34. 4, 13.5
  35. 5, 15.0
  36. 6, 14.5
  37. e
  38.  
  39. unset multiplot
  40. set out

Output

Search This Blog

Translate

QooQ