Triangle Game

The numbers 1, 2, 3, 4, 5, 6 are written once in the circles above, such that each side of the triangle has the same sum.

How many possibilities are there for the sum along the side?

2 4 3 5

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

3 solutions

Discussions for this problem are now closed

Label the circles, starting at the top circle and going clockwise, ( a , b , c , d , e , f ) . (a, b, c, d, e, f).

We wish to find all integer sums n n such that

n = a + b + c = c + d + e = e + f + a . n = a + b + c = c + d + e = e + f + a.

Now 3 n = ( a + c + e ) + ( a + b + c + d + e + f ) = ( a + c + e ) + 21. 3n = (a + c + e) + (a + b + c + d + e + f) = (a + c + e) + 21.

Thus we are looking for n n such that n = 7 + a + c + e 3 . n = 7 + \dfrac{a + c + e}{3}.

Now a + c + e a + c + e can take on any value from 1 + 2 + 3 = 6 1 + 2 + 3 = 6 to 4 + 5 + 6 = 15 4 + 5 + 6 = 15 but what we require is that 3 ( a + c + e ) 3 | (a + c + e) in order for n n to be an integer. So at most we can have 4 4 possible sums, corresponding to a + c + e a + c + e equalling 6 , 9 , 12 6, 9, 12 and 15 15 , giving us possible values for n n of 9 , 10 , 11 9, 10, 11 and 12. 12.

We then need to confirm that these values are indeed possible, which they are using the following configurations for ( a , b , c , d , e , f ) (a,b,c,d,e,f) :

  • ( 1 , 5 , 3 , 4 , 2 , 6 ) n = 9 (1,5,3,4,2,6) \Longrightarrow n = 9 ,

  • ( 1 , 4 , 5 , 2 , 3 , 6 ) n = 10 (1,4,5,2,3,6) \Longrightarrow n = 10 ,

  • ( 2 , 3 , 6 , 1 , 4 , 5 ) n = 11 (2,3,6,1,4,5) \Longrightarrow n = 11 ,

  • ( 6 , 2 , 4 , 3 , 5 , 1 ) n = 12 (6,2,4,3,5,1) \Longrightarrow n = 12 .

This confirms that there are indeed 4 \boxed{4} possible sums.

Brock Brown
Mar 17, 2015

Python 2.7:

1
2
3
4
5
6
7
8
9
from itertools import permutations
found_sums = set()
for combo in permutations(xrange(1,7)):
    side_1 = sum(combo[0:3])
    side_2 = sum(combo[2:5])
    side_3 = sum(combo[4:6]+(combo[0],))
    if side_1 == side_2 and side_1 == side_3:
        found_sums.add(side_1)
print "Answer:", len(found_sums)

If I'm right, this is an unsolved problem for the general n-gon case. Would you like to try your hand at it?

Chung Kevin - 6 years, 2 months ago
Layba Durrani
Mar 22, 2015

the sequences are: 1 5 6 3 4 2 sum equals to 9 1 4 6 5 2 3 sum equals to 10 2 3 5 6 1 4 sum equals to 11 4 2 3 6 1 5 sum equals to 12

Nicely done

Chung Kevin - 6 years, 2 months ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...