BA 2 - Sampling and Estimation Flashcards

1
Q

What type of sample ensures sound inferences?

A
  • Sufficiently large; and

- Representative of the population

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How to avoid biased results

A
  • Phrasing questions neutrally
  • Ensuring that the sampling method is appropriate for the demographic of the target population; and
  • Pursuing high response rates.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Characteristics of the normal distribution

A
  • Symmetrical bell shape;
  • Center => mean, width => standard deviation;
  • ~68% of the probability contained within 1 sd of mean, ~95% within 2 sds, ~99.7% within 3 sds.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

z-value

A

Normalized value.

z = (x - mu)/sd

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Central Limit Theorem

A

if we take enough sufficiently large samples from any population, the means of those samples will be normally distributed, regardless of the shape of the underlying population.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Distribution of Sample Means

A
  • Approximates normal curve as we increase the number of samples;
  • Mean of any sample lies within this curve - we can use the properties of the normal curve to draw conclusions about the sample;
  • mean of this distribution = mean of the population distribution;
  • sd of this distribution = (sd of population)/rt. n;
  • => increasing sample size decreases the width of the distribution of sample means.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Confidence Interval

A

Range around the sample mean to estimate the range in which the true population mean likely lies.

  • Width depends on level of confidence, estimate of population sd, sample size.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Size of sample

A

Large samples => greater than or equal to thirty.
Small sample => t-distribution - shorter, wider than normal distribution.
Large => normal distribution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Confidence intervals for proportions

A

Need to create a dummy (0, 1) variable.

And then proceed as we would with any other variable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Ensuring sample size is large enough for estimating population proportion

A

n.p >= 5, and

n(1-pbar) >=5

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

[EXCEL] Generating random number between 0 and 999

A

=RAND()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

[EXCEL] Cumulative probability for normal distribution

A

=NORM.DIST(x, mean, sd, cumulative)

cumulative = TRUE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

[EXCEL] Cumulative probability for standardized normal distribution

A

=NORM.S.DIST(z, cumulative)

cumulative = TRUE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

[EXCEL] Corresponding x-value for probability on a specified normal distribution

A

=NORM.INV(probability, mean, sd)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

[EXCEL] Margin of error for normal distribution

A

=CONFIDENCE.NORM(alpha, sd, sample_size)

For sample size greater than or equal to 30

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

[EXCEL] Margin of error for t distribution

A

=CONFIDENCE.T(alpha, sd, sample_size)

For sample size less than 30

17
Q

[EXCEL] Creating conditional subset

A

=IF(logical_test, [value_if_true], [value_if_false])