Isi 2015 PEA Q 26.

classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Isi 2015 PEA Q 26.

Dr. Strange
Need help  :

Reply | Threaded
Open this post in threaded view
|

Re: Isi 2015 PEA Q 26.

Arya
This question has been asked once before.Not yet solved.
Reply | Threaded
Open this post in threaded view
|

Re: Isi 2015 PEA Q 26.

Akash
In reply to this post by Dr. Strange
Let n be money left with Priya at any given time.
And,  p(n) is her chance chances of winning the total amount a + b (all of it)

p(0)=0 [she has lost]
p(n) = p(n+1)/2 + p(n-1)/2 [at every trial, win or lose one rupee, both with the probability of 1/2]
2p(n) = p(n+1) + p(n-1)
p(n+1) - p(n) = p(n) - p(n-1)

By recursion,
p(n) = n p(1)

We know that p(a + b) = 1
p(1) = 1 / (a + b)
p(a)=a*p(1)=a/(a+b)
Reply | Threaded
Open this post in threaded view
|

Re: Isi 2015 PEA Q 26.

Dr. Strange
Much obliged.