Question

Verify the empirical rule by using Table A, software, or a calculator to show that for...

Verify the empirical rule by using Table A, software, or a calculator to show that for a normal distribution, the probability (rounded to two decimal places) within

a. 1 standard deviation of the mean equals 0.68.

b. 2 standard deviations of the mean equals 0.95.

c. 3 standard deviations of the mean is very close to 1.00.

I need the copy and paste your R command and output

0 0
Add a comment Improve this question Transcribed image text
Answer #1

## the simplest code is written using the pnorm() function in R ,

pnorm(1) - pnorm(-1)


## within 2 standard deviation
pnorm(2) - pnorm(-2)


## within 3 standard deviations
pnorm(3) - pnorm(-3)

The results are

> pnorm(1) - pnorm(-1)
[1] 0.6826895
> pnorm(2) - pnorm(-2)
[1] 0.9544997
> ## within 3 standard deviations
> pnorm(3) - pnorm(-3)
[1] 0.9973002

Please rate if it helps !!

Add a comment
Know the answer?
Add Answer to:
Verify the empirical rule by using Table A, software, or a calculator to show that for...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT