Ch 5 Concepts+R Flashcards

1
Q

Probability

A

proportion of times the event occurs in the long run

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

sample space

A

contains all the possible outcomes of a probability experiment

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

Event model

A

outcome or a collection of outcomes from a sample space

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

Probability model

A

probability experiment of a sample space

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

Law of large numbers

A

probability experiment repeated will approach its probability (proportion of times it occurs)

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

R-proportion vector

A

prop=numeric(n)

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

R-n=1000

A

total amount of experiments

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

R- when i=1

A

x=c(1,0,0,1….)
prop[1]=sum(x[1:1])/1
x[1:1]=c(1)
prop[1]=1/1=1
1,0,0,0,0,0……..

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

R-when i=2

A

x=c(1,0,0,1…..)
prop[2]=sum(x[1:2])/2
x[1:2]=c(1,0)
prop[2]=1/2=0.5
1,0.5,0,0…….

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

Probability experiment

A

when we don’t know the result but we know a long series of repetitions will come out.

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

sample space

A

has all possible outcomes of a probability experiment (ex, S-{1,2,3,4,5,6} for six sided die)

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

Ex of Sample space & probability: We would like to draw a SRS of n=3 from 10 people
a) what is the sample space
b) what is the probability both Person 1 and 2 will be selected

A

a) S={(1,2,3),(1,2,4),(1,2,5)….(8,9,10)}
b) (possibilities with 1,2 in them/ total # of possiblities)

8/(10
3)
8/120

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

How do you compute (10
3)

A

10 choose 3
=(10!)/ 3!(10-3)!

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

Computing probability with equally likely outcomes P(A)

A

of outcomes in A/ # of outcomes in a sample space aka (k/n)

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

The porbability of any event is always between

A

0 and 1 (0 being impossible) and 1 being guaranteed

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