[algogeeks] Re: No of triangles

2011-12-04 Thread Dave
@Payel: I think you are asking how many triangles you can form with
integer sides and perimeter n. See http://oeis.org/A005044 for several
formulas and for references.

Dave

On Dec 4, 2:41 am, payel roy smithpa...@gmail.com wrote:
 You have been given a number n. If you have to divide n into 3 parts so
 that you can build a tri-angle. Given n, how many will be possible?

-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] Re: same perimeter triangles

2007-06-08 Thread [EMAIL PROTECTED]

the distance ap, bp and cp are the unknowns.
we can get 3 simultaneous equations based on the condition that the
permeters are same.
ie, ab+ap= bc+pc ... and so on .
3 unknows and 3 equations = we can find the unknowns.
once we find the distance ap and bp, finding the point 'p' is again
solved by
two simultaneous equations

On Jun 1, 6:01 pm, Terry [EMAIL PROTECTED] wrote:
 Hi,
 This one's puzzling me since a while. Any thoughts
 In a triangle ABC, find a point P such that perimeter of the triangles
 formed by (A,B,P), (B,C,P) and (A,C,P) are same. how do we determine P
 and what is it called


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/algogeeks
-~--~~~~--~~--~--~---



[algogeeks] Re: same perimeter triangles

2007-06-08 Thread Vishal
Not really. The third equation is trivial and can be derived from other two.

So in fact we have two equations and 3 unknowns.


On 6/8/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:


 the distance ap, bp and cp are the unknowns.
 we can get 3 simultaneous equations based on the condition that the
 permeters are same.
 ie, ab+ap= bc+pc ... and so on .
 3 unknows and 3 equations = we can find the unknowns.
 once we find the distance ap and bp, finding the point 'p' is again
 solved by
 two simultaneous equations

 On Jun 1, 6:01 pm, Terry [EMAIL PROTECTED] wrote:
  Hi,
  This one's puzzling me since a while. Any thoughts
  In a triangle ABC, find a point P such that perimeter of the triangles
  formed by (A,B,P), (B,C,P) and (A,C,P) are same. how do we determine P
  and what is it called


 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send email to algogeeks@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/algogeeks
-~--~~~~--~~--~--~---