Question

Suppose that the probability, X, that a randomly selected coin from a large collection comes up...

Suppose that the probability, X, that a randomly selected coin from a large collection comes up heads when tossed has a uniform distribution on [0,1].

a) Determine the probability of the event, HH, that a coin selected at random from the collection comes up heads both times when tossed twice.

b) Determine the conditional p.d.f of X given the event HH.

c) Determine the probability the same coin comes up heads again if it tossed a third time.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Suppose that the probability, X, that a randomly selected coin from a large collection comes up heads when tossed has a uniform distribution on [0,1] that means if headcomes with probability 0.5.

a) the probability of the event, HH, that a coin selected at random from the collection comes up heads both times when tossed twice is

x1=runif(100,0,1)
x2=runif(100,0,1)
p1=length(x1[x1<=0.5])/100
p1
p2=length(x2[x2<=0.5])/100
p2
p=p1*p2
p

0.2448

b) the conditional p.d.f of X given the event HH

c)

> x1=runif(100,0,1)
> x2=runif(100,0,1)
> x3=runif(100,0,1)
> p1=length(x1[x1<=0.5])/100
> p1
[1] 0.52
> p2=length(x2[x2<=0.5])/100
> p2
[1] 0.53
> p3=length(x3[x3<=0.5])/100
> p3
[1] 0.49
> p=p1*p2*p3
> p
[1] 0.135044
>

Add a comment
Know the answer?
Add Answer to:
Suppose that the probability, X, that a randomly selected coin from a large collection comes up...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT