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.
I used one of the methods, but I generalized M4.
Count all of the individual triangles: that gives us 13.
Then, count all of the triangles made by combining two adjacent triangles: 12
Next, do the same but for 3 triangles: 11
You probably see where this is going. If not, do the same with 4 triangles and get 10
The pattern goes on, until you get to 13 triangles which is the entire triangle (or 1).
This gives us the sum: n = 1 ∑ 1 3 n = 2 1 3 ( 1 3 + 1 ) = 1 3 ⋅ 7 = 9 1 .
In the most general form, if any 2-dimensional figure is split into n polygons such that all of the polygons share a vertex, then there are 2 n ( n + 1 ) polygons in the entire figure. β ⌈ ∣ ⌉
To avoid double-counting, we will consider only triangles below each triangular wedge. * The orange triangle is part of one triangle (itself). * The pink triangle above it is part of two, itself and pink+orange. * The brown triangle up next is part of three: itself, itself+pink, and itself+pink+orange.
Continuing in this fashion, we see that the n th triangle up from the bottom is a piece in n different triangles (again, only considering triangles below it). Thus the total number of triangles is 1 + 2 + ⋯ + 1 3 = 2 1 3 ⋅ 1 4 = 9 1
Problem Loading...
Note Loading...
Set Loading...
I have several methods of approaching this problem and I have posted them here: (Hope you understand with the easiest one)
M1: This is the same as finding the number of ways to choose two points out of 14 on the slanting side which is N = ( 2 1 4 ) = ( 1 4 − 2 ) ! × 2 ! 1 4 ! = 9 1
M2: Let n be the number of points between the 2 vertices of the hypotenuse, n > 0 then the number of triangles is given by:
f ( n ) = 2 n 2 + 3 n + 2 .
Substituting n = 1 2 will give us the desired answer of 9 1
M3:
In the following diagram, a triangle can be formed from any 3 of the 15 vertices. So it is the number of ways of choosing 3 vertices from 15 vertices. But since 14 points lie on the same line (a triangle can't be formed by 3 points which lie on the same line), we should subtract the number of ways of choosing 3 vertices from 14 of those vertices.
So the answer is: ( 3 1 5 ) − ( 3 1 4 ) = ( 2 1 4 ) = ( 1 4 − 2 ) ! × 2 ! 1 4 ! = 9 1
M4:
It is clearly noticeable that this follows the triangular number pattern. Let k be the number of small triangles of the diagram, then k t h triangular number will give us the answer; in our case, k = 1 3 ⟹ 2 k ( k + 1 ) = 2 1 3 ( 1 3 + 1 ) = 9 1
Notes:
In M3: it is generally true ( k n ) − ( k n − 1 ) = ( k − 1 n − 1 ) which can be proved by simple algebra:
Tip: Here I will prove ( k n ) + ( k − 1 n ) = ( k n + 1 )
( k n ) + ( k − 1 n ) = k ! ( n − k ) ! n ! + ( k − 1 ) ! ( n − k + 1 ) ! n ! = n ! [ k ! ( n − k + 1 ) ! n − k + 1 + k ! ( n − k + 1 ) ! k ] = k ! ( n − k + 1 ) ! n ! ( n + 1 ) = ( k n + 1 )
In M4: We note that there is a pattern of triangular numbers. If anyone can elaborate why this pattern follows up it would be great. Personally, I am not sure but I have a few ideas such as the fact of summing up triangular numbers: Let S n be the sum, then:
S n = n = 1 ∑ n 2 n ( n + 1 ) = 2 1 ( 1 + 1 ) + 2 2 ( 2 + 1 ) + ⋯ + 2 n ( n + 1 )
Which is also the same as:
S n = n = 2 ∑ n ( 2 n ) = ( 2 2 ) + ( 2 3 ) + ⋯ + ( 2 n )
Do you have any other ways? :D