2

If we constrain angles to whole numbers, how many triangles can we make? This is also equivalent to: how many sets of 3 integers add to 180?

1 Answers1

1

Assuming every angle has degree > 0. First we need to calculate the number of ways to distribute 177 degrees over 3 angles: $$\binom{177+3-1}{177}=\binom{179}{177} = 15931.$$

If you consider symmetrical triangles the same, you have to make sure you subtract the number of permutations. The number of triangles with identical angles is 1 ( 60,60,60). The number of triangles with only two identical angles $b$ and one angle $a(a\neq b$) is $3*88$(89 even integers between 2 and 178 minus one for $a=60$, times $3$ to account for permutations). That leaves $$15931 - 1 - 3*88 = 15666$$ triangles with three different angles. Those triangles have $3!=6$ permutations, thus $$15666/6 + 88 + 1 = 2700$$ is the number of triangles if you count symmetrical triangles as one.

danwin
  • 120
  • 1
    I used more of brute force method - examining a case where 1 is an angle and going through the 89 cases with it, then setting 2 as an angle (but subtracting 1 combination since it had been done in the 1 case). Doing this yields a pattern where the even cases are linearly related and the odds are also linearly related. Treating each as an arithmetic series and adding them together yielded 2700 as well. Not quite as elegant, but it worked! – D. McIntyre Dec 05 '15 at 23:40