Question

What is the probability that a penny I have will land "heads" when tossed? To analyze...

What is the probability that a penny I have will land "heads" when tossed? To analyze this question I randomly toss the coin, n=3901 times. On x = 2500 of these tosses, the penny landed "heads." Based upon this sample, I wish to estimate p, the true probability of the penny landing "heads" when tossed. Let p̂ be the sample proportion of "heads" in our sample. Answer the following using R code.

h) Assuming the same p̂ value =0.6409, what sample size would have made the 96% confidence interval for p have a length of .015 or less?

Homework Answers

Answer #1

Solution :

Given that,

= 0.6409

1 - = 1-0.6409 = 0.3591

margin of error = E = 0.015

At 96% confidence level

= 1-0.96% =1-0.96 =0.04

/2 =0.04/ 2= 0.02

Z/2 = Z0.02 = 2.054

Z/2 = 2.054

sample size = n = (Z / 2 / E )2 * * (1 - )

= (2.054/0.015)2 *0.6409*03591

= 4315

sample size = n = 4315

Know the answer?
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
Similar Questions
A penny, which is unbalanced so that the probability of heads is 0.40, is tossed twise....
A penny, which is unbalanced so that the probability of heads is 0.40, is tossed twise. What is the covariance of Z, the number of heads obtained on the first toss, and W, the total number of heads in the two tosses of the coin?
A penny which is unbalanced so that the probability of heads is 0.4 is tossed twice....
A penny which is unbalanced so that the probability of heads is 0.4 is tossed twice. Let     Z be the number of heads obtained in the first toss. Let W be the total number of heads     obtained in the two tosses of the coin. a)Calculate the correlation coefficient between Z and W b)Show numerically that Cov(Z, W) = VarZ c)Show without using numbers that Cov(Z, W) = VarZ
A fair coin is tossed 4 times, what is the probability that it lands on Heads...
A fair coin is tossed 4 times, what is the probability that it lands on Heads each time? You have just tossed a fair coin 4 times and it landed on Heads each time, if you toss that coin again, what is the probability that it will land on heads? Give examples of two independent events. Dependent events are (sometimes, always, never) (choose one) mutually exclusive. If you were studying the effect that eating a healthy breakfast has on a...
Let p denote the probability that a particular coin will show heads when randomly tossed. It...
Let p denote the probability that a particular coin will show heads when randomly tossed. It is not necessarily true that the coin is a “fair” coin wherein p=1/2. Find the a posteriori probability density function f(p|TN ) where TN is the observed number of heads n observed in N tosses of a coin. The a priori density is p~U[0.2,0.8], i.e., uniform over this interval. Make some plots of the a posteriori density.
Assume p represents the probability that a particular coin will show heads when randomly tossed. Don't...
Assume p represents the probability that a particular coin will show heads when randomly tossed. Don't assume its true that the coin is a “fair” coin wherein p=1/2. Determine the a posteriori probability density function f(p|TN) where TN is the observed number of heads n observed in N tosses of a coin. The a priori density is p~U[0.2,0.8], i.e., uniform over this interval. Create some plots of the a posteriori density.
Simulates 2 coin toss and calculate emperical probability of getting double heads. # Function tossl() simulates...
Simulates 2 coin toss and calculate emperical probability of getting double heads. # Function tossl() simulates coin toss toss <- function(x) floor(2*runif(x)) # Let c1 tosses from coin 1 and c2 represent tosses of coin 2. We’ll store 1000 coin tosses in c1 and c2 c1=toss(1000) c2=toss(1000) dheads=sum((c1+c2)==2) # Double heads dheads will occurs when corresponding sum of outcomes is 2 # == operator is TRUE only when the sum of corresponding tosses is 2 (Two heads came up) #sum((c1+c2)==2)...
When a penny made before 1982, is tossed up into the air the probability of landing...
When a penny made before 1982, is tossed up into the air the probability of landing tails up is pretty close to 0.500 ( 50% chance); however, if the penny is set spinning on a flat smooth horizontal surface, it is more than 80% likely to land tails up. Explain.
A coin with P[Heads]= p and P[Tails]= 1p is tossed repeatedly (the tosses are independent). Define...
A coin with P[Heads]= p and P[Tails]= 1p is tossed repeatedly (the tosses are independent). Define (X = number of the toss on which the first H appears, Y = number of the toss on which the second H appears. Clearly 1X<Y. (i) Are X and Y independent? Why or why not? (ii) What is the probability distribution of X? (iii) Find the probability distribution of Y . (iv) Let Z = Y X. Find the joint probability mass function
A coin with P[Heads]= p and P[Tails]= 1p is tossed repeatedly (the tosses are independent). Define...
A coin with P[Heads]= p and P[Tails]= 1p is tossed repeatedly (the tosses are independent). Define (X = number of the toss on which the first H appears, Y = number of the toss on which the second H appears. Clearly 1X<Y. (i) Are X and Y independent? Why or why not? (ii) What is the probability distribution of X? (iii) Find the probability distribution of Y . (iv) Let Z = Y X. Find the joint probability mass function
Suppose I have two biased coins: coin #1, which lands heads with probability 0.9999, and coin...
Suppose I have two biased coins: coin #1, which lands heads with probability 0.9999, and coin #2, which lands heads with probability 0.1. I conduct an experiment as follows. First I toss a fair coin to decide which biased coin I pick (say, if it lands heads, I pick coin #1, and otherwise I pick coin #2) and then I toss the biased coin twice. Let A be the event that the biased coin #1 is chosen, B1 the event...