Counter Intuitive probablity problems.
The following struck me as counterintuitive when I first encountered them.
First: Consider a randomly selected group of people. What is the probability that two will have the same birthday? Assume 365-day years, and that they need not be the same age. Before calculating, try guessing at the following.
Suppose there are 20 people in the group.
Suppose 25.
Suppose 35.
Suppose 180.
Next: Consider a circle with an inscribed equilateral triangle. What is the probability that a random chord will be longer than a side of the triangle?
Last: Given A > B > C, it is obvious than A > C if we are dealing with real numbers. Suppose that A, B, & C are probabilities and > stands for is more likely than? Is A more likely than C?
It would be nice if you labeled guesses as guesses and provided examples or analyses if you are not guessing.
I will watch the look count and read posts for a day or so before posting analyses of the above.
More likely than not transitive.
Kedaman: Sorry that I did a bad job of using casino dice to explain probabilities. I should have said something like the following.
Casino dice are cubes with a different number (1 through 6) on each face. The numbers are actually indicated by dots (like the numbers on dominos). In the game of Craps, a pair of dice are thrown, and the total of the face up numbers is noted.
Obviously the total must be 2-12 inclusive. The probability of a total of N is usually specified as P(N).
For casino dice rolls, it is easy to calculate that P(7) > P(10) > P(12), which implies that P(7) > P(12). As indicated by the probabilities, it is obvious that a total of 7 is more likely than a total of 10, which is more likely than a total of 12, and a total of 7 is also more likely than a total of 12.
The question to be considered is the following.
Quote:
It is given that A, B, C are events and P(A), P(B), & P(C) are the associated probabilities of the events occurring.
If the probabilities indicate that event A is more likely than event B, and event B is more likely than event C, is it always true that event A is more likely than event C? If the events are rolling various totals with casino dice, the implication is valid.
It just so happens that the implication is not true for all events which have associated probabilities. The following is an example using casino-like dice constructed as follows.- The dice have different colors to aid in quickly distinguishing which is which.
- Each die has only three numbers. Opposites faces have the same number.
- The numbers 8, 1, 6 are used for the red die.
- The numbers 3, 5, 7 are used for the blue die.
- The numbers 4, 9, 2 are used for the yellow die.
Note: The above numbers are ordered to make it obvious that they are from the rows of a magic square. Imagine the numbers put into a 3X3 array and check the row, column, and diagonal totals.
Now imagine a game played with pairs of the above dice. One die is assigned to one player and another is assigned to the second player. The third die is not used. The game is simple, roll the pair of dice and note the face up number on each. The owner of the die with the higher total is the winner.
There are three possible pairs of three dice and three possible games. If you calculate the probabilities, you discover that the Red die is likely to beat the blue die, the blue die is likely to beat the yellow die, and the yellow die is likely to beat the red die. In each case the probability of winning is 5/9.
Wait a minute! "more likely than" doesn't fit the case
The event of which the probability can be calculated for, needs the comparation of two dice, not distinguished for a single die. For a single dice you could calculate the probability of winning against any randomly choosen of the other dice and get 5/9 * 1/2 + 4/9 * 1/2 which is 1/2. Let's instead say > stands for "A's chance to win against B" is more probable", doesn't mean A and B are different events, but this comparation states a single event of which the probability is higher than 1/2. Putting them like A > B > C states two events, of which both probabilities are higher than 1/2. A > C now is a third event, more or less independent from both A > B and B > C, fails because of the characteristics of A and C. Using mathematical terms of probabilities A > B > C would be: P(A,B)>1/2 && P(B,C)>1/2 where && is boolean and operator and P(A,B) is a user defined function based on characteristis of the parameters that returns a probability factor. Now althought this works out, the illusion of our "user defined" > to be similar to the aritmetic > shouldn't be that consistent when you look at it. They aren't even close.
Quote:
It is given that A, B, C are events and P(A), P(B), & P(C) are the associated probabilities of the events occurring.
If the probabilities indicate that event A is more likely than event B, and event B is more likely than event C, is it always true that event A is more likely than event C? If the events are rolling various totals with casino dice, the implication is valid.
I think the implication has to be valid unless you try to undermine the logic behind it. Your sample didn't fit the case.
I appreciate that people point out that they don't understand me
And I appreciate that they want me to explain further.
You have to excuse me, I'm often hardly understood when it comes to explaining my visions, most of the time I think it's because I think differently than others. For instance, I don't agree that the way you expressed the original problem seemed counterintuitive. However, many fans of strategy games (a computer game genre) would agree with me, since that is one of the main concepts that makes strategy games fun to play.
I'll try to explain a bit further, it's probably going to be lengthy, but I'll try to make it as clear as possible.
First I think English as well as any language are intended to be logically structured, this means they "could" be in fact converted into a mathematical language and further into a polymorphic programming language and compiled to machine code. I'm not going into how such program would function, but I'm picking an example of how a English phrase could be seen as piece of code in a polymophic programming language:
First, This is an boolean expression, it can be validated if there are such capabilities. Second "can" is a binary operator, which means it takes two arguments, the person/thing that "can" and what it "can". Operators are actually similar to methods (functions), in their functionality, but are used so that it may be easier to read. "I can Fly" would look like: can(I,Fly). "I" and "Fly", are objects. "I" would refer to the owner of the statement and "Fly" would be a functionality object. For can(x,y) to limit the characteristics of the arguments you pass you implement strong typing, which means x has to be a person, or something that "can" do something and y has to be something that "can" be done. Finally, "can" returns a boolean value, and therefore the expression is boolean. This is possible to do in C++ and most other object oriented languages.
You might wonder what I'm aiming at. I'm aiming at the complexity of languages. Operators are used in programming languages, they are unnessesary but makes things easier to read, but also introduce some complexities. In math we have such things as a > b > c, which means something totally different in a programming language, since > is a binary operator, it would evaluate a > b to a boolean value and then try to compare it with c, doesn't make sense. a > b > c in math, is a single operator with a dynamic amount of arguments, and is equivalent with a > b && b > c. The transitivity is born due to the nature of dynamic operators, and does not exist in programming languages. In English, and other spoken languages there are even more complex operators, and such often cause unintended ambigueties. However I think we can oversee that if we suppose a decent language without ambigueties.
Anyway, as you saw how a operator used in math could be converted to a programming language, you could convert any logical language into a programming language as well.
"more likely than" doesn't fit the case, basically because it can be converted to
Quote:
(probability)(EVENT)arg1 > (probability)(EVENT)arg2
the parentesis around "probability" indicates type casting, which means the events you pass as arguments are converted into probabilities. Note that the arguments has to be passed as events, not probabilities, otherways they are converted to events (if that is possible) or the the expression is invalid. Note also that you can't pass a probability; "1/3 is more likely than 1/4" doesn't sound right to you does it?
I suggested
Quote:
A's chance to win against B is more probable"
would fit the 3-die game situation better, maybe "A is more likely to win than B" would sound better, but this is somewhat invalid English, it doesn't directly imply you A is playing against B. It should be "A is more like to win AGAINT B". Assigning ">" dynamic operator this meaning, A > B > C would be converted into:
and further into:
Quote:
((Probability)WinAgainst(A,B) > 1/2) && ((Probability)WinAgainst(B,C) > 1/2)
where WinAgainst is a function that returns the EVENT of A winning B.
However the complexity doesn't end here, this is just optimized version from the following:
Quote:
#define MoreLikely(X,Y) ((probability)X > (probability)Y)
MoreLikely(WinAgainst(A,B),WinAgainst(B,A)) && MoreLikely(WinAgainst(A,B),WinAgainst(B,A))
This might also just be why I don't see it counterintuitive :)
- I agree it is not transitive, but
- I don't agree it should be expressed as "more likely than" simply because there's too much omited.
- I don't agree it's counterintuitive whether everything is expressed explicitely or not, but that's another story.
- I think it shouldn't be thought as counterintuitive when it is expressed explicitely.
In case there's something that passed your eyes without being understood (hopefully nothing got missunderstood) just ask.