Question

Toss a coin three times or toss three coins simultaneously, and record the number of heads....

Toss a coin three times or toss three coins simultaneously, and record the number of heads. Repeat the binomial experi- ment 100 times and compare your relative frequency distribution with the theoretical probability distribution.

Homework Answers

Answer #1

See, if we denote X as the total number of heads obtained, then X may take values 0,1,2,3. Now, probability of a toss of a single coin giving head is 1/2. So,

I have used the following R code to compare the relative frequency distribution with the original one. If you run this code, you should get the answer

######

x=rbinom(100,3,prob=1/2)

d=data.frame(table(x))

d$Freq=d$Freq/100

d1=data.frame(d,"Theo"=dbinom(0:3,3,1/2))

d1

#######

You will be able to see that the relative frequency distribution is almost same with the actual probability Distribution.

If you don't understand anything please comment. Don't put a negative vote instantly. It is a humble request.

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
Each member of the group toss 4 coins 10 times and observe how many heads are...
Each member of the group toss 4 coins 10 times and observe how many heads are shown. Then combine all observations. a. Create a frequency table displaying the results. b. Compare the frequency table to the theoretical probability distribution for the outcome when 4 coins are tossed. c. Find the mean for the frequency table. Compare your answer with the mean for the probability distribution and give the interpretation.
I toss a coin two times. X1 is the number of heads on the first toss....
I toss a coin two times. X1 is the number of heads on the first toss. X2 is the number of heads on the second toss. Find the mean of X1. Find the variance of X1. Find the mean of X1 + X2. (This is the number of heads in 2 tosses.) Find the variance of X1 + X2. If you tossed 10 coins, how many heads would you expect? What is the variance of the number of heads?
(a)Assuming that we toss a in-balanced coin for 100 times, and we get 40 heads from...
(a)Assuming that we toss a in-balanced coin for 100 times, and we get 40 heads from our experiment. Assuming that the relative frequency is just the true probability for tossing to get a head. Then we want to know: Probability for getting a head:   Expected variance if tossing 70 times:   (b)Given a poisson distribution with expectation 4, so the standard deviation of this distribution should be
Toss a fair coin for three times and let X be the number of heads. (a)...
Toss a fair coin for three times and let X be the number of heads. (a) (4 points) Write down the pmf of X. (hint: first list all the possible values that X can take, then calculate the probability for X taking each value.) (b) (4 points) Write down the cdf of X. (c) (2 points) What is the probability that at least 2 heads show up?
I toss a biased coin 15 times, with a probability of heads: ? = 0.25. Let...
I toss a biased coin 15 times, with a probability of heads: ? = 0.25. Let x equal the number of heads I toss. The probability I toss at least 2 heads is _________________ (3 points)
Suppose 3 coins are tossed 10 times. All three coins land on heads 1 time. Compare...
Suppose 3 coins are tossed 10 times. All three coins land on heads 1 time. Compare the experimental probability to the theoretical probability.
Each game costs $5 and four COINS are flipped simultaneously. If you get one head you...
Each game costs $5 and four COINS are flipped simultaneously. If you get one head you get $2, if you get two heads you get $4, if you get three heads you get $10. Question: create the experimental probability distribution, expected value and bar graph. Compare the distribution, bar graph and expected value to the theoretical. Four Coin Filp :1-100 Three COINS out of a hundred trials are heads with a probability of 25 Two COINS out of a hundred...
Toss four pennies 30 times and record the number of heads in each toss. a. Construct...
Toss four pennies 30 times and record the number of heads in each toss. a. Construct a dot plot for the data. b. draw a bar graph for the data.
a coin is tossed 50 times and it lands on heads 28 times. Find the experimental...
a coin is tossed 50 times and it lands on heads 28 times. Find the experimental probability and the theoretical probability of the coin landing on heads. Then, compare the experimental and theoretical probabilities
Q3. Suppose you toss n “fair” coins (i.e., heads probability = 1/21/2). For every coin that...
Q3. Suppose you toss n “fair” coins (i.e., heads probability = 1/21/2). For every coin that came up tails, suppose you toss it one more time. Let X be the random variable denoting the number of heads in the end. What is the range of the variable X (give exact upper and lower bounds) What is the distribution of X? (Write down the name and give a convincing explanation.)