<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, I tried solving this  question but i till can't find where I am making a mistake... need ur help pls</title>
    <link>http://www.mapleprimes.com/questions/35520-I-Tried-Solving-This--Question-But-I</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Fri, 12 Jun 2026 13:11:22 GMT</lastBuildDate>
    <pubDate>Fri, 12 Jun 2026 13:11:22 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, I tried solving this  question but i till can't find where I am making a mistake... need ur help pls</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, I tried solving this  question but i till can't find where I am making a mistake... need ur help pls</title>
      <link>http://www.mapleprimes.com/questions/35520-I-Tried-Solving-This--Question-But-I</link>
    </image>
    <item>
      <title>Entries of matrix</title>
      <link>http://www.mapleprimes.com/questions/35520-I-Tried-Solving-This--Question-But-I?ref=Feed:MaplePrimes:I tried solving this  question but i till can't find where I am making a mistake... need ur help pls:Comments#answer44157</link>
      <itunes:summary>&lt;p&gt;1) Check your spelling.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;2) C2 is not the same as c2.&lt;/p&gt;
&lt;p&gt;3) You should use Matrix rather than matrix.&lt;/p&gt;
&lt;p&gt;4) You should assign a value to finalmatrix[n,m] after your loop on q, instead of assigning a value to finalmatrix during that loop. &lt;/p&gt;
&lt;p&gt;5) You want the procedure to return finalmatrix.&lt;/p&gt;
&lt;p&gt;6) &amp;quot;The dimensions n, m, q should be&lt;br /&gt;
input parameters in your procedure.&amp;quot;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;1) Check your spelling.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;2) C2 is not the same as c2.&lt;/p&gt;
&lt;p&gt;3) You should use Matrix rather than matrix.&lt;/p&gt;
&lt;p&gt;4) You should assign a value to finalmatrix[n,m] after your loop on q, instead of assigning a value to finalmatrix during that loop. &lt;/p&gt;
&lt;p&gt;5) You want the procedure to return finalmatrix.&lt;/p&gt;
&lt;p&gt;6) &amp;quot;The dimensions n, m, q should be&lt;br /&gt;
input parameters in your procedure.&amp;quot;&lt;/p&gt;</description>
      <guid>44157</guid>
      <pubDate>Fri, 12 Mar 2010 22:33:00 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>hello robert</title>
      <link>http://www.mapleprimes.com/questions/35520-I-Tried-Solving-This--Question-But-I?ref=Feed:MaplePrimes:I tried solving this  question but i till can't find where I am making a mistake... need ur help pls:Comments#answer44158</link>
      <itunes:summary>&lt;p&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-7.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-8.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-9.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-10.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-11.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-12.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-13.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-14.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-15.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-16.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-17.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-18.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-22.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-23.png" alt="" /&gt;multiplymatrix := proc (n, m, q, M, N)&lt;br /&gt;
local r1, r2, c1, c2, MM, finalmatrix; &lt;br /&gt;
r1 := RowDimension(M);&lt;br /&gt;
r2 := RowDimension(N); &lt;br /&gt;
c1 := ColumnDimension(M);&lt;br /&gt;
c2 := ColumnDimesion(N);&lt;br /&gt;
finalmatrix := Matrix(1 .. r1, 1 .. c2); &lt;br /&gt;
for n to r1 do;&lt;br /&gt;
for m to c1 do;&lt;br /&gt;
for q to r2 do;&lt;br /&gt;
finalmatrix[n, m];&lt;br /&gt;
MM := 0; &lt;br /&gt;
MM := MM+M[n, q]*N[q, m];&lt;br /&gt;
finalmatrix[n, m] := MM; &lt;br /&gt;
if c1 &amp;lt;&amp;gt; r2 then print(&amp;quot;not calculatable&amp;quot;) &lt;br /&gt;
else&lt;br /&gt;
if (c1 = r2) then return finalmatrix= MM+M[n, q]*N[q, m];&lt;br /&gt;
end if ;&lt;br /&gt;
end if ;&lt;br /&gt;
end do;&lt;br /&gt;
end do;&lt;br /&gt;
end do;&lt;br /&gt;
end proc;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Robert&lt;br /&gt;
sorry to disturb you again but can you please tell me where I am still finding faults at and where they are?&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-7.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-8.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-9.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-10.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-11.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-12.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-13.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-14.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-15.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-16.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-17.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-18.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-22.png" alt="" /&gt;&lt;img src="file:///C:/Users/KWASIJ%7E1/AppData/Local/Temp/moz-screenshot-23.png" alt="" /&gt;multiplymatrix := proc (n, m, q, M, N)&lt;br /&gt;
local r1, r2, c1, c2, MM, finalmatrix; &lt;br /&gt;
r1 := RowDimension(M);&lt;br /&gt;
r2 := RowDimension(N); &lt;br /&gt;
c1 := ColumnDimension(M);&lt;br /&gt;
c2 := ColumnDimesion(N);&lt;br /&gt;
finalmatrix := Matrix(1 .. r1, 1 .. c2); &lt;br /&gt;
for n to r1 do;&lt;br /&gt;
for m to c1 do;&lt;br /&gt;
for q to r2 do;&lt;br /&gt;
finalmatrix[n, m];&lt;br /&gt;
MM := 0; &lt;br /&gt;
MM := MM+M[n, q]*N[q, m];&lt;br /&gt;
finalmatrix[n, m] := MM; &lt;br /&gt;
if c1 &amp;lt;&amp;gt; r2 then print(&amp;quot;not calculatable&amp;quot;) &lt;br /&gt;
else&lt;br /&gt;
if (c1 = r2) then return finalmatrix= MM+M[n, q]*N[q, m];&lt;br /&gt;
end if ;&lt;br /&gt;
end if ;&lt;br /&gt;
end do;&lt;br /&gt;
end do;&lt;br /&gt;
end do;&lt;br /&gt;
end proc;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Robert&lt;br /&gt;
sorry to disturb you again but can you please tell me where I am still finding faults at and where they are?&lt;/p&gt;</description>
      <guid>44158</guid>
      <pubDate>Mon, 15 Mar 2010 09:38:37 Z</pubDate>
      <itunes:author>kwasidu</itunes:author>
      <author>kwasidu</author>
    </item>
    <item>
      <title>Still wrong</title>
      <link>http://www.mapleprimes.com/questions/35520-I-Tried-Solving-This--Question-But-I?ref=Feed:MaplePrimes:I tried solving this  question but i till can't find where I am making a mistake... need ur help pls:Comments#comment44159</link>
      <itunes:summary>&lt;p&gt;1) Check your spelling.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;2) Now you have n, m and q as input parameters, but you're not using them as such.&amp;nbsp; &lt;br /&gt;
Instead you're using them as loop indices.&amp;nbsp; Never do that. Loop indices should be local variables.&lt;/p&gt;
&lt;p&gt;3) Your finalmatrix[n,m]; does nothing. &lt;/p&gt;
&lt;p&gt;4) You need to assign an entry of finalmatrix after finishing the loop on q, not inside it.&lt;/p&gt;
&lt;p&gt;5) You should check whether c1 = r2 before starting your loops, not within them.&amp;nbsp; &lt;br /&gt;
c1 &amp;lt;&amp;gt; r2 should result in an error. not just printing &amp;quot;not calculatable&amp;quot;.&amp;nbsp; You can use an &lt;b&gt;error&lt;/b&gt; statement to do this.&lt;/p&gt;
&lt;p&gt;6)&amp;nbsp; Your return statement makes no sense, and shouldn't be inside the loops.&amp;nbsp; You want to return finalmatrix at the end of the procedure, not in the middle.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;1) Check your spelling.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;2) Now you have n, m and q as input parameters, but you're not using them as such.&amp;nbsp; &lt;br /&gt;
Instead you're using them as loop indices.&amp;nbsp; Never do that. Loop indices should be local variables.&lt;/p&gt;
&lt;p&gt;3) Your finalmatrix[n,m]; does nothing. &lt;/p&gt;
&lt;p&gt;4) You need to assign an entry of finalmatrix after finishing the loop on q, not inside it.&lt;/p&gt;
&lt;p&gt;5) You should check whether c1 = r2 before starting your loops, not within them.&amp;nbsp; &lt;br /&gt;
c1 &amp;lt;&amp;gt; r2 should result in an error. not just printing &amp;quot;not calculatable&amp;quot;.&amp;nbsp; You can use an &lt;b&gt;error&lt;/b&gt; statement to do this.&lt;/p&gt;
&lt;p&gt;6)&amp;nbsp; Your return statement makes no sense, and shouldn't be inside the loops.&amp;nbsp; You want to return finalmatrix at the end of the procedure, not in the middle.&lt;/p&gt;</description>
      <guid>44159</guid>
      <pubDate>Mon, 15 Mar 2010 10:53:33 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
  </channel>
</rss>