Two Plus Two Older Archives  

Go Back   Two Plus Two Older Archives > 2+2 Communities > Other Other Topics
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #91  
Old 03-17-2005, 05:46 PM
ethan ethan is offline
Senior Member
 
Join Date: Jun 2004
Location: los angeles
Posts: 237
Default Re: Super Duper Extra Hard Brainteaser

[ QUOTE ]
What are the chances she has two girls?

[/ QUOTE ]

A woman with 1 will answer "yes" 1% of the time. A woman with two will answer "yes" (1 - 0.99^2 + 0.01^2) = 2% of the time. (0.99^2 is the probability of both girls _not_ being named Sarah. The 0.01^2 is added back in because "Sarah" can't be given to both.)

There are twice as many women with only one girl as there are with two, but they answer yes half as often.

So, the answer's 1/2.
Reply With Quote
  #92  
Old 03-17-2005, 05:53 PM
DMBFan23 DMBFan23 is offline
Senior Member
 
Join Date: Jun 2004
Location: I don\'t want a large Farva
Posts: 417
Default THE ANSWER IS < 1/3, N/M

I am done until someone comes and handles this is a way I cannot.

good luck all,
me
Reply With Quote
  #93  
Old 03-17-2005, 05:56 PM
DcifrThs DcifrThs is offline
Senior Member
 
Join Date: Aug 2003
Posts: 677
Default Addendum...ordering

now when i first looked at this problem, my gut says that order doesn't matter...but after thinking about it, it wouldn't be a brain teaser b/c then the answer would be 50%...

so order DOES matter and the order of the children (age in this case) affects the answer to the problem...

now what if the woman has fraternal twins and its equiprobable its BG or GB for the fraternal twins...same question...does that make it 50%?

-Barron
Reply With Quote
  #94  
Old 03-17-2005, 06:14 PM
Vince Young Vince Young is offline
Senior Member
 
Join Date: Dec 2004
Location: Texas, United States, etc.
Posts: 438
Default Re: Super Duper Extra Hard Brainteaser

I still don't understand how #1 is 1/3 instead of 1/2. Are BG and GB not the same thing?
Reply With Quote
  #95  
Old 03-17-2005, 06:15 PM
DMBFan23 DMBFan23 is offline
Senior Member
 
Join Date: Jun 2004
Location: I don\'t want a large Farva
Posts: 417
Default Re: Super Duper Extra Hard Brainteaser

[ QUOTE ]
they're the same from the sense of a set of people (when order doesn't matter) but you have to count them as far as equally likely outcomes are concerned.

think about it this way. I flip a coin twice. what are the odds I get two heads? what are odds I get one heads and one tails, in any order?


[/ QUOTE ]
Reply With Quote
  #96  
Old 03-17-2005, 06:59 PM
sammysusar sammysusar is offline
Member
 
Join Date: Oct 2004
Posts: 46
Default why the first answer

i guess im dumb and have taken too many roids but why is the first answer 1/3. seems to this sucker that there are two possibilities 1 boy and 1 girl or 2 girls both equally likely.
Reply With Quote
  #97  
Old 03-17-2005, 07:13 PM
gaming_mouse gaming_mouse is offline
Senior Member
 
Join Date: Oct 2004
Location: my hero is sfer
Posts: 2,480
Default Re: THE ANSWER IS < 1/3, N/M

[ QUOTE ]
I am done until someone comes and handles this is a way I cannot.

good luck all,
me

[/ QUOTE ]



Given the information, here are the possibilities:

B,Sara
Sara,B
G,Sara
Sara, G

Each of these events is is equally likely -- it's chance is .5*.5*.01. The answer is therefore 1/2.
Reply With Quote
  #98  
Old 03-17-2005, 07:29 PM
jason_t jason_t is offline
Senior Member
 
Join Date: Nov 2004
Location: Another downswing?
Posts: 2,274
Default Re: Super Duper Extra Hard Brainteaser

The answer is 1/2. Here's why. Once we have received the information there is a girl and her name is Sarah, we have four possibilities:

Boy, Girl named Sarah
Girl named Sarah, Boy
Girl, Girl named Sarah
Girl named Sarah, Girl.

All of these possibilities are equally likely and there are two possibilities with the situation we are concerned with. So the answer is 2/4 = 1/2.

For those interested in a Monte Carlo simulation to "check" the results, here is C code to do that.

#include &lt;stdio.h&gt;
#include &lt;stdlib.h&gt;

/* c1, c2 are the children; 0 means girl, 1 means boy
n1, n2 are the names; 0 means Sarah, not 0 means not Sarah
count1 is the number of times both children are girls
count2 is the number of times at least one child is Sarah
we are interested in count1 / count2
*/

#define ITERATES 1000000

int main(int argc, char **argv) {
int i;
int count1, count2;
int c1, c2;
int n1, n2;

count1 = count2 = 0;

srand(time());

for(i = 0; i &lt;= ITERATES; i++) {
n1 = -1;
n2 = -1;
c1 = rand() % 2;
c2 = rand() % 2;
if(c1 == 0) n1 = rand() % 100;

if(c2 == 0 &amp;&amp; n1 != 0) n2 = rand() % 100;

if(n1 == 0 || n2 == 0) {
if(c1 == 0 &amp;&amp; c2 == 0) count1++;
count2++;
}

}

printf("%d / %d\n", count1, count2);
printf("%f\n", (float) count1/ (float) count2);

return 0;
}
Reply With Quote
  #99  
Old 03-17-2005, 07:41 PM
partygirluk partygirluk is offline
Senior Member
 
Join Date: Nov 2004
Location: Pwning Broken Glass Can
Posts: 2,279
Default Re: Super Duper Extra Hard Brainteaser

[ QUOTE ]

Girl, Girl named Sarah
Girl named Sarah, Girl.

All of these possibilities are equally likely

[/ QUOTE ]

Are they?

What is the probability of girl not named sarah, girl named sarah?

99/200 * 1/200 which is 99/40,000

What is the probability of girl named sarah, girl?

1/200 * 1/2 which is 100/40,000

Where am I going wrong?
Reply With Quote
  #100  
Old 03-17-2005, 07:48 PM
DMBFan23 DMBFan23 is offline
Senior Member
 
Join Date: Jun 2004
Location: I don\'t want a large Farva
Posts: 417
Default Re: THE ANSWER IS < 1/3, N/M

[ QUOTE ]
[ QUOTE ]
I am done until someone comes and handles this is a way I cannot.

good luck all,
me

[/ QUOTE ]



Given the information, here are the possibilities:

B,Sara
Sara,B
G,Sara
Sara, G

Each of these events is is equally likely -- it's chance is .5*.5*.01. The answer is therefore 1/2.

[/ QUOTE ]

I disagree. I think [girl named sarah, girl] and [girl, girl named sarah] are subsets of [girl, girl].

also, how can the probability of this be HIGHER than the first example, which is less restrictive?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 05:27 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.