Chapter 5: Probability Flashcards

1
Q

Define Probability

A

long run relative frequency
number between 0 and 1
no negative numbers
no square roots

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

Define Law of Large Numbers

A

more trials of a random process brings you closer to its probability

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

Interpretation of Probability [P(A)]

A

After many many __context__, the proportion of time that __context A__ will occur is about __P(A)__.

ex. P(heads)=0.5; After many many __coin flips__, the proportion of times that __heads__ will occur is about __0.5__.

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

How would you Simulate?

A
  • % chance of __success context__
  • # of trials
  • Goal
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Description of the usage of random digit table to carry out the simulation

A
  1. assign # [let 0-3 represent __X__, 4-9 represent __Y__, ignore #-#]
  2. Ignore repeated numbers
  3. read random digit table from left to right by # digits each time, stop when # of trials is completed.
  4. To get the probability of __success context__, analyze data if __goals in 1 group of digits read__ that are not the same numbers and within interval of __assigned #s__.
  5. calculate

– or use RandInt{lowest #, highest #, how many you want}

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

Define Disjoint: Addition Rule

A

P(AUB) = P(A) + P(B)

Disjoint = mutually exclusive = no outcomes in common

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

Define Complement Rule

A

P(A^c) = 1-P(A)

A^c, A bar, not A = all same notation

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

Define Conditional Probability

A

P(A|B) = P(A and B) / P(B)

Probability of one event happening given another event happened first

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

Define Independence

A

if…
- P(A)*P(B) = P(A and B)
- P(A) = P(A|B) = P(A|B^c)
- P(B) = P(B|A) = P(B|A^c)
then… A and B are independent

Events are independent if the occurrence of one event doesn’t change the probability of the other event.

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

Define Mutually Exclusive

A

No outcomes in common

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

Difference between Mutually Exclusive and Independent

A
  • They are not relatable
  • mutually exclusive and independent cannot happen at the same time
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Define Multiplication Rule

A

P(A and B) = P(A)P(B|A) = P(B)P(A|B)

The probability that events A and B both occur can be found using the general multiplication rule.

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

Define Multiplication Rule for Independent Events

A

P(A and B) = P(A)*P(B)

The probability that events A and B both occur and A and B are independent events.

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

Interpretation of Conditional Probability [P(A|B)]

A

Given __context B__, there is a __P(A|B)__ probability of __context A__.

ex. P(red car|pulled over) = 0.48; Given that __a care is pulled over__, there is a __0.48__ probability of __the car being red__.

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