Page 1 of 1
10734 - Triangle Partitioning
Posted: Sat Oct 09, 2004 6:50 pm
by ..
The problem says that:
Code: Select all
A triangle can be divided into two equal triangle by drawing a median on its largest edge
Consider the sample
3 4 5
If I am correct, the 2 small triangles from the first division are (3, 2.5, 2.5) and (4, 2.5, 2.5)
So what is the actual meaning of "
equal"???

Posted: Sat Oct 09, 2004 8:11 pm
by little joey
Their area, but that's completely irrelevant for the problem.
Two triangles (a,b,c): a>=b, b>=c and (a',b',c'): a'>=b', b'>=c' are "similar" (i.e. have the same "style") iff a/a' == b/b' == c/c'.
If you split the two triangles (4,5/2,5/2) and (3,5/2,5/2) again, you get four equal triangles (5/2,2,3/2) (truely equal (congruent) this time), which are similar to the original triangle.
Posted: Sun Oct 10, 2004 7:53 am
by ..
Thanks, get AC

10734
Posted: Sat Jul 30, 2005 3:41 pm
by Md. Aftabuddin
[quote="little joey"]Their area, but that's completely irrelevant for the problem.
Two triangles (a,b,c): a>=b, b>=c and (a',b',c'): a'>=b', b'>=c' are "similar" (i.e. have the same "style") iff a/a' == b/b' == c/c'.
If you split the two triangles (4,5/2,5/2) and (3,5/2,5/2) again, you get four equal triangles (5/2,2,3/2) (truely equal (congruent) this time), which are similar to the original triangle.[/quote]
The area is equal in the case of isoceles,equilateral and right tringle but not for general tringle
Posted: Thu Jan 31, 2008 5:41 am
by andmej
How can I know when should I stop dividing the smaller triangles?
Posted: Thu Jan 31, 2008 6:21 am
by rio
If a triangle has congruity with a triangle which you already got, you could stop dividing it.
-----
Rio