In: Statistics and Probability
please use R and show me the code that you used? My main issue is that since not all of these are whole numbers I am a bit confused on how to plug this into R. Thanks!!
We will use the code pnorm in R as:
pnorm(q, mean, sd)
example:
pnorm(1.96, 0, 1)
Gives the area under the standard normal curve to the left of
1.96,i.e. ~0.975
R code
#Probability that her systolic blood pressure is less
than 125.17
pnorm(125.17,mean=125.17,sd=107^0.5)
#Probability that her systolic blood pressure is between
112 and 140
pnorm(140,mean=125.17,sd=107^0.5)-pnorm(112,mean=125.17,sd=107^0.5)
#Probability that her systolic blood pressure is greater
than 140
1-pnorm(140,mean=125.17,sd=107^0.5)
R code with output.
> #Probability that her systolic blood pressure is
less than 125.17
> pnorm(125.17,mean=125.17,sd=107^0.5)
[1] 0.5
> #Probability that her systolic blood pressure is
between 112 and 140
>
pnorm(140,mean=125.17,sd=107^0.5)-pnorm(112,mean=125.17,sd=107^0.5)
[1] 0.8226918
> #Probability that her systolic blood pressure is
greater than 140
> 1-pnorm(140,mean=125.17,sd=107^0.5)
[1] 0.0758332