Answer:---- Date:---15/07/2019



Problem(13) (10 points) An unfair coin is tossed, and it is assumed that the chance of...
The next four questions (5 to 8) refer to the following: An unfair coin is tossed three times. For each toss, the probability that the coin comes up heads is 0.6 and the probability that the coin comes up tails is 0.4. If we let X be the number of coin tosses that come up heads, observe that the possible values of Xare 0, 1, 2, and 3. Find the probability distribution of X. Hint: the problem can be solved...
One application of an absolute value inequality is the concept of the unfair coin. If a coin is tossed 100 times, we would expect approximately 50 of the tosses to be heads; however this is rarely the case.1. Toss a coin 100 times to test this hypothesis. Record the number of times the coin is heads and the number of times the coin is tails on the lines below. You may want to ask someone to tally the results of...
Tossing an unfair coin with P(H) = 0.6 and P(T) = 0.4. The coin is tossed 10 times (each toss is independent from others) and in any turn it shows heads, it is tossed again. We want to count the cases where the coin is tossed twice and the second toss, too, is head. For example, H T T T T T T T H T H T In this case, the count will be 1. Only the first turn...
The next three questions (5 to 8) refer to the following: An unfair coin is tossed three times. For each toss, the probability that the coin comes up heads is 0.6 and the probability that the coin comes up tails is 0.4. If we let X be the number of coin tosses that come up heads, observe that the possible values of X are 0, 1, 2, and 3. Find the probability distribution of X. Hint: the problem can be...
A fair coin is tossed n times. Let X be the number of heads in this n toss. Given X = x, we generate a Poisson random variable Y with mean x. Find Var[Y]. Answer depends on n.
Tom has three coins. Two are fair and one is unfair coin weighted so that heads is three times as likely as tails. He selects one of the coins at random and flips it. What is the probability it comes up heads? If it does come up heads, what is the probability it was the unfair coin?
Problem 2: A and B have a coin which they suspect is unfair, because they tossed it 100 times and got 65 heads. They want to decide who goes first in a game and they have no other coin to toss, so they have to use this coin. Describe a method to use this coin to make a fair decision. (There are at least three methods) Problem 3: Write a program to simulate the method you developed in Problem 2....
An experiment consists of tossing an unfair coin (53% chance of landing on heads) a specified number of times and recording the outcomes. (a) What is the probability that the first head will occur on the second trial? (Use 4 decimal places.) Does this probability change if we toss the coin three times? What if we toss the coin four times? The probability changes if we toss the coin three times, but does not change if we toss the coin...
An experiment consists of tossing an unfair coin (49% chance of landing on heads) a specified number of times and recording the outcomes. (a) What is the probability that the first head will occur on the second trial? (Use 4 decimal places.) Does this probability change if we toss the coin three times? What if we toss the coin four times? The probability changes if we toss the coin four times, but does not change if we toss the coin...
Write a program that simulates the toss of a coin. Whenever a coin is tossed the result will be either a head or tail. Prompt the user as shown by entering an ‘H’ for heads or ‘T’ for tails. Use a loop for input validation of an ‘h’ or ‘t’. Make sure that both an upper case and lower case will be accepted. Have the computer generate a random number. Assign a char variable a (‘h’ ^ ’t’) head or...