All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Numbers
Handshakes #2 (Posted on 2024-06-08) Difficulty: 3 of 5
Refer to Handshakes, in which:

The Smiths, the Andrings and the Cliffords all hold a big party. Everyone shakes hands with every member of the other two families (no one shakes hands with members of their own family), 142 handshakes in all.

Assuming that there at least as many Andrings as Smiths, and at least as many Cliffords as Andrings, determine:

A) Is there any number larger than 142 handshakes that still leads to a unique solution?

(B) What is the largest number of handshakes if we are told that there is a different number of people in each family?

(C) What is the largest number leading to a unique solution if we know that there are at least 2 people in each family?

(D) What is the maximum if there are 4 families, each with at least 2 members, and each with a different number of members?

No Solution Yet Submitted by K Sengupta    
No Rating

Comments: ( Back to comment list | You must be logged in to post comments.)
Some Thoughts computer findings | Comment 1 of 4

The code after finding the numbers with unique solutions (within limit of 300 people altogether

goodset=[142 163 177 193];
for goal= 142:300
  ct=0;
  for tot=5:50
    for s = 1: tot/3
      for a = s : (tot-s)/2
        c = tot - a - s;
        if c > 0  
          if a * s + s * c + a * c == goal
            ct=ct+1;
            if ismember(goal,goodset)
              disp([s a  c goal])
            end
          end
        end
      end
    end
  end
  if ct==1
    % disp(goal)
  end
end



Smiths Anddrings Cliffords    handshakes

     1    10        12           142
     1     3        40           163
     3     3        28           177
     4     7        15           193

  Posted by Charlie on 2024-06-08 21:57:54
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (1)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (4)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information