Chapter 3 - Probability

Hazal Gunduz

library(tidyverse)
## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ──
## ✓ ggplot2 3.3.5     ✓ purrr   0.3.4
## ✓ tibble  3.1.4     ✓ dplyr   1.0.7
## ✓ tidyr   1.1.3     ✓ stringr 1.4.0
## ✓ readr   2.0.1     ✓ forcats 0.5.1
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## x dplyr::filter() masks stats::filter()
## x dplyr::lag()    masks stats::lag()
library(grid)
  1. Dice rolls. (3.6, p. 92) If you roll a pair of fair dice, what is the probability of
  1. getting a sum of 1?

Answer: The probability of getting a sum of 1 from a pair of fair dice is 0.

  1. getting a sum of 5?

Answer: The probability of getting a sum of 5 from a pair of fair dice is 4/36 = 11.11%.

  1. getting a sum of 12?

Answer: The probability of getting a sum of 5 from a pair of fair dice is 1/36 = 2.78%

  1. Poverty and language. (3.8, p. 93) The American Community Survey is an ongoing survey that provides data every year to give communities the current information they need to plan investments and services. The 2010 American Community Survey estimates that 14.6% of Americans live below the poverty line, 20.7% speak a language other than English (foreign language) at home, and 4.2% fall into both categories.
  1. Are living below the poverty line and speaking a foreign language at home disjoint?

Answer: No, there are 4.2% of the population living below the poverty line and speaking a language other than English.

  1. Draw a Venn diagram summarizing the variables and their associated probabilities.
library(VennDiagram)
## Loading required package: futile.logger
grid.newpage()
draw.pairwise.venn(14.6, 20.7, 4.2, category = c("Poverty", "Other Language"), Ity = rep ("blank", 2), fill = c("green", "orange"), alpha = rep(0.5, 2), cat.pos = c(0,0), cat.dist = rep(0.025, 2))

## (polygon[GRID.polygon.1], polygon[GRID.polygon.2], polygon[GRID.polygon.3], polygon[GRID.polygon.4], text[GRID.text.5], text[GRID.text.6], text[GRID.text.7], text[GRID.text.8], text[GRID.text.9])
  1. What percent of Americans live below the poverty line and only speak English at home.

=> 14.6% - 4.2% = 10.4%

  1. What percent of Americans live below the poverty line or speak a foreign language at home?

=> 14.6 + 20.7 - 4.2 = 31.1%

  1. What percent of Americans live above the poverty line and only speak English at home?

100% - (20.7 + 14.6 - 4.2) = 68.9%

  1. Is the event that someone lives below the poverty line independent of the event that the person speaks a foreign language at home?

=> Those events aren’t independent.

  1. Assortative mating. (3.18, p. 111) Assortative mating is a nonrandom mating pattern where individuals with similar genotypes and/or phenotypes mate with one another more frequently than what would be expected under a random mating pattern. Researchers studying this topic collected data on eye colors of 204 Scandinavian men and their female partners. The table below summarizes the results. For simplicity, we only include heterosexual relationships in this exercise.

                            Partner (female)
    
    
                                   Blue    Brown    Green    Total 
    
                          Blue      78      23       13       114 
                          Brown     19      23       12       54 
                          Green     11      9        16       36 
                          Total     108     55       41       204
f_blue <- 108 / 204
f_brown <- 55 / 204
f_green <- 41 / 204

m_blue <- 114 / 204
m_brown <- 54 / 204
m_green <- 36 / 204

both_blue <- 78 / 204
both_brown <- 54 / 204
both_green <- 36 / 204

both_blue <- 78 / 204
both_brown <- 23 / 204
both_green <- 16 / 204

m_brown_f_blue <- 19 / 204
m_green_f_blue <- 11 / 204
  1. What is the probability that a randomly chosen male respondent or his partner has blue eyes?
either_blue <- f_blue + m_blue - both_blue
either_blue
## [1] 0.7058824
  1. What is the probability that a randomly chosen male respondent with blue eyes has a partner with blue eyes?
m_blue_both_blue <- both_blue / m_blue
m_blue_both_blue
## [1] 0.6842105
  1. Whatistheprobabilitythatarandomlychosenmalerespondentwithbrowneyeshasapartner with blue eyes? What about the probability of a randomly chosen male respondent with green eyes having a partner with blue eyes?
p_m_brown_f_blue <- m_brown_f_blue / m_brown
p_m_brown_f_blue
## [1] 0.3518519
p_m_green_f_blue <- m_green_f_blue / m_green
p_m_green_f_blue
## [1] 0.3055556
  1. Does it appear that the eye colors of male respondents and their partners are independent? Explain your reasoning.

=> No, it appears that male eye color and their partner’s eye color are dependent.

Books on a bookshelf. (3.26, p. 114) The table below shows the distribution of books on a bookcase based on whether they are nonfiction or fiction and hardcover or paperback.

                                    Format
                       Hardcover      Paperback       Total 
        Fiction          13              59             72
        Nonfiction       15              8              23
        Total            28              67             95
        
  1. Find the probability of drawing a hardcover book first then a paperback fiction book second when drawing without replacement.
prob <- paste(round(((28/95)*(59/94))*100, digits = 2), "%", sep = "")
prob
## [1] "18.5%"
  1. Determine the probability of drawing a fiction book first and then a hardcover book second, when drawing without replacement.
prob <- paste(round(((28/95)*(59/94))*100, digits = 2), "%", sep = "")
prob
## [1] "18.5%"
  1. Calculate the probability of the scenario in part (b), except this time complete the calculations under the scenario where the first book is placed back on the bookcase before randomly drawing the second book.
prob <- paste(round(((72/9)*(28/95))*100, digits = 2), "%", sep = "")
prob
## [1] "235.79%"
  1. The final answers to parts (b) and (c) are very similar. Explain why this is the case.

=> The observations are almost independent even when sampling with no replacement.

Baggage fees. (3.34, p. 124) An airline charges the following baggage fees: $25 for the first bag and $35 for the second. Suppose 54% of passengers have no checked luggage, 34% have one piece of checked luggage and 12% have two pieces. We suppose a negligible portion of people check more than two bags.

  1. Build a probability model, compute the average revenue per passenger, and compute the corresponding standard deviation.
fees <- c(0, 25, 35)
proportion <- c(0.54, 0.34, 0.12)
model <- fees*proportion

mean(model)
## [1] 4.233333
sd(model)
## [1] 4.250098
  1. About how much revenue should the airline expect for a flight of 120 passengers? With what standard deviation? Note any assumptions you make and if you think they are justified.
sum(model*120)
## [1] 1524
120*sd(model)
## [1] 510.0118

Income and gender. (3.38, p. 128) The relative frequency table below displays the distribution of annual total personal income (in 2009 inflation-adjusted dollars) for a representative sample of 96,420,486 Americans. These data come from the American Community Survey for 2005-2009. This sample is comprised of 59% males and 41% females.

          Income                Total
          $1 to $9,999 or loss  2.2% 
          $10,000 to $14,999    4.7% 
          $15,000 to $24,999    15.8% 
          $25,000 to $34,999    18.3% 
          $35,000 to $49,999    21.2% 
          $50,000 to $64,999    13.9% 
          $65,000 to $74,999    5.8% 
          $75,000 to $99,999    8.4% 
          $100,000 or more      9.7%
                        
  1. Describe the distribution of total personal income.
inc <- c(5, 12.5, 20, 29.5, 42.5, 57.5, 70, 88, 110)
tot <- c(0.022, 0.047, 0.158, 0.183, 0.212, 0.139, 0.058, 0.084, 0.097)
barplot(tot, inc)

  1. What is the probability that a randomly chosen US resident makes less than $50,000 per year?
sum(tot)
## [1] 1
p_earn_less_than_50 <- sum(tot[0:5])
p_earn_less_than_50
## [1] 0.622
  1. What is the probability that a randomly chosen US resident makes less than $50,000 per year and is female? Note any assumptions you make.
p_earn_less_than_50_F <- sum(tot[0:5])*0.41
p_earn_less_than_50_F
## [1] 0.25502
  1. The same data source indicates that 71.8% of females make less than $50,000 per year. Use this value to determine whether or not the assumption you made in part (c) is valid.
Female <- 0.718 *0.41
Female
## [1] 0.29438