<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Three  points A, M, N lie on a straight line.</title>
    <link>http://www.mapleprimes.com/questions/129859-Three--Points-A-M-N-Lie-On-A-Straight-Line</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Tue, 09 Jun 2026 17:08:49 GMT</lastBuildDate>
    <pubDate>Tue, 09 Jun 2026 17:08:49 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Three  points A, M, N lie on a straight line.</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Three  points A, M, N lie on a straight line.</title>
      <link>http://www.mapleprimes.com/questions/129859-Three--Points-A-M-N-Lie-On-A-Straight-Line</link>
    </image>
    <item>
      <title>It is easy</title>
      <link>http://www.mapleprimes.com/questions/129859-Three--Points-A-M-N-Lie-On-A-Straight-Line?ref=Feed:MaplePrimes:Three  points A, M, N lie on a straight line.:Comments#answer129866</link>
      <itunes:summary>&lt;p&gt;&lt;span class="hps"&gt;Try to write&lt;/span&gt; &lt;span class="hps"&gt;the code&lt;/span&gt; &lt;span class="hps"&gt;yourself!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="hps"&gt;Directions:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="hps"&gt;1) Find a&lt;/span&gt; &lt;span class="hps"&gt;plane passing through point A and plane d1&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span class="hps"&gt;2)&lt;/span&gt; &lt;span class="hps"&gt;Find the point&lt;/span&gt; &lt;span class="hps"&gt;of intersection of&lt;/span&gt; &lt;span class="hps"&gt;the plane from 1)&lt;/span&gt;&amp;nbsp;&lt;span class="hps"&gt;and plane d2&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="hps"&gt;&lt;span class="hps"&gt;In some cases,&lt;/span&gt; &lt;span class="hps"&gt;your&lt;/span&gt; &lt;span class="hps"&gt;problem&lt;/span&gt; &lt;span class="hps"&gt;may&lt;/span&gt; &lt;span class="hps"&gt;have no solutions&lt;/span&gt; &lt;span class="hps"&gt;or&lt;/span&gt; &lt;span class="hps"&gt;have an infinite&lt;/span&gt; &lt;span class="hps"&gt;number of solutions.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;span class="hps"&gt;Try to write&lt;/span&gt; &lt;span class="hps"&gt;the code&lt;/span&gt; &lt;span class="hps"&gt;yourself!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="hps"&gt;Directions:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="hps"&gt;1) Find a&lt;/span&gt; &lt;span class="hps"&gt;plane passing through point A and plane d1&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span class="hps"&gt;2)&lt;/span&gt; &lt;span class="hps"&gt;Find the point&lt;/span&gt; &lt;span class="hps"&gt;of intersection of&lt;/span&gt; &lt;span class="hps"&gt;the plane from 1)&lt;/span&gt;&amp;nbsp;&lt;span class="hps"&gt;and plane d2&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="hps"&gt;&lt;span class="hps"&gt;In some cases,&lt;/span&gt; &lt;span class="hps"&gt;your&lt;/span&gt; &lt;span class="hps"&gt;problem&lt;/span&gt; &lt;span class="hps"&gt;may&lt;/span&gt; &lt;span class="hps"&gt;have no solutions&lt;/span&gt; &lt;span class="hps"&gt;or&lt;/span&gt; &lt;span class="hps"&gt;have an infinite&lt;/span&gt; &lt;span class="hps"&gt;number of solutions.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;</description>
      <guid>129866</guid>
      <pubDate>Fri, 20 Jan 2012 23:34:27 Z</pubDate>
      <itunes:author>Kitonum</itunes:author>
      <author>Kitonum</author>
    </item>
    <item>
      <title>My way</title>
      <link>http://www.mapleprimes.com/questions/129859-Three--Points-A-M-N-Lie-On-A-Straight-Line?ref=Feed:MaplePrimes:Three  points A, M, N lie on a straight line.:Comments#answer129894</link>
      <itunes:summary>&lt;pre&gt;with(LinearAlgebra):&lt;/pre&gt;
&lt;pre&gt;A:=&amp;lt;0,1,2&amp;gt;: &amp;nbsp;M:=&amp;lt;2*t,1 + t,-1 - t&amp;gt;: N:=&amp;lt;1+m, -1 -2*m,2+m&amp;gt;:&lt;/pre&gt;
&lt;pre&gt;u:=A - M: v:=A-N:&lt;br&gt;w:=CrossProduct(u,v);&lt;/pre&gt;
&lt;pre&gt;sys:=solve([t*m-(3+t)*(2+2*m) = 0, (3+t)*(-1-m) -2*t*m=0, 2*t*(2+2*m) +t*(-1-m)=0],[t,m]);&lt;/pre&gt;
&lt;pre&gt;subs(sys[1],M);&lt;/pre&gt;
&lt;pre&gt;subs(sys[1],N);&lt;/pre&gt;
&lt;pre&gt;&amp;nbsp;&lt;/pre&gt;
&lt;pre&gt;In this way, i don't know how to solve w = 0 in order to find m and t &lt;span&gt;automatically&lt;/span&gt;. Please help me. Thank you very much.&lt;/pre&gt;</itunes:summary>
      <description>&lt;pre&gt;with(LinearAlgebra):&lt;/pre&gt;
&lt;pre&gt;A:=&amp;lt;0,1,2&amp;gt;: &amp;nbsp;M:=&amp;lt;2*t,1 + t,-1 - t&amp;gt;: N:=&amp;lt;1+m, -1 -2*m,2+m&amp;gt;:&lt;/pre&gt;
&lt;pre&gt;u:=A - M: v:=A-N:&lt;br&gt;w:=CrossProduct(u,v);&lt;/pre&gt;
&lt;pre&gt;sys:=solve([t*m-(3+t)*(2+2*m) = 0, (3+t)*(-1-m) -2*t*m=0, 2*t*(2+2*m) +t*(-1-m)=0],[t,m]);&lt;/pre&gt;
&lt;pre&gt;subs(sys[1],M);&lt;/pre&gt;
&lt;pre&gt;subs(sys[1],N);&lt;/pre&gt;
&lt;pre&gt;&amp;nbsp;&lt;/pre&gt;
&lt;pre&gt;In this way, i don't know how to solve w = 0 in order to find m and t &lt;span&gt;automatically&lt;/span&gt;. Please help me. Thank you very much.&lt;/pre&gt;</description>
      <guid>129894</guid>
      <pubDate>Sat, 21 Jan 2012 21:21:59 Z</pubDate>
      <itunes:author>toandhsp</itunes:author>
      <author>toandhsp</author>
    </item>
    <item>
      <title>The corrected code</title>
      <link>http://www.mapleprimes.com/questions/129859-Three--Points-A-M-N-Lie-On-A-Straight-Line?ref=Feed:MaplePrimes:Three  points A, M, N lie on a straight line.:Comments#comment129899</link>
      <itunes:summary>&lt;p&gt;Your way is very good!&lt;/p&gt;
&lt;p&gt;Here is the corrected code:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;A:=&amp;lt;0,1,2&amp;gt;:&amp;nbsp; M:=&amp;lt;2*t,1 + t,-1 - t&amp;gt;: N:=&amp;lt;1+m, -1 -2*m,2+m&amp;gt;: &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;u:=A - M: v:=A - N: &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;w:=LinearAlgebra[CrossProduct](u,v): &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;solve([seq(w[i]=0,i=1..3)]): assign(%): &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;'M'=M; 'N'=N;&lt;/strong&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Your way is very good!&lt;/p&gt;
&lt;p&gt;Here is the corrected code:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;A:=&amp;lt;0,1,2&amp;gt;:&amp;nbsp; M:=&amp;lt;2*t,1 + t,-1 - t&amp;gt;: N:=&amp;lt;1+m, -1 -2*m,2+m&amp;gt;: &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;u:=A - M: v:=A - N: &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;w:=LinearAlgebra[CrossProduct](u,v): &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;solve([seq(w[i]=0,i=1..3)]): assign(%): &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;'M'=M; 'N'=N;&lt;/strong&gt;&lt;/p&gt;</description>
      <guid>129899</guid>
      <pubDate>Sat, 21 Jan 2012 23:04:48 Z</pubDate>
      <itunes:author>Kitonum</itunes:author>
      <author>Kitonum</author>
    </item>
    <item>
      <title>Thank you very much.</title>
      <link>http://www.mapleprimes.com/questions/129859-Three--Points-A-M-N-Lie-On-A-Straight-Line?ref=Feed:MaplePrimes:Three  points A, M, N lie on a straight line.:Comments#comment129917</link>
      <itunes:summary>&lt;p&gt;Thank you very much.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Thank you very much.&lt;/p&gt;</description>
      <guid>129917</guid>
      <pubDate>Sun, 22 Jan 2012 04:22:18 Z</pubDate>
      <itunes:author>toandhsp</itunes:author>
      <author>toandhsp</author>
    </item>
  </channel>
</rss>