edited by
320 views
1 votes
1 votes
A coin is such that after every toss the probability of same side coming again increases by $50\%$ from the initial value. If initially the probability of head and tail are the same, what is the expected number of tosses until we get a head?
edited by

1 Answer

1 votes
1 votes
$E_{\text{tosses}} = 0.5 \times 1 + 0.5 \times(1+ E_{HaT})$

$\implies E_{\text{tosses}} = 1 + 0.5 E_{HaT}$

$E_{HaT} =  0.25 \times 1 + 0.75 \times (1 + E_{HaT})$

$\implies E_{HaT} = 1 + 0.75 E_{HaT}$

$\implies E_{HaT} = \frac{1}{0.25} = 4$

$\therefore E_{\text{tosses}} = 1 + 0.5 \times 4 = 3$

So, we must toss the coin at least $3$ times to expect a Head.
Answer:

Related questions

1 votes
1 votes
2 answers
1
Arjun asked Jun 10, 2018
479 views
In a group of 11 people what is the probability that exactly two people have birthday on same day ?
1 votes
1 votes
0 answers
3
Arjun asked Jun 10, 2018
152 views
Consider the following C program?void mystery(int n){ if(n<=0) return; printf("%d", 0); mystery(n-1); mystery(n-2); } int main(){ int n=10; mystery(n); return 0; }The num...
1 votes
1 votes
0 answers
4
Arjun asked Jun 10, 2018
170 views
There are 8 students, each of them is asked to choose a letter from A to Z. How many different ways they can choose the letters such that the selected letters can form G...