Jumlah lemparan yang diharapkan sampai kepala pertama muncul

18

Misalkan koin yang adil dilemparkan berulang kali sampai kepala diperoleh untuk pertama kalinya.

  • Berapa jumlah lemparan yang diharapkan yang akan dibutuhkan?
  • Berapa jumlah ekor yang diharapkan yang akan diperoleh sebelum kepala pertama diperoleh?
nicole900
sumber
2
Tautan ini memiliki jawaban untuk kedua pertanyaan: en.wikipedia.org/wiki/Geometric_distribution
swmo
2
Jika ini adalah pertanyaan belajar mandiri, silakan tambahkan tag.
Xi'an

Jawaban:

17

Ini dapat dijawab menggunakan distribusi geometris sebagai berikut:

Jumlah kegagalan k - 1 sebelum keberhasilan pertama (kepala) dengan probabilitas keberhasilan p ("kepala") diberikan oleh:

p(X=k)=(1p)k1p

dengan k menjadi jumlah total lemparan termasuk 'kepala' pertama yang mengakhiri percobaan.

Dan nilai yang diharapkan dari X untuk p yang diberikan adalah 1/p=2 .

Derivasi dari nilai yang diharapkan dapat ditemukan di sini . Langkah terakhir yang dibiarkan implisit adalah sebagai berikut:

untuk dicolokkan ke ekspresi:ddr11r=1(1r)2

. Denganr=1-p, itu disederhanakan menjadiE(X)=p1px=1x rx=p1p r (ddr11r)=p1p r 1(1r)2r=1p

, membenarkan penggunaannya di atas.]E(X)=1p

Atau, kita bisa menggunakan distribusi binomial negatif yang ditafsirkan sebagai jumlah kegagalan sebelum keberhasilan pertama. Fungsi massa probabilitas diberikan sebagai p (jumlah kegagalan, n , sebelum mencapai r keberhasilan | diberi probabilitas tertentu, p , keberhasilan dalam setiap percobaan Bernoulli):

p(n;r,p)=(n+r1r1)pr(1p)n

Harapan untuk jumlah uji coba, n + r diberikan oleh rumus umum:

r(1p)

Mengingat parameter yang diketahui: r = 1 dan p = 0,5 ,

E(n+r;1,0.5)=r1p=110.5=2

Oleh karena itu kita dapat berharap untuk membuat dua lemparan sebelum mendapatkan kepala pertama dengan jumlah ekor yang diharapkan adalah .E(n+r)r=1

Kita dapat menjalankan simulasi Monte Carlo untuk membuktikannya:

   set.seed(1)

p <- 1/2

reps <- 10000                         # Total number of simulations.

tosses_to_HEAD <- 0                   # Setting up an empty vector to add output to.

for (i in 1:reps) {
  head <- 0                           # Set the variable 'head' to 0 with every loop.
  counter <- 0                        # Same forlocal variable 'counter'.
  while (head == 0) {
    head <- head + rbinom(1, 1, p)    # Toss a coin and add to 'head'
    counter <- counter + 1            # Add 1 to 'counter'
  }
  tosses_to_HEAD[i] <- counter        # Append number in counter after getting heads.
}

mean(tosses_to_HEAD)
[1] 2.0097
Antoni Parellada
sumber
1
Untuk pertanyaan saat ini, distribusi disebut distribusi Geometrik . G(p)
Xi'an
And the expected value of p 1 / p dan bagaimana orang seharusnya membuktikan bahwa? X for a given p is 1/p
Dilip Sarwate
Ada derivasi yang bagus pada math.stackexchange.com/questions/235927/… Tapi saya bisa memasukkan akhir derivasi itu pada respons saya.
Antoni Parellada
4

Model game dengan menggambar tiket keluar dari kotak. Ada dua jenis tiket. Di satu tertulis "Berhenti, Anda melemparkan kepala"; di sisi lain tertulis "Lanjutkan, Anda melemparkan ekor." Jumlah lemparan tambahan yang diharapkan dalam kasus pertama adalah sedangkan jumlah lemparan tambahan yang diharapkan dalam kasus kedua adalah x , katakanlah - kita belum mengetahuinya dan harus mengetahuinya.0x

Tuliskan harapan ini di tiket masing-masing: ini adalah nilai dari tiket.

Tiga hal yang kita ketahui adalah:

  1. 0p

  2. x1p

  3. Harapan dari undian tunggal ini adalah, menurut definisi, jumlah nilai probabilitas tertimbang untuk semua jenis tiket:

    hal×0+(1-hal)×x=(1-hal)x.

Let us interpret this number: it is the expected number of additional tosses that will be needed until a head appears. Since draws of tickets correspond to coin tosses, adding in the one draw needed to obtain a ticket gives us the expected number of tosses--which is just x itself. Equating these two expressions,

x=1+(1p)x.

Solving for x answers the first question. Since the number of tails is always one less than the number of draws, the expected number of tails also must be one less than the expected number of draws. Therefore x1 answers the second question.


A second intuitively clear solution can be obtained by contemplating a very long sequence of n tosses. How many games were played? Answer: the number of heads (plus one more incomplete game if the sequence ends with a series of tails). How many heads are expected? Answer: pn. Call this number h. The Weak Law of Large Numbers asserts that the actual number of heads is highly likely to be very close to pn provided n is sufficiently large. Therefore the average game length x, given by some number between n/h and n/(h+1), will be arbitrarily close to n/(pn), whence it must equal x itself.

This leads to an extremely efficient way to simulate the distribution of game lengths. Here is R code. It records "heads" as true values in a boolean array and computes the tosses between successive true values.

p <- 1/3                                           # Set the chance of heads
tosses <- runif(1e6) < p                           # Make a million tosses
sim <- diff(c(TRUE, which(tosses)))                # Compute game lengths
hist(sim, xlab="Game length", main="Distribution") # Graph their distribution
mean(sim)                                          # Report the average length

When I ran this code after setting the seed to 17 (set.seed(17)), the output differed from x by only a tiny amount.

whuber
sumber
Could you help me understand why the "x" of the drawing game and the "x" in the second equation represent the same thing? I have no idea how do you get the second equation. Thank you very much.
Light
@Light The second equation is explained in the paragraph preceding it.
whuber
♦ Thank u for ur reply. I've read the definition of x and the paragraph you said again and again, but I still don't understand. Let me say my understanding and pls help me know if I misunderstand sth. From my understanding, x is the "additional" expected number in the drawing tickets game, which is a different game from the original game, beacause the expectation(let me call it "E") of the coin game includes the first tossing. In my opinion, E should be "x + 1", but they're not the same thing. In the equation, you made the x and E the same thing that makes me confused. Thank u.
Light
2

Let X be the number of coin flips required until a head is obtained. So, we need to calculate E(X) (i.e. expected value of X).

We can condition E(X) on whatever our first flip is. Let E(X|H) denote the number of remaining coin flips given I got a head on the first flip. Similarly, let E(X|T) denote the number of remaining coin flips given I got a tail on the first flip.

By first step conditioning, we have

E(X)=12(1+E(X|H))+12(1+E(X|T))

Now, as E(X|H) denoted the remaining flips after receiving head on the first, it will be equal to 0 as I don't need to flip after getting 1 head.

And, E(X|T)=E(X), as we did not make any progress towards getting 1 head.

So, E(X)=12(1+0)+12(1+E(X))

=> E(X)=2

grijesh agrawal
sumber