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
Q

Binomial Distribution

A

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
Q

Hypergeometric Distribution

A

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
Q

Probability Combinatorics Step 1

A

Compute cardinality of sample space.

28
Q

Probability Combinatorics Step 2

A

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
Q

Probability Combinatorics Step 3

A

Compute cardinality of event space; i.e. how many ways are there to satisfy the criteria?

30
Q

Geometric Random Variable

A

An RV whose distribution represents the total number of independent Bernoulli trials (i) before the first success.

31
Q

Bernoulli Random Variable

A

An RV representing a trial which can only take on one of two values, success or failure, at a given individual probability (p).

32
Q

Binomial Random Variable

A

An RV whose distribution represents an unknown number of successes (i) in a fixed number of independent Bernoulli trials (n).

33
Q

Poisson Random Variable

A

An RV whose distribution represents the number of events (i) that happen within a fixed time interval (lambda).

34
Q

Uniform Random Variable

A

An RV whose distribution represents a constant probability within the interval [a, b].

35
Q

Exponential Random Variable

A

An RV whose distribution represents the time (lambda) between events.

36
Q

A measure of how strongly two RVs are related.

A

Covariance

37
Q

Covariance scaled to [-1,1]; often designated by the greek letter “rho.”

A

Correlation coefficient

38
Q

Formula: sigma_X = ?

A

√(∑(x - µ_x)^2 * P(X = x))

39
Q

E(aX + bY + c) = ?

A

aE(X) + bE(Y) + c = ?

40
Q

Central limit theorem

A

The distribution of sample means approximates a normal distribution as the number of samples increases, regardless of the population’s distribution.

41
Q

V(aX + bY + c) = ?

A

a^2 * V(X) + b^2 V(Y) + 2abCov(X,Y)

42
Q

Cov(XY) = ?

A

E(XY) - E(X)E(Y) = ?

43
Q

E(XY) = ?

A

∑(x * y * P(X = x, Y = y)) = ?

44
Q

The expected value of the sum of IRVs is…?

A

…the sum of the expected values.

45
Q

The variance of the sum of IRVs is…?

A

…the sum of the variances.

46
Q

Binomial Discrete PMF

A

P(X = i) = (n choose i) * p^i * (1 - p)^(n - i)

47
Q

Exponential PDF

A

f(x) = lambda * e^(-lambda * x)

48
Q

Exponential Expected Value

A

E(X) = 1/lambda

49
Q

Exponential Variance

A

V(X) = 1/lambda^2