[Math] how to solve triangles count puzzle

geometrypuzzlerecreational-mathematics

Below is a puzzle of counting triangles.How to solve such puzzle ?

enter image description here

source:
http://gpuzzles.com/mind-teasers/how-many-triangles-challenge/?source=stackmath

Best Answer

Be systematic. Label all your points. Choose a unique label for each triangle, e.g. by listing point labels in alphabetic order. Enumerate triangles in some order so you can check for them one at a time. I'd suggest lexicographic order.

Exploit symmetry. Many triangles will occur four times, or even eight times, throughout the figure in rotated and posibly reflected versions of one another. So you can keep the work down if you find only one representative of each such group, as long as you make sure to get the associated count right.

Combining these ideas, I'd label the figure like this:

Figure

Then you can enumerate triangles like this:

  • Axy: $4ABB, 0ABC, 8ABE, 8ABF, 0ACC, 0ACD, 0ACE,$
    $\qquad 8ACF, 0ADD, 0ADE, 8ADF, 0AEE, 0AEF, 4AFF$
  • Bxy: $4BBB,0BBC,0BBD,0BBE,4BBF,0BCC,0BCD,0BCE,$
    $\qquad 8BCF,0BDD,0BDE,8BDF,0BEE,8BEF,4BFF$
  • Cxy: $0CC*, 0CDD, 0CDE, 8CDF, 0CE*, 4CFF$
  • Dxy: $0DD*, 0DE*, 0DFF$
  • Exy: $0EE*, 0EFF$
  • Fxy: $4FFF$

So you get a total of

$$(4+8+8+8+8+4)+(4+4+8+8+8+4)+(8+4)+4=92$$

unless I (still) made a mistake. But since this solution now agrees with the $92$ stated on the original problem statement question, I trust it might (finally) be correct now. Thanks to TonyK for spotting the one I had missed! My first attempt was way lower, so you really have to be very systematic to get this even close to correct.

Originally I had a higher count, namely $104$ (would be $108$ by now with my other fixes), but that's because I'd assumed $BCF$ to be collinear so I had $8ABC$ and $8BBC$. Jyrki pointed out in a comment that it doesn't look like that in your original post, even though it's close.

The same approach can be applied to other, similar tasks, as demonstrated in this post.