1
$\begingroup$

There are 12 different sticks in a bag of integral length. You pull out 3 sticks, and you CANNOT put them together to form a triangle. What are the shortest possible lengths of the 12 sticks? What is the shortest length of the longest stick?

THIS IS NOT A HOMEWORK QUESTION. WAS GIVEN AS A PUZZLE TO THINK ABOUT

Im really not sure how to go about this. All I am thinking is if the sticks are all multiples of each other?

  • 0
    The *triangle inequality* is useful here. $|a|+|b|\geq |a+b|$. In this context, to form a triangle with side lengths $a, b$ and $c$ you require that the sum of the lengths of the two shorter sides must be greater than or equal to the length of the longer side.2017-02-27
  • 0
    I don't really understand the question. Are you saying that no combination of three sticks taken from the $12$ will make a triangle?2017-02-27
  • 0
    Im not really sure why he said 12 sticks, but Im guessing you need to know how many sticks to figure out the shortest length of the longest stick in the bag2017-02-27
  • 0
    Also, thanks for suggesting the triangle inequality! How would I use that to go about finding integral lengths?2017-02-27
  • 0
    @H.T. well, it's possible he meant that no combination of three sticks works. We could have $\{1,1,3,3,7,7,15,15,\cdots\}$. the way you phrased the question, though, it sounds more like one particular set of three fails to make a triangle.2017-02-27
  • 0
    Im not sure about the combinations of all the sticks from the bag. he did not specify2017-02-27
  • 0
    Ok, well then I'd assume he meant "no combination of three sticks makes a triangle". I think the list I wrote the start of is minimal.2017-02-27
  • 0
    Also: you need to be clear if you are, or are not, allowing a straight line to be a triangle. In my list I assumed you are allowing that (but I could be wrong, it's not my question). If, say, you had lengths $\{1,1,2\}$ then you get a "degenerate" triangle (with area $0$). You have to decide whether that's ok or not.2017-02-27
  • 0
    @lulu $\{1, 1, 2\}$ should work—$\{1,1,3,3\}$ shouldn't work (because 3-3-1 is a valid triangle).2017-02-27
  • 0
    @PeterKagey Oh, absolutely correct. Thanks. My list is incorrect for that reason.2017-02-27
  • 1
    I believe if degenerate triangles are allowed, the shortest possible lengths obey the Fibonacci sequence. This should be due to the fact that when constructing such a set of 12 lengths, the minimum possible "next" length is the sum of the two largest lengths you have so far. So, it would go like "1,1,2,3,5" etc.2017-02-27

1 Answers 1

2

The lengths of the sticks can be arranged in the nondecreasing series $(a_1,a_2,...,a_{12})$. The shortest length is $1$, so we can say, that in this bag there are two sticks with length $1$, so $a_1=a_2=1$

Now we can construct next pieces by taking two longest (last) sticks, summing their lengths and adding $1$ to obtain the smallest integer number larger than the sum of two other integers: $$a_{k+2}=a_k+a_{k+1}+1$$ we have then: $$a_{k+2}>a_k+a_{k+1} \geq a_i+a_j \,\,\,(i

The series is then $$(1,1,3,5,9,15,25,41,67,109,177,287)$$

We can also say, that the degenerate triangles doesn't count as triangles in this context. In this case we don't have to add $1$ to the lengths of two sticks in forst formula, so we have: $$a_{k+2}=a_k+a_{k+1}$$ and this is the recursive formula for Fibonacci series: $$(1,1,2,3,5,8,13,21,34,55,89,144)$$

  • 0
    in the second case you meant that degenerate triangles **do** count, right?2017-03-28
  • 0
    @mau - no. Degenerate triangles were counted as triangles in first case.2017-03-29
  • 0
    A degenerate triangle is (1,1,2), not anyone in the first case2017-03-29
  • 0
    @mau - the question is to find numbers, that can **not** be the lengths of triangle sides. So if we assume, that degenrate triangle is not a triangle, lengths (1,1,2) are ok.2017-03-29
  • 0
    silly me... you are perfectly right!2017-03-29