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.
P(Z < -1.35) = 0.0885
(b) \(Z > 1.48\)
P(Z > 1.48) = 0.0694
(c) \(-0.4 < Z < 1.5\)
P(-0.4 < Z < 1.5) = 0.589
(d) \(|Z| > 2\)
P(|Z| > 2) = P(Z > 2) + P(Z < -2) = 2P(Z < -2) = 20.0228 = 0.0456
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.
Men_times ~ N(4313,\(583^2\)) Women_times ~ N(5261, \(807^2\))
Leo: Z = (x-\(\mu\)) / \(\sigma\) = (4948-4313)/583 = 1.09
Mary: Z = (5513-5261)/807 = 0.31
Mary ranked better in her group because while both Leo and Mary had times worse than the average, Mary’s time was closer to average with a z score closer to 0.
P(X > Leos_Time) = P(X > 4948) = 0.138 = 13.8%
DATA606::normalPlot(mean=4313,sd=583,bounds = c(4948,Inf))
P(X > Marys_Time) = P(X > 5513) = 0.377 = 37.7%
DATA606::normalPlot(mean=5261,sd=807,bounds = c(5513,Inf))
Yes, if these distributions are not normal then the probability calculations would most likely be different. Without the symmetry of the normal distribution, it would not be as clear whether Leo or Mary performed better in their respective groups.
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} \]
library(openintro)
## Please visit openintro.org for free statistics materials
##
## Attaching package: 'openintro'
## The following objects are masked from 'package:datasets':
##
## cars, trees
heights <- c(54, 55, 56, 56, 57, 58, 58, 59, 60, 60, 60, 61,
61, 62, 62, 63, 63, 63, 64, 65, 65, 67, 67, 69, 73)
#Within one SD of mean
sum(heights <= (4.58+61.52) & heights >= (61.52-4.58))/length(heights)
## [1] 0.68
#Within two SD of mean
sum(heights <= (2*4.58+61.52) & heights >= (61.52-2*4.58))/length(heights)
## [1] 0.96
#Within 3 SD of mean
sum(heights <= (3*4.58+61.52) & heights >= (61.52-3*4.58))/length(heights)
## [1] 1
This data appears to follow a normal distribution based on the probability plots below, which show a consistent adherence of the points to the theoretical line.
# Use the DATA606::qqnormsim function
DATA606::qqnormsim(heights)
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(defect) = 2%
P(n=10) = (0.98)^9 (0.02)^1 = 0.0167 = 1.67%
P = (0.98)^100 = 13.3%
\(\mu\) = 1/p = 1/0.02 = 50
\(\sigma\) = sqrt((1-p)/p^2) = 49.5
\(\mu\) = 1/0.05 = 20
\(\sigma\) = 19.5
Since scenario follows a geometric distribution, changing the probability of the event also changes the average and standard deviation of the wait time for success proportionally.
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.
P(boy) = 51%
P(2 boys, 1 girl) = (3C2)(0.51)^2(0.49) = 38.2%
3 scenarios: [boy, girl, boy],[boy, boy, girl],[girl, boy, boy]
(0.51)(0.49)(0.51) + (0.51)(0.51)(0.49) + (0.49)(0.51)(0.51) = 38.2% - Match
The part B approach would be very tedidous because there would be 8C3 = 56 different scenarios to list out and add together. Using the combination is much more efficient.
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.
P(n=10,k=3) = (9C2)(0.15)^3 (0.85)^7 = 3.9%
P(n=9,k=2)(0.15) = (8C1)(0.15)^3 (0.85)^7 = 0.86%
They are different because part B forces the 10th shot to be the 3rd success, whereas part A considers all the scenarios where the 3rd success comes at any shot from shot 3 onward.