Statistics: Population Parameters, Sampling Distributions, and Hypothesis Testing

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/53

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

54 Terms

1
New cards

What does a population parameter describe?

The entire population (e.g., μ, σ, p). Parameters describe true population values, not samples.

2
New cards

What does a statistic describe?

A sample. It estimates population parameters like μ and σ.

3
New cards

What does the Central Limit Theorem (CLT) state?

As sample size n increases, the sampling distribution of the mean approaches normal, regardless of population shape.

4
New cards

What is the mean of the sampling distribution of the sample mean?

Equal to the population mean (μ).

5
New cards

What is the standard error (SE) of the mean?

SE = σ / √n. It measures how much sample means vary from the population mean.

6
New cards

When can we use a normal approximation for proportions?

When np ≥ 10 and n(1 - p) ≥ 10.

7
New cards

How does increasing sample size affect the standard error?

SE decreases — larger samples give more precise estimates.

8
New cards

When does the finite population correction (FPC) apply?

When sampling without replacement and sample > 5% of population.

9
New cards

What is a sampling distribution?

The distribution of a statistic (like x̄) from all possible samples of the same size.

10
New cards

What is the Law of Large Numbers?

As n increases, the sample mean (x̄) approaches the true population mean (μ).

11
New cards

What is a point estimate?

A single number used to estimate a population parameter (like x̄ or p̂).

12
New cards

What is a confidence interval (CI)?

A range of values that likely contains the true population parameter.

13
New cards

How is a confidence interval interpreted?

95% confidence means that if we repeated sampling many times, 95% of intervals would contain μ.

14
New cards

How does higher confidence affect the interval?

Higher confidence → wider interval (more certainty, less precision).

15
New cards

How does larger sample size affect the interval?

Larger n → smaller margin of error → narrower CI.

16
New cards

When do you use a z-distribution for a confidence interval?

When σ is known or n is large (≥ 30).

17
New cards

When do you use a t-distribution for a confidence interval?

When σ is unknown and sample size is small (< 30).

18
New cards

What are the degrees of freedom for a one-sample t-interval?

df = n - 1.

19
New cards

What is the standard error for a proportion?

SE = √[p̂(1 - p̂)/n].

20
New cards

How does sample size affect margin of error (MOE)?

As n increases, MOE decreases.

21
New cards

What are the critical z-values for 90%, 95%, and 99% confidence?

1.645, 1.96, and 2.576.

22
New cards

If a 95% CI for μ is (10, 14), what is the point estimate?

12 — the midpoint of the interval.

23
New cards

If a 95% CI for μ excludes the null value, what's the test result?

Reject H₀ at α = 0.05 — the difference is significant.

24
New cards

What does a wider t-distribution mean compared to z?

More uncertainty — t has heavier tails when n is small.

25
New cards

What does a null hypothesis (H₀) usually state?

No change, no difference, or equality (status quo).

26
New cards

What is the alternative hypothesis (H₁)?

The researcher's claim (change, difference, or inequality).

27
New cards

What is a Type I error?

Rejecting a true H₀ (false positive). Probability = α.

28
New cards

What is a Type II error?

Failing to reject a false H₀ (false negative). Probability = β.

29
New cards

What is the significance level (α)?

The probability of making a Type I error (rejecting a true H₀).

30
New cards

What is the power of a test?

1 - β, the probability of correctly rejecting a false H₀.

31
New cards

What is the decision rule for p-values?

If p ≤ α → reject H₀. If p > α → fail to reject H₀.

32
New cards

What does "fail to reject H₀" mean?

There's not enough evidence against H₀ — not proof that H₀ is true.

33
New cards

What are the three types of alternative hypotheses?

Left-tailed (μ < μ₀), right-tailed (μ > μ₀), and two-tailed (μ ≠ μ₀).

34
New cards

What are common critical z-values for α = 0.05?

One-tailed = 1.645, two-tailed = ±1.96.

35
New cards

What happens to power when sample size increases?

Power increases — easier to detect a true effect.

36
New cards

What happens to power when α increases?

Power increases, but so does risk of Type I error.

37
New cards

What does a small p-value mean?

Strong evidence against H₀ — reject H₀.

38
New cards

What does a large p-value mean?

Weak evidence against H₀ — fail to reject H₀.

39
New cards

What does the p-value represent?

The probability of getting a result as extreme as the sample's, assuming H₀ is true.

40
New cards

Why do we never "accept" H₀?

Because failing to reject doesn't prove it's true — it just means not enough evidence.

41
New cards

When is a result "statistically significant"?

When p < α.

42
New cards

What test statistic is used when σ is known?

z = (x̄ - μ₀) / (σ / √n).

43
New cards

What test statistic is used when σ is unknown?

t = (x̄ - μ₀) / (s / √n).

44
New cards

What test statistic is used for proportions?

z = (p̂ - p₀) / √[p₀(1 - p₀)/n].

45
New cards

What is the formula for the margin of error?

MOE = critical value × SE.

46
New cards

What happens if α is reduced from 0.05 to 0.01?

Less chance of Type I error, but more chance of Type II error (less power).

47
New cards

What does "two-tailed test" mean?

Testing for any difference (μ ≠ μ₀), not just increase or decrease.

48
New cards

What does "one-tailed test" mean?

Testing in one direction only (greater or less).

49
New cards

What does the finite population correction (FPC) formula do?

Adjusts SE when sampling > 5% of a finite population.

50
New cards

What does "sampling without replacement" mean?

Once selected, an element can't be chosen again — requires FPC if pop small.

51
New cards

What Excel function finds a right-tail p-value from z?

=1-NORM.S.DIST(z,TRUE)

52
New cards

What Excel function gives the critical z-value for a given probability?

=NORM.S.INV(probability)

53
New cards

What Excel function gives a critical t-value for a given α?

=T.INV(1-α/2,df)

54
New cards

What Excel function simulates random sampling?

=RAND()