DTSA 5001 Flashcards

1
Q

factorial (!) operator

A

for any positive integer n:
n! = n * (n-1) * (n-2) * … * 2 * 1

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

“n Choose r”

A

n! / (r! * (n - r)!)

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

“n Permute r”

A

n! / (n - r)!

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

variance and standard deviation

A

V = sigma^2

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

P(A u B) = ?

A

P(A) + P(B) - P(A n B) = ?

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

P(A u B u C) = ?

A

P(A) + P(B) + P(C) - (P(A n B) + P(B n C) + P(C n A)) + P(A n B n C) = ?

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

A and B are independent if and only if…?

A

P(A n B) = P(A) * P(B)

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

P(A’ n B’) = ?

A

1 - P(A u B) = ?

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

P(A’ n B’ n C’) = ?

A

1 - P(A u B u C) = ?

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

P(A’ u B’) = ?

A

1 - P(A n B) = ?

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

P(A’ u B’ u C’) = ?

A

1 - P(A n B n C) = ?

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

(A u B)’ = ?
Hint: De Morgan’s Law

A

(A’ n B’) = ?
Hint: De Morgan’s Law

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

How many ways can a set S with n elements be arranged?

A

n!

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

Multisets… Think of a question

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

Probability of event E, P(E) = ?

A

Cardinality of Event over cardinality of Sample Space:
|E| / |S|

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

Cardinality of sample when:
-Order matters (perm.)
-Sampled with replacement

A

n^k

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

Cardinality of sample when:
-Order matters (perm.)
-Sampled without replacement

A

n! / (n - k)!

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

Cardinality of sample when:
-Order doesn’t matter (comb)
-With replacement

A

(n + k - 1) choose k

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

Cardinality of sample when:
-Order doesn’t matter (comb)
-Without replacement

A

n choose k

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

Conditional Probability:
P(A|B) = ?

A

P(A n B) / P(B) = ?

21
Q

P(A|B)P(B) = ?

A

P(B|A)P(A) = ?

22
Q

P(A|B) = ?

A

P(B|A)P(A) / P(B)

23
Q

Law of Total Probability

A

P(A) = P(A|B)P(B) + P(A|B’)P(B’)

24
Q

Independent

A

One event doesn’t affect the probability of another;
P(A|B) = P(A)

25
Binomial Distribution
P(X = x) = (n choose x) p^x * (1-p)^(n-x) where n = # trials, x = # true outcomes, p = single probability of true outcome - use when sampling with replacement
26
Hypergeometric Distribution
P(X = x) = (d choose x) ((N - d) choose (n - r)) / (N choose n) where n = # trials, x = # true outcomes, N = pop size, d = # true outcomes in population - use when sampling without replacement
27
Probability Combinatorics Step 1
Compute cardinality of sample space.
28
Probability Combinatorics Step 2
Determine criteria for event or combination of events to be considered true: - consider permutations or combinations of sets or multisets. - If stuck try determining criteria for event(s) to be NOT true
29
Probability Combinatorics Step 3
Compute cardinality of event space; i.e. how many ways are there to satisfy the criteria?
30
Geometric Random Variable
An RV whose distribution represents the total number of independent Bernoulli trials (i) before the first success.
31
Bernoulli Random Variable
An RV representing a trial which can only take on one of two values, success or failure, at a given individual probability (p).
32
Binomial Random Variable
An RV whose distribution represents an unknown number of successes (i) in a fixed number of independent Bernoulli trials (n).
33
Poisson Random Variable
An RV whose distribution represents the number of events (i) that happen within a fixed time interval (lambda).
34
Uniform Random Variable
An RV whose distribution represents a constant probability within the interval [a, b].
35
Exponential Random Variable
An RV whose distribution represents the time (lambda) between events.
36
A measure of how strongly two RVs are related.
Covariance
37
Covariance scaled to [-1,1]; often designated by the greek letter "rho."
Correlation coefficient
38
Formula: sigma_X = ?
√(∑(x - µ_x)^2 * P(X = x))
39
E(aX + bY + c) = ?
aE(X) + bE(Y) + c = ?
40
Central limit theorem
The distribution of sample means approximates a normal distribution as the number of samples increases, regardless of the population's distribution.
41
V(aX + bY + c) = ?
a^2 * V(X) + b^2 V(Y) + 2abCov(X,Y)
42
Cov(XY) = ?
E(XY) - E(X)E(Y) = ?
43
E(XY) = ?
∑(x * y * P(X = x, Y = y)) = ?
44
The expected value of the sum of IRVs is...?
...the sum of the expected values.
45
The variance of the sum of IRVs is...?
...the sum of the variances.
46
Binomial Discrete PMF
P(X = i) = (n choose i) * p^i * (1 - p)^(n - i)
47
Exponential PDF
f(x) = lambda * e^(-lambda * x)
48
Exponential Expected Value
E(X) = 1/lambda
49
Exponential Variance
V(X) = 1/lambda^2