<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, orthocenter of the triangle</title>
    <link>http://www.mapleprimes.com/questions/129799-Orthocenter-Of-The-Triangle</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Wed, 10 Jun 2026 21:33:51 GMT</lastBuildDate>
    <pubDate>Wed, 10 Jun 2026 21:33:51 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, orthocenter of the triangle</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, orthocenter of the triangle</title>
      <link>http://www.mapleprimes.com/questions/129799-Orthocenter-Of-The-Triangle</link>
    </image>
    <item>
      <title>My comment</title>
      <link>http://www.mapleprimes.com/questions/129799-Orthocenter-Of-The-Triangle?ref=Feed:MaplePrimes:orthocenter of the triangle:Comments#answer129802</link>
      <itunes:summary>&lt;p&gt;Your code is correct, but too long.&lt;/p&gt;
&lt;p&gt;Another solution:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;restart: &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;with(LinearAlgebra):&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;A:=&amp;lt;1,-3,0&amp;gt;: B:=&amp;lt;-2,1,1&amp;gt;: C:=&amp;lt;3,1,2&amp;gt;: M:=x*A+y*B+z*C:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;{DotProduct(B-A,C-M)=0, DotProduct(C-A,B-M)=0, x+y+z = 1}: &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;solve({DotProduct(B-A,C-M)=0, DotProduct(C-A,B-M)=0, x+y+z = 1}): assign(%): M: &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;'M'=[seq(M[i],i=1..3)];&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;M=[4/5, -2/5, 1]&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Your code is correct, but too long.&lt;/p&gt;
&lt;p&gt;Another solution:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;restart: &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;with(LinearAlgebra):&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;A:=&amp;lt;1,-3,0&amp;gt;: B:=&amp;lt;-2,1,1&amp;gt;: C:=&amp;lt;3,1,2&amp;gt;: M:=x*A+y*B+z*C:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;{DotProduct(B-A,C-M)=0, DotProduct(C-A,B-M)=0, x+y+z = 1}: &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;solve({DotProduct(B-A,C-M)=0, DotProduct(C-A,B-M)=0, x+y+z = 1}): assign(%): M: &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;'M'=[seq(M[i],i=1..3)];&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;M=[4/5, -2/5, 1]&lt;/p&gt;</description>
      <guid>129802</guid>
      <pubDate>Thu, 19 Jan 2012 14:52:38 Z</pubDate>
      <itunes:author>Kitonum</itunes:author>
      <author>Kitonum</author>
    </item>
    <item>
      <title>How to find the barycentric coordinates of the ort...</title>
      <link>http://www.mapleprimes.com/questions/129799-Orthocenter-Of-The-Triangle?ref=Feed:MaplePrimes:orthocenter of the triangle:Comments#comment303732</link>
      <itunes:summary>&lt;p&gt;How to find the barycentric coordinates of the orthocenter of the ABC triangle (in the ABC repere) using cartesian coordinates ? Thank you..&lt;/p&gt;
</itunes:summary>
      <description>&lt;p&gt;How to find the barycentric coordinates of the orthocenter of the ABC triangle (in the ABC repere) using cartesian coordinates ? Thank you..&lt;/p&gt;
</description>
      <guid>303732</guid>
      <pubDate>Thu, 08 Aug 2024 07:17:17 Z</pubDate>
      <itunes:author>JAMET</itunes:author>
      <author>JAMET</author>
    </item>
    <item>
      <title>Re</title>
      <link>http://www.mapleprimes.com/questions/129799-Orthocenter-Of-The-Triangle?ref=Feed:MaplePrimes:orthocenter of the triangle:Comments#comment303743</link>
      <itunes:summary>&lt;p&gt;&lt;a href="/questions/129799-Orthocenter-Of-The-Triangle#comment303732"&gt;@JAMET&lt;/a&gt;&amp;nbsp;&amp;nbsp;See code below. &lt;strong&gt;x&lt;/strong&gt;, &lt;strong&gt;y&lt;/strong&gt;, &lt;strong&gt;z&lt;/strong&gt; are the barycentric coordinates of point M:&lt;/p&gt;

&lt;pre class="prettyprint"&gt;
restart;
with(LinearAlgebra):
A:=&amp;lt;1,-3,0&amp;gt;: B:=&amp;lt;-2,1,1&amp;gt;: C:=&amp;lt;3,1,2&amp;gt;: M:=x*A+y*B+z*C:
{DotProduct(B-A,C-M)=0, DotProduct(C-A,B-M)=0, x+y+z = 1}:
solve({DotProduct(B-A,C-M)=0, DotProduct(C-A,B-M)=0, x+y+z = 1}); # barycentric coordinates of M
&amp;#39;M&amp;#39;=eval(M, %); # cartesian coordinates of M&lt;/pre&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;
</itunes:summary>
      <description>&lt;p&gt;&lt;a href="/questions/129799-Orthocenter-Of-The-Triangle#comment303732"&gt;@JAMET&lt;/a&gt;&amp;nbsp;&amp;nbsp;See code below. &lt;strong&gt;x&lt;/strong&gt;, &lt;strong&gt;y&lt;/strong&gt;, &lt;strong&gt;z&lt;/strong&gt; are the barycentric coordinates of point M:&lt;/p&gt;

&lt;pre class="prettyprint"&gt;
restart;
with(LinearAlgebra):
A:=&amp;lt;1,-3,0&amp;gt;: B:=&amp;lt;-2,1,1&amp;gt;: C:=&amp;lt;3,1,2&amp;gt;: M:=x*A+y*B+z*C:
{DotProduct(B-A,C-M)=0, DotProduct(C-A,B-M)=0, x+y+z = 1}:
solve({DotProduct(B-A,C-M)=0, DotProduct(C-A,B-M)=0, x+y+z = 1}); # barycentric coordinates of M
&amp;#39;M&amp;#39;=eval(M, %); # cartesian coordinates of M&lt;/pre&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;
</description>
      <guid>303743</guid>
      <pubDate>Thu, 08 Aug 2024 16:36:26 Z</pubDate>
      <itunes:author>Kitonum</itunes:author>
      <author>Kitonum</author>
    </item>
    <item>
      <title>Can you explain&amp;nbsp;M:=x*A+y*B+z*C and&amp;nbsp;x+y+z</title>
      <link>http://www.mapleprimes.com/questions/129799-Orthocenter-Of-The-Triangle?ref=Feed:MaplePrimes:orthocenter of the triangle:Comments#comment129809</link>
      <itunes:summary>&lt;p&gt;Can you explain&amp;nbsp;&lt;strong&gt;M:=x*A+y*B+z*C and&amp;nbsp;&lt;strong&gt;x+y+z = 1. &lt;/strong&gt;&lt;/strong&gt;I don't understant. Thank you.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Can you explain&amp;nbsp;&lt;strong&gt;M:=x*A+y*B+z*C and&amp;nbsp;&lt;strong&gt;x+y+z = 1. &lt;/strong&gt;&lt;/strong&gt;I don't understant. Thank you.&lt;/p&gt;</description>
      <guid>129809</guid>
      <pubDate>Thu, 19 Jan 2012 19:59:12 Z</pubDate>
      <itunes:author>toandhsp</itunes:author>
      <author>toandhsp</author>
    </item>
    <item>
      <title>Higher dimensions</title>
      <link>http://www.mapleprimes.com/questions/129799-Orthocenter-Of-The-Triangle?ref=Feed:MaplePrimes:orthocenter of the triangle:Comments#comment129810</link>
      <itunes:summary>&lt;p&gt;The approach used by Kitonum works in higher dimensions (&amp;gt;3) too.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;The approach used by Kitonum works in higher dimensions (&amp;gt;3) too.&lt;/p&gt;</description>
      <guid>129810</guid>
      <pubDate>Thu, 19 Jan 2012 20:14:27 Z</pubDate>
      <itunes:author>Markiyan Hirnyk</itunes:author>
      <author>Markiyan Hirnyk</author>
    </item>
    <item>
      <title>Explanation</title>
      <link>http://www.mapleprimes.com/questions/129799-Orthocenter-Of-The-Triangle?ref=Feed:MaplePrimes:orthocenter of the triangle:Comments#comment129814</link>
      <itunes:summary>&lt;p&gt;&lt;span class="hps"&gt;If&lt;/span&gt; &lt;span class="hps"&gt;three&lt;/span&gt; &lt;span class="hps"&gt;points A, B&lt;/span&gt; &lt;span class="hps"&gt;and C are&lt;/span&gt; &lt;span class="hps"&gt;collinear&lt;/span&gt;&lt;span&gt;, they define&lt;/span&gt; &lt;span class="hps"&gt;a single&lt;/span&gt; &lt;span class="hps"&gt;plane, and&lt;/span&gt;&lt;span&gt;&amp;nbsp;each point M of&lt;/span&gt;&amp;nbsp;&lt;span class="hps"&gt;this plane&lt;/span&gt;&amp;nbsp;&lt;span class="hps"&gt;is&lt;/span&gt; &lt;span class="hps"&gt;given by the formula&lt;/span&gt; &lt;span class="hps"&gt;M&lt;/span&gt; &lt;span class="hps"&gt;= xA + yB + zC,&lt;/span&gt; &lt;span class="hps"&gt;where x&lt;/span&gt; &lt;span class="hps"&gt;+ y + z =&lt;/span&gt; &lt;span class="hps"&gt;1.&lt;/span&gt; &lt;span class="hps"&gt;The numbers&lt;/span&gt; &lt;span class="hps"&gt;x&lt;/span&gt;&lt;span&gt;, y, z&lt;/span&gt; &lt;span class="hps"&gt;are called&lt;/span&gt; &lt;span class="hps"&gt;the barycentric coordinates&lt;/span&gt; &lt;span class="hps"&gt;of the point M.&lt;/span&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;span class="hps"&gt;If&lt;/span&gt; &lt;span class="hps"&gt;three&lt;/span&gt; &lt;span class="hps"&gt;points A, B&lt;/span&gt; &lt;span class="hps"&gt;and C are&lt;/span&gt; &lt;span class="hps"&gt;collinear&lt;/span&gt;&lt;span&gt;, they define&lt;/span&gt; &lt;span class="hps"&gt;a single&lt;/span&gt; &lt;span class="hps"&gt;plane, and&lt;/span&gt;&lt;span&gt;&amp;nbsp;each point M of&lt;/span&gt;&amp;nbsp;&lt;span class="hps"&gt;this plane&lt;/span&gt;&amp;nbsp;&lt;span class="hps"&gt;is&lt;/span&gt; &lt;span class="hps"&gt;given by the formula&lt;/span&gt; &lt;span class="hps"&gt;M&lt;/span&gt; &lt;span class="hps"&gt;= xA + yB + zC,&lt;/span&gt; &lt;span class="hps"&gt;where x&lt;/span&gt; &lt;span class="hps"&gt;+ y + z =&lt;/span&gt; &lt;span class="hps"&gt;1.&lt;/span&gt; &lt;span class="hps"&gt;The numbers&lt;/span&gt; &lt;span class="hps"&gt;x&lt;/span&gt;&lt;span&gt;, y, z&lt;/span&gt; &lt;span class="hps"&gt;are called&lt;/span&gt; &lt;span class="hps"&gt;the barycentric coordinates&lt;/span&gt; &lt;span class="hps"&gt;of the point M.&lt;/span&gt;&lt;/p&gt;</description>
      <guid>129814</guid>
      <pubDate>Thu, 19 Jan 2012 20:43:01 Z</pubDate>
      <itunes:author>Kitonum</itunes:author>
      <author>Kitonum</author>
    </item>
  </channel>
</rss>