Assume that systolic blood pressure for adult women is normally distributed with a mean of 125.17...

Free

50.1K

Verified Solution

Question

Statistics

  1. Assume that systolic blood pressure for adult women is normallydistributed with a mean of 125.17 with a variance of 107.0. Anindividual woman is selected from the population. Find thefollowing probabilities.
      1. What is the probability that her systolic blood pressure isless than 125.17
      1. What is the probability that her systolic blood pressure isbetween 112 and 140?
      1. What is the probability that her systolic blood pressure willbe greater than 140?

please use R and show me the code that you used? My main issueis that since not all of these are whole numbers I am a bitconfused on how to plug this into R. Thanks!!

Answer & Explanation Solved by verified expert
4.1 Ratings (467 Votes)

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


Get Answers to Unlimited Questions

Join us to gain access to millions of questions and expert answers. Enjoy exclusive benefits tailored just for you!

Membership Benefits:
  • Unlimited Question Access with detailed Answers
  • Zin AI - 3 Million Words
  • 10 Dall-E 3 Images
  • 20 Plot Generations
  • Conversation with Dialogue Memory
  • No Ads, Ever!
  • Access to Our Best AI Platform: Flex AI - Your personal assistant for all your inquiries!
Become a Member

Other questions asked by students