EDIT: I just realized that quoting you out of context like that makes it look a bit like you’re defending incels. Sorry about that :grin: — Jamal
What disturbed me were the intrusive alien thoughts that I disagreed with, the misogyny in embryo. — Jamal
Maybe you’re saying that that’s just how male frustration manifests itself (in this society etc.), and that this in itself is not indicative of incel tendencies, though it’s probably a necessary condition. — Jamal
There are two reasonable ways to assign variables to the set from which you will select your envelope: {x, 2x} and {x, x/2}. Either works so long as you stick with it, but if you backtrack over your variable assignment, you have to completely switch to the other assignment scheme. — Srap Tasmaner
It doesn’t hurt that you have a rich set of radically progressive beliefs to keep you away from the dark side. When I was going through it I had already been calling myself a communist for a couple of years, so I wonder if this helped prevent my descent into misogyny. I don’t think that was the main thing though. — Jamal
To be completely honest, I went through it again around 2016-2017. I went a bit mad with resentment and, the flipside, an unhealthy infatuation (which never led me to do anything abusive or creepy, I should add. Well, maybe mildly creepy.). Come to think of it, over the course of my life I seem to have oscillated between periods of quiet incel resentment that I was saved from at the last minute by the women in my life. — Jamal
Anyway, it’s probably better to target one’s ressentiment at the abstract woman than actual women. I don’t know if the former leads to the latter in a smooth progression or if something just breaks at some point based on individual psychology or circumstances. — Jamal
I have personal experience of it. In my youth I was unsuccessful with women, and I noticed I was feeling a rising resentment about it. I knew this was wrong so I didn't let it develop too far. At the time I did not have many friends, let alone female friends. All of the toxic feelings disappeared once my sex life became as astonishingly rich and exciting as it remains today. — Jamal
So if Bob is mad enough to reason with subjective probability distributions (which IMO should never be used in science, and which can be avoided even when discussing credences by using imprecise probabilities — sime
Luckily for us tho, I think women are more inclined to entertain our emotions and feelings on the subject and to support us in being equals rather then becoming as toxically matriarchal as patriarchy has been towards women in the past. We have shit to learn from women. We should listen up. — Benj96
This doesn't require an additional coin flip. She either is in the (5, 10) case or the (10, 20) case, with equal prior (and equal posterior) probabilities in this scenario. However, this is just one hypothetical situation. — Pierre-Normand
Taking into account all three possibilities regarding the contents of her initially chosen envelope, her EV for switching is the weighted sum of the updated (i.e. conditioned) EVs for each case, where the weights are the prior probabilities for the three potential contents of the initial envelope. Regardless of the initial bivariate distribution, this calculation invariably results in an overall EV of zero for switching. — Pierre-Normand
This approach also underlines the flaw the popular argument that, if sound, would generate the paradox. If we consider an initial bivariate distribution where the potential contents of the larger envelope range from $2 to $(2^m) (with m being very large) and are evenly distributed, it appears that the Expected Value (EV) of switching, conditioned on the content of the envelope being n, is positive in all cases except for the special case where n=2^m. — Pierre-Normand
The fallacy in the 'always switch' strategy is somewhat akin to the flaw in Martingale roulette strategies. — Pierre-Normand
Since you're an R user, you might find it interesting to define a model in RStan, using different choices for the prior for the smallest amount S put into a envelope. Provided the chosen prior P(S) is proper, a sample from the posterior distribution P( S | X) , where X is the observed quantity of one of the envelopes, will not be uniform, resulting in consistent and intuitive conditional expectations for E [ Y | X] (where Y refers to the quantity in the other envelope) — sime
However, it seems that you've misunderstood my use of Bayesian updating. I am not arguing that observing the $10 allows me to switch between cases. Rather, I'm saying that, given an observation of $10, I can update my beliefs about the probability of being in the (5,10) case or the (10,20) case. — Pierre-Normand
Seeing that there is $10 in one envelope still leaves it open that there might be $5 or $20 dollars in the other one. — Pierre-Normand
What does the cut correspond to? — Srap Tasmaner
I don’t think your simulation is relevant to our disagreement given that I don’t believe that it is rational to switch. — Michael
You seem to suggest I just arbitrarily whipped up some code and said "hey guys, code! problem solved!" — hypericin
Therefore, she should retain her $10, as her prior for Joe having included $20 is sufficiently low. Regardless, before she inspects the second envelope, both outcomes ($5 or $20) remain possible. — Pierre-Normand
Your assertion that 'only two values are possible' for the contents of the envelopes in the two-envelope paradox deserves further exploration. If we consider that the potential amounts are $(5, 10, 20), we might postulate some prior probabilities as follows: — Pierre-Normand
cases=matrix(c(c(10,5),c(10,20)),nrow=2,ncol=2,byrow=FALSE) number_of_envelope_pairs=10000 resulting_envelope_value_C=rep(0,number_of_envelope_pairs) #Case_C for(i in 1:number_of_envelope_pairs){ my_envelope_pair=cases[,rbinom(1,1,0.5)+1] after_switch=my_envelope_pair[2] #this chooses "the other one than 10" resulting_envelope_value_C[i]=after_switch } case_C_gain=mean(resulting_envelope_value_C-10) case_C_gain #can see it's 2.5
#Something that sounds like Case_A my_envelopes=rep(0,number_of_envelope_pairs) my_envelopes_switch_gain=my_envelopes for(i in 1:number_of_envelope_pairs){ case_index=rbinom(1,1,0.5)+1 envelope_index=rbinom(1,1,0.5)+1 my_envelopes[i]=cases[envelope_index, case_index] my_envelopes_switch_gain[i]=cases[-envelope_index, case_index]-my_envelopes[i] } mean(my_envelopes_switch_gain) #approx 0, this is if you don't open the envelope #illustrating the conditioning, NB this is not the same as conditioning on #the pair being (5,10) or the pair being (10,20) #this is the gain given the chosen envelope is 10 and the #other envelope is known to be 5 or 20. mean(my_envelopes_switch_gain[my_envelopes==10]) #this gives you approx 2.5 as we saw in case C.
#Thing which is actually Case_A my_envelopes=rep(0,number_of_envelope_pairs) my_envelopes_switch_gain=my_envelopes for(i in 1:number_of_envelope_pairs){ what_case_am_i_in_given_i_have_10=rbinom(1,1,0.5)+1 #random assignment of case, 10 provides no knowledge of case five_ten_switch_gain_given_random_envelope=0 #conditioning on pair being 5,10, gain is known ten_twenty_switch_gain_given_random_envelope=0 #conditioning on pair being 10,20, gain is known case_gains=c(five_ten_switch_gain_given_random_envelope, ten_twenty_switch_gain_given_random_envelope) my_envelopes_switch_gain[i]=case_gains[what_case_am_i_in_given_i_have_10] } mean(my_envelopes_switch_gain)#this is just 0
If you're in subcase 1 and you have £10 and you switch then you lose 5, if you're in subcase 2 and you have £10 then you gain £10. Each of these is equally likely, hence E(z) suggesting you should switch. — Michael
If you're in subcase 1 then you lose £5 by switching. If you're in subcase 2 then you gain £10 by switching. There is a 50% chance that you're in subcase 1 and a 50% chance that you're in subcase 2. So according to the E(z) calculation, it is rational to switch. — Michael
You both seem to be mixing up the participant's subjective assessment and some God's eye view objective assessment. — Michael
Yes, and I think it is perfectly correct to say, in case A, that the probability that the other envelope contains £20 is 50%. — Michael
They are aware. They are told before the experiment starts that one envelope contains twice as much as the other. They open their envelope to find £10. They know that the possible values in the other envelope are £5 or £20. — Michael
If I have a red ball, a blue ball, and a white ball, and if I pick two at random and put one in one package and another in another package, and if you open one and find a red ball, it is perfectly correct for you to say that the probability that the ball in the other package is blue is 50% and that the probability that the ball in the other package is white is 50%, even though the sample space, given that one ball is known to be red, is either (red, blue) or (red, white). — Michael
↪fdrake If I have a red ball, a blue ball, and a white ball, and if I pick two at random and put one in one package and another in another package, and if you open one and find a red ball, it is perfectly correct for you to say that the probability that the ball in the other package is blue is 50% and that the probability that the ball in the other package is white is 50%, even though the sample space, given that one ball is known to be red, is either (red, blue) or (red, white). — Michael
If there is a 50% chance that I am in (5, 10) and a 50% chance that I am in (10, 20), and if I have £10, then there is a 50% chance that the other envelope contains £5 and a 50% chance that the other envelope contains £20. According to — Michael
The framing is the paradox. I pick one of two envelopes at random. One is twice the value of the other. Given that the probability that I picked the more valuable envelope, it is rational to switch. But also to then switch back. — Michael
I'm not sure what you mean. Perhaps you could answer the questions I posed earlier? — Michael
I don't think the problem with this formula is with its probability assignments. If I know that one envelope contains more money than the other, and if I pick one at random, then whether I open it or not the probability that I picked the envelope with the more money is — Michael
I tell you that heads is worth £30. What is the probability that it landed on the more valuable side? 1/2. You knowing that it landed on heads and that heads is worth £30 makes no difference as you don't know which of heads and tails is the more valuable or how valuable the more valuable side is. — Michael
There is nothing there that I disagree with. But I don't think the paradox arises if the values of the two envelopes are stipulated in advance ($10 and $20, say). The paradox arises when we stipulate that the probability of the second envelope containing the largest amount is 1/2 and is not conditionally dependent on the value of the initially chosen envelope. In the example that you give, the probability of the second envelope containing $20 conditionally on the first envelope containing $10 is 1 (and vice versa). — Pierre-Normand
mean(rbinom(10000,1,0.5))
Do real anarchists have meetings? — frank
I stand by the claim that the probability that the other envelope contains twice as much as my envelope is equal to the probability that the other envelope contains half as much as my envelope, that probability being 1/2. — Michael
The argument does depend on S5 where the accessibility relation is universal. From my reading there are good reasons to accept S5 so it would be shortsighted to deny it simply to dismiss the modal ontological argument, and special pleading to deny it only for the modal ontological argument. — Michael
Does it show that a modally necessary God exists? Is ◊◻∃xGx true and does ◊◻∃xGx entail ◻∃xGx? — Michael