Normal Computations Flashcards

1
Q

What is a random sample?

A

A sequence of independent and identically distributed (iid) random variables.

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

What does iid mean?

A

Independent and identically distributed.

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

How is a normal distribution denoted?

A

N(μ, σ²) where μ is the mean and σ² is the variance.

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

What is the expected value of a random variable X?

A

The mean of its probability distribution, denoted E[X] = μ.

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

What is variance?

A

The expected squared deviation from the mean, denoted Var(X) = σ².

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

What is standard deviation?

A

The square root of the variance.

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

What does the shape of the normal distribution depend on?

A

Its mean (center) and variance (spread).

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

What happens to the normal curve if variance increases?

A

The curve stretches and flattens to keep area under the curve equal to 1.

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

What is the sample mean X̄ and its distribution?

A

A linear combination of iid normal variables with mean μ and variance σ²/n.

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

What is the standard normal distribution?

A

A normal distribution with mean 0 and variance 1.

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

What is the Z-score transformation?

A

(X - μ) / σ, standardizes a normal variable to standard normal.

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

How do you transform a standard normal Z to a normal variable X?

A

X = σZ + μ.

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

What is the CDF of the standard normal distribution?

A

The function Φ(z) = P(Z ≤ z).

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

How do you compute P(Z ≤ z) in R?

A

Use the command pnorm(z).

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

How do you compute a critical value zα in R?

A

Use the command qnorm(1 - α) to find the value that cuts off α area to the right.

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

What is the variance of the sample mean X̄?

17
Q

Why is the sample mean less variable than individual observations?

A

Because variability reduces when averaging over more data.

18
Q

What is a critical value in hypothesis testing?

A

A number that cuts off a specified tail probability under the standard normal curve.

19
Q

What is Zα?

A

The critical value such that P(Z > Zα) = α.

20
Q

How is the standard deviation of X̄ written?

A

σ / √n.