• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

The BarTenders Kids

 
Ranch Hand
Posts: 3404
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The Bartender's Kids
===========================
A man walks into a bar, orders a drink, and starts chatting with the bartender. After a while, he learns that the bartender has three children. "How old are your children?" he asks. "Well," replies the bartender, "the product of their ages is 72." The man thinks for a moment and then says, "That's not enough information." "All right," continues the bartender, "if you go outside and look at the building number posted over the door to the bar, you'll see the sum of the ages." The man steps outside, and after a few moments he reenters and declares, "Still not enough!" The bartender smiles and says, "My youngest just loves strawberry ice cream."
How old are the children?
[ February 13, 2004: Message edited by: HS Thomas ]
 
lowercase baba
Posts: 13089
67
Chrome Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i hate these questions.
;-)
i think all the posibilities that give 72 as a product are
72,1,1 sum = 74
36,2,1 sum = 39
24,3,1 sum = 28
18,4,1 sum = 23
18,2,2 sum = 22
12,6,1 sum = 19
12,3,2 sum = 17
9,8,1 sum = 18
9,4,2 sum = 15
8,3,3 sum = 14
6,6,2 sum = 14
6,3,4 sum = 13
but now i'm stuck. if the visitor can't tell their ages, then it can't be any of the elemets that give a unique sum. so they're either 8,3 and 3, or 6,6, and 2. i don't see how to figure out which one is the correct one.
[ February 13, 2004: Message edited by: fred rosenberger ]
 
Wanderer
Posts: 18671
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think we need to assume that
  • all ages are integers
  • the man is smart enough to generate the same list of possible ages that Fred did
  • if two children have the same age, neither may be called older or younger

  • Given the sum, the man was unable to determine the ages. That means it was a sum shared by more than one combination of ages. Which means it's one of these two:
    8,3,3 sum = 14
    6,6,2 sum = 14
    Of these two, the first has no youngest child. Therefore the ages are 6, 6, 2.
     
    HS Thomas
    Ranch Hand
    Posts: 3404
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    Thanks you two for solving it with such clarity.
    I did get 6,6,2 but more because it felt right.
     
    fred rosenberger
    lowercase baba
    Posts: 13089
    67
    Chrome Java Linux
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    i guess my problem was that i have twin nephews. while they are indeed both 7 years old, one IS actually 5 minutes younger than the other. so one IS the youngest.
    but if we agree with Jim's 3rd assumption (which clearly i'm not sure is valid, but i'll let it go ), then yes, we can solve the problem.
     
    Jim Yingst
    Wanderer
    Posts: 18671
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    All three assumptions are extremely dubious in the real world; that's why I thought it necessary to explicitly state them. Even without twins, it's quite possible for two children less than 12 months apart to have the same "age" when age is truncated (or possibly rounded) to an integer.
    In the real world, the info "My youngest just loves strawberry ice cream" is completely useless, and the problem has no single solution. I tried to find a minimal set of assumptions that would allow a unique solution.
     
    fred rosenberger
    lowercase baba
    Posts: 13089
    67
    Chrome Java Linux
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    btw, i sometimes feel humbled talking about stuff with folks who have 30 - 100 times the number of posts i have...
     
    Jim Yingst
    Wanderer
    Posts: 18671
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    That may just indicate that you actually have some sort of life in the outside world.
     
    HS Thomas
    Ranch Hand
    Posts: 3404
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    The only way to get a free drink in this bar is to prove to the barman that you are a friend of his boss. Here's how it's done. You go to the barman, he tells you a number and you tell him the "countersign" number. If your answer is correct you get your drink. There's this mathematician who thought that there can't be a standard list of numbers and countersign numbers. There must be an algorithm that provides the answer from the number given by the barman. So he joins a party of three men who ARE friends of the boss and walks with them to the bar hoping to understand the algorithm from the three answers. HERE'S WHAT HE HEARD: The barman says "6" to the first man, he says "3" and got his drink. The barman said "12" to the second man, who replied "6" and got his drink. The barman said "14" to the third man and he answered "8" and got his drink. Now it's the mathematicians turn. "20", said the barman.
    What is the counter sign?
     
    Greenhorn
    Posts: 8
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    The mathematician should say 6. The algorithm is to count the number of alphabets in the barman's number. Is that right?
    [ February 16, 2004: Message edited by: Anu Ram ]
     
    Ranch Hand
    Posts: 108
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator

    Originally posted by Anu Ram:
    The mathematician should say 6. The algorithm is to count the number of alphabets in the barman's number. Is that right?
    [ February 16, 2004: Message edited by: Anu Ram ]


    Read that again.
     
    HS Thomas
    Ranch Hand
    Posts: 3404
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator

    Originally posted by Anu Ram:
    The mathematician should say 6. The algorithm is to count the number of alphabets in the barman's number. Is that right?


    That's right. I think Tanga pointed out that it ought to be "count the number of letters" to be more accurate for all possible numbers the barman uses. e.g. twenty has two "t's" , strictly speaking two letters but one alphabet.
    Knew what was meant though.
     
    Anu Ram
    Greenhorn
    Posts: 8
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    Yeah. It should be 'letters', not 'alphabets'.
    ok, here is a question:
    A jeweller has ten heaps of ten gold coins each. They are all of the same dimensions, and each coin is supposed to weigh 10 gms. But the goldsmith who sold it to the jeweller used impure gold to make the coins in one heap, and so each coin in this one heap weighs 11 gms. The jeweller can make use of his weighing scale just once. How does he find out which heap is bad?
     
    author
    Posts: 9050
    21
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    Take 1 piece from pile 1, 2 pieces from pile 2, 3 pieces from pile 3...
    The total weight will be some number between 1 and 10 too heavy.
     
    Anu Ram
    Greenhorn
    Posts: 8
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    You got it!
    reply
      Bookmark Topic Watch Topic
    • New Topic