100万回のコイン
shoko.icon
コインを100万回投げたとき、表が出る回数がちょうど500,000回である確率と、495,000回以下である確率とではどちらが大きいか、また、大きいほうは小さいほうの何倍ほどか。 増井俊之.icon
100万回は多いな...
JSでシミュレーションは辛い
数時間動かしてやっとこういう結果が出た
https://gyazo.com/e4a88cbb1f32de4a8fddba8c6469f523
code:coin.js
function setup(){
createCanvas(400,400)
total1 = 0
total2 = 0
trial = 0
}
function draw(){
clear()
trial++
fill('blue')
count = 0
for(i=0;i<1000000;i++){
if(random(2) > 1) count++
}
if(count == 500000) total1++
if(count < 495000) total2++
fill('black')
text(${total1} ${total2},10,70)
text(trial,10,90)
fill('blue')
rect(10,10,total1,10)
rect(10,30,total2,10)
}