Question
19. A carnival booth sells tickets to a game for $1.25. In each play of the game, 2 fair coins (one side labeled H and
19. A carnival booth sells tickets to a game for $1.25. In each play of the game, 2 fair coins (one side labeled "H" and the other "T") are flipped. You get $1 per H flipped. What is the expected value of this game (in dollars)? Express your answer as a decimal rounded to 4 decimal places. Do not put $ in your answer.
20. Consider a small city in Central Asia (population: 120) where everyone's favorite color is either red or purple. Thirty of these people's favorite color is red.
If 13 people are selected at random and with replacement, which of the following lines of R code computes the probability that 7 of them have favorite color red?
A. pbinom(7, n=13, prob=0.25)
B. pnorm(7, mu=13, sigma=0.25, lower.tail=FALSE)
C. pnorm(7, mu=13, sigma=0.25)
D. dnorm(7, mu=13, sigma=0.25)
E. dbinom(7, n=13, prob=0.25)
F. pbinom(7, n=13, prob=0.25, lower.tail=FALSE)
21. If 13 people are selected at random and with replacement, which of the following lines of R code computes the probability that up to 7 of them have favorite color red?
A. pbinom(7, n=13, prob=0.25, lower.tail=FALSE)
B. dbinom(7, n=13, prob=0.25)
C. pnorm(7, mu=13, sigma=0.25, lower.tail=FALSE)
D. pbinom(7, n=13, prob=0.25)
E. pnorm(7, mu=13, sigma=0.25)
F. dnorm(7, mu=13, sigma=0.25)
22. If 13 people are selected at random and with replacement, which of the following lines of R code computes the probability that more than 7 of them have favorite color red?
A. pnorm(7, mu=13, sigma=0.25)
B. pbinom(7, n=13, prob=0.25)
C. dnorm(7, mu=13, sigma=0.25)
D. pbinom(7, n=13, prob=0.25, lower.tail=FALSE)
E. pnorm(7, mu=13, sigma=0.25, lower.tail=FALSE)
F. dbinom(7, n=13, prob=0.25)
23. South American women have an average height of 152.4 cm (5 feet) with a standard deviation of 4 cm (1.5 inches). For all parts of this problem, assume that the heights of South American women are normally distributed.
Here is some RStudio output related to this problem. Use it to answer this and following questions.Remember: pnorm has structure pnorm(x, mu, sigma, lower.tail) and qnorm has structure qnorm(p, mu, sigma, lower.tail)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started