Report Writing. A report should be self-explanatory. It should be capable of being read and understood without reference to the original project description.

Slides:



Advertisements
Similar presentations
SADC Course in Statistics Importance of the normal distribution (Session 09)
Advertisements

Normal Distribution The shaded area is the probability of z > 1.
Chapter 6 Sampling and Sampling Distributions
Sta220 - Statistics Mr. Smith Room 310 Class #14.
Copyright © 2010 Pearson Education, Inc. Slide
Week11 Parameter, Statistic and Random Samples A parameter is a number that describes the population. It is a fixed number, but in practice we do not know.
For a Normal probability distribution, let x be a random variable with a normal distribution whose mean is µ and whose standard deviation is σ. Let be.
Central Limit Theorem.
Distribution of Sample Means, the Central Limit Theorem If we take a new sample, the sample mean varies. Thus the sample mean has a distribution, called.
DISTRIBUTION OF THE SAMPLE MEAN
Chapter 6 Introduction to Sampling Distributions
Chapter 7 Sampling and Sampling Distributions
Fall 2006 – Fundamentals of Business Statistics 1 Chapter 6 Introduction to Sampling Distributions.
Continuous Random Variables Chap. 12. COMP 5340/6340 Continuous Random Variables2 Preamble Continuous probability distribution are not related to specific.
4. Convergence of random variables  Convergence in probability  Convergence in distribution  Convergence in quadratic mean  Properties  The law of.
Standard Normal Distribution
QM Spring 2002 Business Statistics Sampling Concepts.
Class notes for ISE 201 San Jose State University
Sampling Distributions
Part III: Inference Topic 6 Sampling and Sampling Distributions
Section 5.6 Important Theorem in the Text: The Central Limit TheoremTheorem (a) Let X 1, X 2, …, X n be a random sample from a U(–2, 3) distribution.
Chapter 7 ~ Sample Variability
Sampling Theory Determining the distribution of Sample statistics.
CHAPTER 11: Sampling Distributions
Standard error of estimate & Confidence interval.
Use of Quantile Functions in Data Analysis. In general, Quantile Functions (sometimes referred to as Inverse Density Functions or Percent Point Functions)
L7.1b Continuous Random Variables CONTINUOUS RANDOM VARIABLES NORMAL DISTRIBUTIONS AD PROBABILITY DISTRIBUTIONS.
CHAPTER 11: Sampling Distributions
Sampling Theory Determining the distribution of Sample statistics.
Essential Statistics Chapter 101 Sampling Distributions.
Copyright ©2011 Nelson Education Limited The Normal Probability Distribution CHAPTER 6.
Copyright © Cengage Learning. All rights reserved. 7 Sample Variability.
Chapter 6 Lecture 3 Sections: 6.4 – 6.5.
BPS - 5th Ed. Chapter 11 1 Sampling Distributions.
Chapter 10 – Sampling Distributions Math 22 Introductory Statistics.
Convergence in Distribution
Copyright © 2010 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill/Irwin Chapter 7 Sampling Distributions.
Chapter 7: Sample Variability Empirical Distribution of Sample Means.
Estimation This is our introduction to the field of inferential statistics. We already know why we want to study samples instead of entire populations,
Week11 Parameter, Statistic and Random Samples A parameter is a number that describes the population. It is a fixed number, but in practice we do not know.
Exploratory Data Analysis Observations of a single variable.
The Central Limit Theorem © Christine Crisp “Teach A Level Maths” Statistics 1.
Chapter 7 Sampling and Sampling Distributions ©. Simple Random Sample simple random sample Suppose that we want to select a sample of n objects from a.
Chapter 7: Introduction to Sampling Distributions Section 2: The Central Limit Theorem.
8 Sampling Distribution of the Mean Chapter8 p Sampling Distributions Population mean and standard deviation,  and   unknown Maximal Likelihood.
Stat 1510: Sampling Distributions
1 Topic 5 - Joint distributions and the CLT Joint distributions –Calculation of probabilities, mean and variance –Expectations of functions based on joint.
Week 121 Law of Large Numbers Toss a coin n times. Suppose X i ’s are Bernoulli random variables with p = ½ and E(X i ) = ½. The proportion of heads is.
Sampling and estimation Petter Mostad
1 Probability and Statistical Inference (9th Edition) Chapter 5 (Part 2/2) Distributions of Functions of Random Variables November 25, 2015.
Chapter 5 Sampling Distributions. The Concept of Sampling Distributions Parameter – numerical descriptive measure of a population. It is usually unknown.
Statistical Data Analysis 2011/2012 M. de Gunst Lecture 2.
Review of Statistical Terms Population Sample Parameter Statistic.
Intro to Inference & The Central Limit Theorem. Learning Objectives By the end of this lecture, you should be able to: – Describe what is meant by the.
1 Sampling distributions The probability distribution of a statistic is called a sampling distribution. : the sampling distribution of the mean.
Central Limit Theorem Let X 1, X 2, …, X n be n independent, identically distributed random variables with mean  and standard deviation . For large n:
MATH Section 4.4.
Sampling Theory Determining the distribution of Sample statistics.
Sums of Random Variables and Long-Term Averages Sums of R.V. ‘s S n = X 1 + X X n of course.
Chapter 6 Sampling and Sampling Distributions
The normal distribution
Parameter, Statistic and Random Samples
Ch5.4 Central Limit Theorem
Sample Mean Distributions
Elementary Statistics
Chapter 7: Sampling Distributions
Parameter, Statistic and Random Samples
MATH 2311 Section 4.4.
The normal distribution
Essential Statistics Sampling Distributions
Presentation transcript:

Report Writing

A report should be self-explanatory. It should be capable of being read and understood without reference to the original project description. Thus, for each question, it should contain all of the following:

(a)a statement of the problem; (b) a full and careful description of how it is investigated; (c) All relevant results, including graphical and numerical analyses; variables should be carefully defined, and figures and tables should be properly labelled, described and referenced; (d) relevant analysis, discussion, and conclusions.

It should be written in the third person. NOT: I think the Central Limit Theorem is true for this example because I see that the graph is normal. INSTEAD: It can be clearly seen that the graph displays a normal distribution confirming that the Central Limit Theorem holds.

The Central Limit Theorem

Let X 1, X 2 ………. X n be independent identically distributed random variables with mean µ and variance σ 2. Let S = X 1,+ X 2+ ………. +X n Then elementary probability theory tells us that E(S) = nµ and var(S) = nσ 2. The Central Limit Theorem (CLT) further states that, provided n is not too small, S has an approximately normal distribution with the above mean nµ, and variance nσ 2.

In other words, S approx ~ N(nµ, nσ 2 ) The approximation improves as n increases. We will use R to demonstrate the CLT.

Let X 1,X 2 ……X 6 come from the Uniform distribution, U(0,1) 01 1

For any uniform distribution on [A,B], µ is equal to and variance, σ 2, is equal to So for our distribution, µ= 1/2 and σ 2 = 1/12

The Central Limit Theorem therefore states that S should have an approximately normal distribution with mean nµ (i.e. 6 x 0.5 = 3) and var nσ 2 (i.e. 6 x 1/12 = 0.5) This gives standard deviation In other words, S approx ~ N(3, )

Generate results in each of six vectors for the uniform distribution on [0,1] in R. > x1=runif(10000) > x2=runif(10000) > x3=runif(10000) > x4=runif(10000) > x5=runif(10000) > x6=runif(10000) >

Let S = X 1,+ X 2+ ………. +X 6 > s=x1+x2+x3+x4+x5+x6 > hist(s,nclass=20) >

Consider the mean and standard deviation of S > mean(s) [1] > sd(s) [1] > This agrees with our earlier calculations

A method of examining whether the distribution is approximately normal is by producing a normal Q-Q plot. This is a plot of the sorted values of the vector S (the “data”) against what is in effect a idealised sample of the same size from the N(0,1) distribution.

If the CLT holds good, i.e. if S is approximately normal, then the plot should show an approximate straight line with intercept equal to the mean of S (here 3) and slope equal to the standard deviation of S (here 0.707).

> qqnorm(s) >

> qqnorm(s) >

> qqnorm(s) > 4.4 – = 0.7 to 1 DP

From these plots it seems that agreement with the normal distribution is very good, despite the fact that we have only taken n = 6, i.e. the convergence is very rapid!