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.
27 lines
387 B
27 lines
387 B
|
|
|
|
// Probability of throwing 1?
|
|
// RESULT : 1/6
|
|
S=? [s=7 & d=1 ]
|
|
|
|
// Probability of throwing 2?
|
|
// RESULT : 1/6
|
|
S=? [s=7 & d=2 ]
|
|
|
|
// Probability of throwing 3?
|
|
// RESULT : 1/6
|
|
S=? [s=7 & d=3 ]
|
|
|
|
// Probability of throwing 4?
|
|
// RESULT : 1/6
|
|
S=? [s=7 & d=4 ]
|
|
|
|
// Probability of throwing 5?
|
|
// RESULT : 1/6
|
|
S=? [s=7 & d=5 ]
|
|
|
|
// Probability of throwing 6?
|
|
// RESULT : 1/6
|
|
S=? [s=7 & d=6 ]
|
|
|
|
|