Exam Prep Flashcards
Pairwise Independent
All pairs in a set are equal in probability.
P(A1)P(A2) = P(A1 n A2).
Mutual Independence
Mutual independence is everything is independent together plus the pairwise independence.
Normal Distribution: increase μ in pdf
Shifts normal distribution by distance μ in the positive direction.
Normal Distribution: decrease μ in pdf
Shifts normal distribution by distance μ in the negative direction.
Normal Distribution: increase σ in pdf
Stretches the distribution and
lowers the maximum of the function.
Normal Distribution: decrease σ in pdf
Narrows the distribution and
heightens the maximum of the function.
Reflexive
a = a.
Symmetric
a, b = b, a.
Transitive
a, b and b, c implies a, c.
Sample Standard Deviation
sqrt(1/n-1 x (sum(x - meanx)^2))
Sample Pearson Correlation
1/n-1 x ((sum(x-meanx)(y-meany)) / sx x sy)
where
sx = sample standard deviation of x
sy = sample standard deviation of y
Isometry Matrix
An isometry is any map f : R^m -> R^m that is defined on the whole space R^m and preserves the Euclidean L_2-metric.
Isometric Transformations
Reflection
Rotation
Translation
Orthogonal transformation
Orthogonal Transformation
A transformation with preserves a symmetric inner product.
Aka, it preserves lengths of vectors and angles between vectors.
Reduce dimensionality
- SVD
- PCA
- (if two-dimensional) linear regression methods
Standarised z-score
X - μ / σ
X = random variable
σ = standard deviation
μ = mean
Significance Level
x - μ / σ - sqrt(n)
x = given number (like an estimated mean)
σ = standard deviation
μ = mean
m = amount of data given (like amount of employees etc)
Variance
σ^2
E(X^2) - (E(X))^2
Standard Deviation
sqrt((sum(x - meanx)^2)/N)
Sample Variance
(sum(x - meanx)^2)/N-1
Covariance
E(XY) - (EX)(EY)
1/N x sum(x-meanx)(y-meany)
Sample covariance
1/N-1 x sum(x-meanx)(y-meany)