Geometric Counting - Triangle Bowtie

How many triangles can you find in this figure?

10 38 16 24

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.

5 solutions

Zandra Vinegar Staff
Aug 16, 2015

Hi, @Zandra Vinegar ! I think you forgot to count these! There are 4 of this type.

Vishnu Bhagyanath - 5 years, 9 months ago

Log in to reply

I was literally just about to comment the same thing, with this image:

Extra Triangles Extra Triangles

Luke Johnson-Davies - 5 years, 9 months ago

Log in to reply

Thank you, 4 beautiful neglected cases!

Zandra Vinegar Staff - 5 years, 9 months ago

I was surprised too on not having 38 as option.

Swapnil Joshi - 5 years, 9 months ago

Yes x4! Thank you. :)

Zandra Vinegar Staff - 5 years, 9 months ago

Log in to reply

I was just marked wrong since I attempted 34 before when there was no option 38.

Vishnu Bhagyanath - 5 years, 9 months ago

Log in to reply

@Vishnu Bhagyanath Sorry about that -- when I updated the solution, there was no way to correct individual false-negatives. And I used the email informer because this seems like exactly the kind of mistake a problem writer (myself in this case) should own up to fully.

Zandra Vinegar Staff - 5 years, 9 months ago

@Vishnu Bhagyanath I am looking into fixing this!

Zandra Vinegar Staff - 5 years, 9 months ago
Dhanwinder Singh
Aug 22, 2015

Correct answer is 38

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
lines = [[1,5,10,16],[15,9,5,2],[3,9,14,18],[17,14,10,4],[1,3,8,15,17],[2,4,11,16,18],[6,7,8,9,10,11,12,13],[1,6],[6,17],[2,13],[13,18],[3,7],[7,15],[4,12],[12,16]]
def check(a):
        global lines
        for i in lines:
                flag = 1
                for j in a:
                        if j not in i:
                                flag = 0
                if flag == 1:
                        return 1
        return 0


counter = 0
for i in range(1,19):
        for j in range(i+1,19):
                for k in range(j+1,19):
                        if check([i,j]) and check([j,k]) and check([k,i]) and not check([i,j,k]):
                                print i, j, k
                                counter+=1
print counter

The result comes out to be 38

Ajay Brahmakshatriya - 5 years, 9 months ago

Log in to reply

An impressive way to have solved it! And thank you for notifying me about the error in this problem.

I've have updated the solution accordingly.

Zandra Vinegar Staff - 5 years, 9 months ago

we know that the correct answer is 38 but we want solution here

Hadia Qadir - 5 years, 9 months ago
Sergio Cristancho
Aug 23, 2015

Actually, there are 38 triangles.

Hadia Qadir
Aug 30, 2015
  1. 4 obvious in the center of each square (8 total) another 8 by combining two of each of the smaller ones (up to 16 now) now to the 4 large obvious ones formed in the larger squares (another 8 so up to 24) then same method of combining for another 8 (up to 32). Now we can deal with the intersection. There's the 2 obvious ones (now up to 34) now for the 4 hidden ones. Take the top point of one large square and the bottom point of the concentric square and you can follow the lines to the intersection to find your hidden triangles there are 4 of these all together adding up to a final total of 38
Sadasiva Panicker
Aug 23, 2015

16 + 16 + 2 =34

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...