Introductory Statistics

 

IS: R Assignment 16

[<code class="R">R</code> Assignments]
R Assignment #16

 

General Purpose

General Purpose of these Assignments (the usual): The purpose of these R Assignments is to give you some pointed, direct practice in using R. As such, these are designed to be quick and to the point (less than 10 minutes each). They are also designed to give you a place to return if you forget how to perform some analysis in the future.

Please supply your results in the form below. Clicking on “Click to Check Your Answers” will allow you to see which as correct and which are not. When all are correct (and you can try as many time as you wish), you will be allowed to send your answers to me for credit by clicking on “Click to Email Your Results.” You only receive credit when this is submitted (with all answers correct).

This assignment is due at the start of the class period on

Friday, February 9, 2024.

With that being said, if this R Assignment is available, which is could be until approximately 11:59 pm (CST), then you are able to work on it.

As expected, these are graded according to the syllabus (all or nothing). Please review the appropriate section in the syllabus for more information. Also, if this is not submitted before it is due, then it counts as a zero.


Specific Purpose: Here, I check that you can use the Central Limit Theorem to calculate the probability of an observation. Before starting this, please review the Central Limit Theorem and what it means. This assignment will be aimed at the application level, a higher level of Bloom’s Taxonomy than the previous ones.


Slidedeck Support: The following slidedeck may be helpful for you in completing this R Assignment:


The Problems

There is no data to load, because we are working with the Central Limit Theorem (and the Normal distribution) today. So, please answer the following questions. For each, assume that my average waittime for the past year has been 6 minutes (with a standard deviation of 6 minutes).

  1. For the next 3 days, what is the probability that my average daily wait time is less than 5 minutes?
  2. For the next 5 days, what is the probability that my average daily wait time is less than 5 minutes?
  3. For the next 10 days, what is the probability that my average daily wait time is less than 5 minutes?

Finally, to receive credit for this assignment, please provide your full Knox College email address:

then click on the button here.

The Answers

Since this is past due, I can now give you the code and the answer:

Since it is now after the time this is due, I can now give you the code and the answers:

pnorm( 5, m=6, s=6/sqrt(3) )
pnorm( 5, m=6, s=6/sqrt(5) )
pnorm( 5, m=6, s=6/sqrt(10) )

The answers are

0.386415
0.3546941
0.2990807

When writing out numbers, remember that e translates to — and should be written as — “times 10 to the power of.”

This page was last modified on 2 January 2024.
All rights reserved by Ole J. Forsberg, PhD, ©2008–2024. No reproduction of any of this material is allowed without explicit written permission of the copyright holder.