Calculate the sample mean and the sample standard deviation

Assignment Help Applied Statistics
Reference no: EM131930769

HOMEWORK -

Review Questions - The following 8 questions are meant to review the previous material just in case you are still having difficulties.

Q1. Suppose that Z ∼ N(0,1) and X ∼ N(µ = 2,σ = 2). Answer the following questions using R or Normal Tables (or Crunch It! if you prefer). When you answer the questions provide a sketch of the normal distribution of copy and paste an annotated sketch of the normal distribution. Understanding the bell curve is so important and you must know this distribution inside and out. It helps to draw and shade in areas when you solve problems at first.

(a) P(X < 3.3)

(b) P(Z > -1.8)

(c) P(X < 1.4)

(d) P(Z = 1.3)

(e) P(1.3 < X < 2.8)

(f) Find P((X > 4)∪(X < 1))

(g) Find P(|Z| > 2)

(h) Find P(|X -2| > 1.5)

Q2. Now the following problems are quantile problems which ask for values of x on the x-axis for which certain probabilities are true. Make sure you draw bell curves and shade in regions just like the procedure I showed you in class to solve the following problems. Suppose that Z ∼ N(0,1) and X ∼ N(µ = 3,σ = 3).

(a) Find the value of a such that P(Z < a) = 0.32.

(b) Find the value of b such that P(X < b) = 0.65.

(c) Find the 50th percentile of X or the value b such that P(X < b) = 0.5.

(d) Find the 80th percentile of Z.

(e) Find the value c such that P(Z > c) = 0.2.

(f) Find the value of b such that P(|Z| < b) = 0.9.

(g) Find the value c such that P((X < 2)∪(X > c)) = 0.95.

Q3. Weights of female cats of a certain breed are normally distributed with mean 4.1 kg and standard deviation 0.6 kg.

(a) What proportion of female cats have weights between 3.7 and 4.4 kg?

(b) How heavy is a female cat whose weight is on the 80th percentile?

(c) A female cat is chosen at random. What is the probability that she weighs more than 4.5 kg?

(d) A certain female cat has a weight that is 0.5 standard deviations above the mean. What proportion of female cats are heavier than this one?

Q4. A geneticist is studying two genes. Each gene can be either dominant or recessive. A sample of 100 individuals is categorized as follows.

 

 

Gene 2

 

Gene 1

Dominant

Recessive

Total

Dominant

56

24

80

Recessive

14

6

20

Total

70

30

100

 (a) What is the probability that a randomly selected individual has a dominant Gene 1?

(b) Given that someone has a dominant Gene 1, what is the probability that person has a dominant Gene 2?

(c) Is the probability of having a dominant Gene 2, independent of having a dominant Gene 1?

(d) What is the probability that someone in this study has a dominant Gene of any kind?

Q5. A population of 600 arterial stents recently arrived from 3 different manufacturers. The stents are categorized by which manufacturer {A, B, C} and whether they conform to a thickness specification.

The following table presents the number of stents in each category. A stent is chosen at random from the population.

Manufacturer

Conforming

Nonconforming

A

88

12

B

165

35

C

260

40

(Hint: You should probably add a row and column to the above table.)

(a) If the stent is from manufacturer A, what is the probability that it is conforming?

(b) If the stent is conforming, what is the probability that is is from manufacturer A?

(c) If the stent is conforming, what is the probability that it is not from manufacturer C?

(d) If the stent is not from manufacturer C, what is the probability that it is conforming?

Q6. The proportion of people in a given community who have a certain disease is 0.005. A test is available to diagnose the disease. If a person has the disease, the probability that the test will produce a positive signal is 0.99. If the person does not have the disease, the probability that the test will produce a positive signal is 0.01.

(a) Construct a complete tree diagram for all possibilities of testing and disease status.

(b) What is the probability that a person will test positive?

(c) Given that a person tests positive, what is the probability that the person actually has the disease?

Q7. Freckles and moles on humans are very common. However usually large, abnormally shaped and/or abnormally colored freckles/moles can sometimes be warning signs of skin cancer. Let X be the number of "unusual" freckles/moles found on patients that are seen by a dermatologist's office in Bloomington. We'll assume that an individual can only have between 0 and 4 unusual moles/freckles each, hence X = {0,...,4}. The population probability distribution for the number of unusual freckles/moles is presented in the following table.

x

0

1

2

3

4

p(x)

0.4

0.3

0.15

0.10

0.05

(a) Find P(X ≤ 2).

(b) Find P(X > 1).

(c) Find P[X < 2 or X ≥ 3].

(d) Find µX.

(e) Find σ2X.

Q8. If X and Y are independent random variables with means µX = 9.5 and µY = 6.8 and standard deviations σX = 0.4 and σY = 0.1, find the means and standard deviations of the following:

(a) W = 3Y -2X, hence find µW and σW.

(b) Z = X +4Y -0.2, hence find µZ and σZ.

New Questions - The following 3 questions will cover some of the new material on confidence intervals for the mean.

Q9. The table below contains 5 random samples of size 10 from the population of infants who were born at a hospital in New York. The birth weights in (oz) appear in the table below.

Sample

Individual

1

2

3

4

5

1

97

177

97

101

137

2

117

198

125

114

118

3

140

107

62

79

78

4

78

99

120

120

129

5

98

104

132

115

87

6

148

121

135

117

110

7

108

148

118

106

106

8

135

133

137

86

116

9

126

126

126

110

140

10

121

115

118

119

98

For each sample, you can quickly calculate sample mean and standard deviation by loading in the data into R in the form of a vector and then using the functions mean() and sd() to calculate x¯ and S for the sample. For example for the first sample I can use the commands in R as follows to load in the data into a vector x and then calculate the mean x¯ and standard deviation S

x= c(97,117,140,78,98,148,108,135,126,121)

xbar = mean(x)

s = sd(x)

print(xbar)

print(s)

(a) Calculate the sample mean x¯ and the sample standard deviation s for the first sample.

(b) Assume the population standard deviation is σ = 22. For the first sample, construct a 95% confidence interval for the population mean µ based upon the central limit theorem and the normal distribution.

(c) For the first sample, construct a 99% confidence interval for the population mean µ. Which interval is wider, the 95% interval or the 99% interval?

(d) Assuming the population standard deviation is σ = 22. For the second sample, construct a 95% confidence interval for the population mean µ based upon the central limit theorem and the normal distribution. How does the 95% confidence interval for the second sample compare with the 95% confidence interval for the first sample in terms of width and position?

(e) For the 3rd, 4th and 5th samples construct the 95% confidence intervals assuming σ = 22. Why do you get different answers for different samples?

(f) In the previous problems we assumed that we know what σ was. Now let us drop that assumption. Calculate the 95% confidence interval for the first and second sample using the T distribution confidence interval formula.

Q10. An important indicator of lung function is forced expiratory volume (FEV), which is the volume of air that a person can expire in one second. Dr. Hernandez plans to measure FEV in a random sample of n young women from a certain population, and to use the sample mean y as an estimate of the population mean. Let E be the event that Hernandez's sample mean will be within ±100 ml of the population mean. Assume that the population distribution is normal with mean µ = 3000 ml and standard deviation σ = 400 ml. Find Pr{E} if

(a) n = 15

(b) n = 60

(c) How does Pr{E} depend on sample size?

Q11. At a large university, the mean age of the students is 22.3 years, and the standard deviation is 4 years. A random sample of 64 students is drawn. What is the probability that the average age of these students is greater than 23 years? (Hint: The sample size is large and you know σ, so you can use the central limit theorem.)

Please use R program.

Reference no: EM131930769

Questions Cloud

What do you think of the effectiveness of online marketing : What do you think of the effectiveness of online marketing? How could the firms use online marketing channels to gain competitive advantages?
Discuss the type of interventions provided by the program : How do risk and resiliency factors for the targeted age group influence the type of interventions provided by the program?
The yield to maturity on bonds : The yield to maturity on the bonds is 9%, and the firm’s tax rate is 40%. What is the company’s WACC?
Save each year until retirement to meet your retirement goal : If the interest rate is 6% per year, how much must you save each year until retirement to meet your retirement goal?
Calculate the sample mean and the sample standard deviation : For each sample, you can quickly calculate sample mean and standard deviation by loading in the data into R in the form of a vector
Specifies the specific goal the advertiser : The advertising _____ specifies the specific goal the advertiser wants to achieve and the advertising _____ describes how to get there.
How the statistical significance influenced your decision : In this Assignment, you will be presented with research results and will be asked to analyze those results and relate them to practice.
Employee passes the straight employee : He says another employee - who is straight - says things whenever the gay employee passes the straight employee's cubicle.
What is the narrators unofficial role at shawshank : What is the narrator's unofficial role at Shawshank? In what year does Andy Dufresne come to Shawshank? How old is he when he first comes to the prison?

Reviews

Write a Review

Applied Statistics Questions & Answers

  The use of cheap wine in cooking

An article by Julia Moskin in the New York Times reports on the use of cheap wine in cooking.18 Assume that the following results are taste-test ratings, from 1 to 10, for food cooked in cheap wine.

  What is the probability that it came from jar ii

Two jars contain coins. Jar I contains 7 pennies, 6 nickels and 8 dimes.Jar II contains 5 pennies, 3 nickels and 1 dime. A jar is selected at randomand a coin is selected from that jar. If the coin is a nickel, what is the probability that it came fr..

  1 a researcher studying the effects of environment on mood

1. a researcher studying the effects of environment on mood asks participants to sit alone in a waiting room for 15nbsp

  Transmitter sends bits to a receiver across a noisy channe

A transmitter sends bits to a receiver across a noisy channel. The model for the noise is simple: regardless of whether a one or a zero was transmitted, the channel flips the bit with probability p = 0:1. Furthermore, assume that the noise acts on ea..

  State the null hypothesis and the alternate hypothesis

State the null hypothesis and the alternate hypothesis. Does this information disagree with the United Nations report? Apply the 0.01 significance level.

  Find the expected monetary outcome

Find the expected monetary outcome. Mark this value on your graph of part a. Then interpret this value. Calculate the standard deviation of x.

  Explain how you determine the warm up time

MA0261 - Assignment Model the process described above in Simul8. Justify any assumption and simplification that you made during the modelling process and explain how you determine the warm up time and the number of replications

  Descriptive statistics project

Descriptive Statistics Project Descriptive Statistics Project Project #1 This project gives you the chance to use all of the statistical techniques and concepts that are covered in the initial chapters of the text.Data Collection: This is an open e..

  Question an investigator wants to assess whether smoking is

an investigator wants to assess whether smoking is a risk factor for pancreatic cancer. electronic medical records at a

  What is the probability that a randomly selected student sco

The scores on an undergraduate Statistics exam are normally distributed with a mean of 75 and a standard deviation of 8. What is the probability that a randomly selected student gets an "A" (score a 90 or above) on this Statistics exam? What score on..

  Use the compromise function to compute alpha and beta

Assume that the result is a sample size beyond what you can obtain. Use the compromise function to compute alpha and beta for a sample half the size. Indicate the resulting alpha and beta. Present an argument that your study is worth doing with the s..

  Gathers data on fifty graduate students

A researcher wants to predict graduate-school grade point average (GPA) from GRE verbal scores (which is what the pesky GRE is supposed to do, anyway!). She gathers data on fifty graduate students. Below are the data "high points":

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd