Q1

a

b

Q2

Assumes that

  • The outcome of each transmission is either error or success
  • The transmissions are identical
  • The transmissions are independent

Denote the number of errors in these transmissions by the r.v.

1 - pbinom(3, 10**5, 1/10**5)

Q3

qnorm(0.99, mean=175, sd=8)

From R we get the height of a person at the 99th percentile is 193.6108 cm

The minimum door height would be 193.6108 + 5 = 198.6108 cm

Q4

Let denotes the lifetimes of chips,

1 - pnorm(-2)

Let denotes the number of chips whose lifetimes are more than hours,

1 - pbinom(95, 100, 1 - pnorm(-2))

Q5

a

Let denotes the annual rainfall,

1 - pnorm(42, mean=40, sd=8.7)

Let denotes that the rainfall is over 42 inches in each year, we can see that the outcomes is either true or false, and we assumes that the annual rainfalls are independent and identical between years,

b

Assumes the annual rainfalls are independent between years

m <- 3 * 40
v <- 3 * 8.7**2
s <- sqrt(v)
 
1 - pnorm(126, mean=m, sd=s)
# 1 - pnorm((126 - m) / s) # Alternative