Statistics Flashcards

(10 cards)

1
Q

notation

A

Xi - random var with distribution N(a, b^2)

xi - observed value

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

sample mean for observation. x1, x2, .., xn

A

x’ = 1/n* sum from 1 to n of xi

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

sample var for observations

A

s^2 = 1/(n-1) * sum (xi - x’)^2 = 1/(n-1) * sum(x1^2) - n*x’^2

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

sample correlation of the observations

A

r = sum((xi-x’)(yi-y’))/sqrt(sum((Xî-x’))^2sum((yi-y’)^2)) - r linear correlation

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

what is the statistic, estimator and estimate

A

statistic - random variable giving the formula for the function of the data
λ’ = 1/X’ - estimator
λ’ = 1/x’ - estimate
estimator is random var and has distribution

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

methods of estimation

A

least squares estimation is useful because it does not make any assumption about the distribution of the data, only about mean
maximum likelihood estimation does require a particular distribution form for the data

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

properties of estimators

A

bias = E[Φ’ - Φ]
Φ’ - estimator of parameter Φ
mean squared error = E[(Φ’ - Φ)^2]

E[(Φ’-Φ)^2] = Var(Φ’) if Φ’ is unbiased
E[(Φ’ - Φ)^2] = Var(Φ’) + bias^2 - if Φ’ is biased

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

confidence level

A

expressed as percentage with common values 95%, 99% or 90%, refers to idea that it gives an interval which includes the parameter with the specified probability
α - level associated with confidence level
c - confidence level
α = 1 - c

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

Cl for mean of normal data σ^2 known and X1, X2, …, Xn are random sample from a normal distribution N(a, σ^2)

A

a 100(1- α)% confidence interval for a is based symmetrically around X’ as:
(X’ - z * σ/sqrt(n), X’ + z * σ/sqrt(n)
where
z’s index is 1 - α/2 and z solves Φ(z) = 1 - α/2 and is evaluated using Matlab quantile function norming(1 - α/2, 0, 1)

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

cl for mean of normal data σ^2 unknown and t distribution with n-1 degrees of freedom

A

t-distribution similar to normal, you can calculate t quantiles in Matlab using tin(p, v), where p - probability 1 - α/2 and v is degrees of freedom

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