You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
191 B
15 lines
191 B
|
|
// long run probability that s = 0
|
|
// RESULT: 0.6209277663961226
|
|
S=? [s = 0]
|
|
|
|
// = b / (a+b)
|
|
|
|
|
|
// long run probability that s = 1
|
|
// RESULT: 0.3790722336038772
|
|
S=? [s = 1]
|
|
|
|
// = a / (a+b)
|
|
|
|
|