library(DATA606)
## Loading required package: shiny
## Loading required package: openintro
## Please visit openintro.org for free statistics materials
##
## Attaching package: 'openintro'
## The following objects are masked from 'package:datasets':
##
## cars, trees
## Loading required package: OIdata
## Loading required package: RCurl
## Loading required package: bitops
## Loading required package: maps
## Loading required package: ggplot2
##
## Attaching package: 'ggplot2'
## The following object is masked from 'package:openintro':
##
## diamonds
## Loading required package: markdown
##
## Welcome to CUNY DATA606 Statistics and Probability for Data Analytics
## This package is designed to support this course. The text book used
## is OpenIntro Statistics, 3rd Edition. You can read this by typing
## vignette('os3') or visit www.OpenIntro.org.
##
## The getLabs() function will return a list of the labs available.
##
## The demo(package='DATA606') will list the demos that are available.
##
## Attaching package: 'DATA606'
## The following object is masked from 'package:utils':
##
## demo
Area under the curve, Part I. (4.1, p. 142) What percent of a standard normal distribution \(N(\mu=0, \sigma=1)\) is found in each region? Be sure to draw a graph.
mu <- 0
sd <- 1
Z <- -1.35
x <- Z * sd + mu
pnorm(x, mean = 0, sd = 1)
## [1] 0.08850799
# Probability curve plot
normalPlot(mean = 0, sd = 1, bounds = c(-Inf, x), tails = FALSE)
The percent of a standard normal distribution found in this region is: 8.85%
mu <- 0
sd <- 1
Z <- 1.48
x <- Z * sd + mu
#P(Z > 1.48) = 1 - P(Z<1.48)
1 - pnorm(Z)
## [1] 0.06943662
# Probability curve plot
normalPlot(mean = 0, sd = 1, bounds = c(x, Inf), tails = FALSE)
The percent of a standard normal distribution found in this region is: 6.94%
# P(−0.4<Z<1.5) = P(Z<1.5) - P(Z<-0.4)
mu <- 0
sd <- 1
Z1 <- -0.4
Z2 <- 1.5
x1 <- Z1 * sd + mu
x2 <- Z2 * sd + mu
p1 <- pnorm(x1, mean = 0, sd = 1)
p2 <- pnorm(x2, mean = 0, sd = 1)
p2 - p1
## [1] 0.5886145
# Probability curve plot
normalPlot(mean = 0, sd = 1, bounds = c(x1, x2), tails = FALSE)
The percent of a standard normal distribution found in this region is: 58.9%
# |Z| > 2 ==> Z < -2 or Z > 2
# so P(|Z|>2) = P(Z < -2 or Z > 2) = P(Z< -2) + P(Z > 2) = P(Z< -2) + ( 1 - P(Z < 2))
#P(Z< -2) + ( 1 - P(Z < 2))
pnorm(-2, mean = 0, sd = 1) + 1 - pnorm(2, mean = 0, sd = 1)
## [1] 0.04550026
# Probability curve plot
normalPlot(mean = 0, sd = 1, bounds = c(-2, 2), tails = TRUE)
The percent of a standard normal distribution found in this region is: 4.55%
Triathlon times, Part I (4.4, p. 142) In triathlons, it is common for racers to be placed into age and gender groups. Friends Leo and Mary both completed the Hermosa Beach Triathlon, where Leo competed in the Men, Ages 30 - 34 group while Mary competed in the Women, Ages 25 - 29 group. Leo completed the race in 1:22:28 (4948 seconds), while Mary completed the race in 1:31:53 (5513 seconds). Obviously Leo finished faster, but they are curious about how they did within their respective groups. Can you help them? Here is some information on the performance of their groups:
Remember: a better performance corresponds to a faster finish.
Answer:
For Men (Leo’s Group): N(µ = 4313, σ = 583)
For Women (Mary’s Group): N(µ = 5261, σ = 807)
Answer:
Z_Leo = (4948 - 4313)/583 = 1.09
Z_Mary = (5513 - 5261)/807 = 0.31
Z_Leo <- (4948 - 4313)/583
Z_Mary <- (5513 - 5261)/807
Z_Leo
## [1] 1.089194
Z_Mary
## [1] 0.3122677
Leo is 1.09 standard deviations slower than the mean for his men group. Mary is 0.31 standard deviations slower than the mean for her women group.
Answer: Mary was faster with respect to her group because of her Z-score which was lower, since lower Z-scores means faster times. So Mary did rank better than Leo; only 13.8% were slower than Leo, but 37.8% were slower than Mary (see following calculations).
#for Leo
1-pnorm(4948, mean = 4313, sd=583)
## [1] 0.1380342
#for Mary
1-pnorm(5513, mean = 5261, sd=807)
## [1] 0.3774186
Answer: Leo finished faster than 13.8% of triathletes.
#for Leo
1 - pnorm(Z_Leo, mean = 0, sd = 1)
## [1] 0.1380342
Answer: Mary finished faster than 37.7% of triathletes.
#for Mary
1 - pnorm(Z_Mary, mean = 0, sd = 1)
## [1] 0.3774186
Answer: The answer to (b) will be the same, but the other answers will change, because for the other distributions, the percentiles are not the same.
Heights of female college students Below are heights of 25 female college students.
\[ \stackrel{1}{54}, \stackrel{2}{55}, \stackrel{3}{56}, \stackrel{4}{56}, \stackrel{5}{57}, \stackrel{6}{58}, \stackrel{7}{58}, \stackrel{8}{59}, \stackrel{9}{60}, \stackrel{10}{60}, \stackrel{11}{60}, \stackrel{12}{61}, \stackrel{13}{61}, \stackrel{14}{62}, \stackrel{15}{62}, \stackrel{16}{63}, \stackrel{17}{63}, \stackrel{18}{63}, \stackrel{19}{64}, \stackrel{20}{65}, \stackrel{21}{65}, \stackrel{22}{67}, \stackrel{23}{67}, \stackrel{24}{69}, \stackrel{25}{73} \]
Answer: Yes, the heights approximately follow the 68-95-99.7% Rule.
pnorm(66.1, mean=61.52, sd=4.58) - pnorm(56.94, mean=61.52, sd=4.58)
## [1] 0.6826895
pnorm(70.68, mean=61.52, sd=4.58) - pnorm(52.36, mean=61.52, sd=4.58)
## [1] 0.9544997
pnorm(75.26, mean=61.52, sd=4.58) - pnorm(47.78, mean=61.52, sd=4.58)
## [1] 0.9973002
Answer: Yes, the data seem to follow the normal distribution. the histogram does not look so symetric like its supposed to be, but the the Bell curve is a good approximation. The quantiles plot is close to a line, which what must happen if it were normally distributed.
# Use the DATA606::qqnormsim function
Defective rate. (4.14, p. 148) A machine that produces a special type of transistor (a component of computers) has a 2% defective rate. The production is considered a random process where each transistor is independent of the others.
p <- (1-.02)^(10-1)*.02
p
## [1] 0.01667496
p <- (1-.02)^100
p
## [1] 0.1326196
# expected value = e.v = 1/p
e.v <- 1/.02
e.v
## [1] 50
# sd = sqrt((1-p))/p*p)
sd <- sqrt((1-.02)/(.02*.02))
sd
## [1] 49.49747
# expected value = e.v = 1/p
e.v <- 1/.05
e.v
## [1] 20
# sd = sqrt((1-p))/p*p)
sd <- sqrt((1-.05)/(.05*.05))
sd
## [1] 19.49359
Answer: when the probability of failure increases, implies that the event is more common. So both the expected number of trials before a success and the standard deviation of waiting time will decrease.
Male children. While it is often assumed that the probabilities of having a boy or a girl are the same, the actual probability of having a boy is slightly higher at 0.51. Suppose a couple plans to have 3 kids.
Answer: the probability that two of them will be boys is 0.38.
pb <- .51
p = dbinom(2,3,pb)
p
## [1] 0.382347
Answer: the possiblities are: gbb, bbg and bgb
# so p = P(gbb) + P(bbg) + P(bgb)
p <- (.49 * .51 * .51) + (.51 * .51 * .49) + (.51 * .49 * .51)
p
## [1] 0.382347
Answer: More kids they want to have, more combinations would be. In case of planning to have 8 kids, they will be 56 combinations, and to do all the calculations using the addition rule like in (b), will be tedious, laborious and error prone. But if we use the (a) approach, it’s just one line formula where we plug the numbers.
Serving in volleyball. (4.30, p. 162) A not-so-skilled volleyball player has a 15% chance of making the serve, which involves hitting the ball so it passes over the net on a trajectory such that it will land in the opposing team’s court. Suppose that her serves are independent of each other.
Answer: the probability that on the 10th try she will make her 3rd successful serve is 0.039 .
p_ms <- .15
n <- 10
k <- 3
p <- choose(n-1, k-1) * (1-p_ms)^(n-k)*p_ms^k
p
## [1] 0.03895012
Answer: Since all her serves are independent of each others, the probablity that her 10th serve will be successful will still be 0.15 .
Answer: (a) is dealing with a join probability, while (b) is dealing with a single independent trial (the probability that her 10th trail will be suceessful).