gossip
?more complicated who
pick the more complicated choice?
more complicated who
. What change to this script will make the more complicated phrase appear more often?
An even number is an integer that is divisible by 2 (such as 2, 14, 0, -4, -6, -28, and -176).
In contrast, odd numbers are integers not divisible by 2 (such as 1, 3, 9, 17, -5, -33, and -221).
RANDOM(2, 10)
RANDOM(2, 10)will return 2, 3, 4, 5, 6, 7, 8, 9, or 10.
2 * RANDOM(1, 5)
RANDOM(1, 5)will return 1, 2, 3, 4, or 5, and so
2 * RANDOM(1, 5)will return 2, 4, 6, 8, or 10.
RANDOM(1, 10) / 2
RANDOM(1, 10)will return 1, 2, 3, 4, 5, 6, 7, 8, 9, or 10, and so
RANDOM(1, 10) / 2will return ½, 1, 1 ½, 2, 2 ½, 3, 3 ½, 4, 4 ½, 5.
RANDOM(1, 5)
RANDOM(1, 5)will return 1, 2, 3, 4, or 5.
RANDOM(1, 6) + RANDOM(1, 6)
RANDOM(1, 6)will return 1, 2, 3, 4, 5, or 6 with equal probability, simulating one die, and so
RANDOM(1, 6) + RANDOM(1, 6)will return 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, or 12 with the same probability as two dice.
2 * RANDOM(1, 6)
RANDOM(1, 6)for the roll of a single die. But this expression doesn't roll two dice; it rolls one die and doubles the result. So
2 * RANDOM(1, 6)will only return 2, 4, 6, 8, 10, or 12.
RANDOM(2, 12)
RANDOM(2, 12)will return 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, or 12 equally often. Do you score 2 rolling two dice as often as you score 6?
RANDOM(1, 12)