Showing posts with label triangle. Show all posts
Showing posts with label triangle. Show all posts

Wednesday, 13 August 2014

Total number of triangles in an inverted triangle system

Question:

To find total number of triangles in an inverted triangular system which has n triangles, each of which is inverted and contained inside its previous triangle.

Example: 



Solution : 

If the total number of triangles is n
Except for the innermost triangle, every triangle made results in three smaller triangles, so the number of such smaller triangles is 3*(n-1)

Apart from the smaller formed triangles, there are n triangles that form the figure.

Thus, the total number of such formed triangles will be the sum of both these numbers, i.e. 3*(n-1)+n

Therefore, we obtain the total number of triangles in an inverted triangle system is 4n-3

© Rishabh Bidya


Tuesday, 24 June 2014

Total number of triangles in a figure with h horizontal non intersecting lines and v vertical lines dropped from a vertex to its opposite side(cevians)

Question:

To find total number of triangles in a triangular body which has h horizontal lines, two of which do not intersect and v vertical lines which are all dropped from one vertex to its opposite side.



Solution:

The total number of triangles in the figure is:

(h+1)*(h+2)*(v+1)/2

Example :


If h=3 and v=2,

substituting the values of h and v in the formula given above, we get,

Total number of triangles = 30


Note : If a line is dropped from a vertex to its opposite side, it is called as a cevian.

© Rishabh Bidya