<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[MTH603 Assignment 1 Solution and Discussion]]></title><description><![CDATA[<p dir="auto">Re: <a href="/topic/652/mth603-assignment-1-solution-and-discussion">MTH603 Assignment 1 Solution and Discussion</a></p>
<p dir="auto">Question #1: Find the root of the equation x^3+x^2+x-1 =0 correct to two decimal places by using bisection method.<br />
Question #2: Solve the system of linear equations with the help of Gaussian elimination method.<br />
2x + y + z = 9;3x −2y + 4z = 9;x +y-2z = 3</p>
<p dir="auto">Solution File</p>
]]></description><link>https://community.secnto.com//topic/2078/mth603-assignment-1-solution-and-discussion</link><generator>RSS for Node</generator><lastBuildDate>Mon, 08 Jun 2026 20:45:40 GMT</lastBuildDate><atom:link href="https://community.secnto.com//topic/2078.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 18 Nov 2020 09:16:47 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MTH603 Assignment 1 Solution and Discussion on Tue, 08 Dec 2020 15:19:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/zareen" aria-label="Profile: zareen">@<bdi>zareen</bdi></a> said in <a href="/post/6044">MTH603 Assignment 1 Solution and Discussion</a>:</p>
<blockquote>
<p dir="auto">Question #2: Solve the system of linear equations with the help of Gaussian elimination method.<br />
2x + y + z = 9;3x −2y + 4z = 9;x +y-2z = 3</p>
</blockquote>
<p dir="auto">System of Linear Equations entered :</p>
<p dir="auto">[1]    2x + y + z = 9<br />
[2]    3x - 2y + 4z = 9<br />
[3]    x + y - 2z = 3</p>
<p dir="auto">Solve by Substitution :</p>
<p dir="auto">// Solve equation [3] for the variable  y</p>
<p dir="auto">[3]    y = -x + 2z + 3</p>
<p dir="auto">// Plug this in for variable  y  in equation [1]</p>
<p dir="auto">[1]    2x + (-x +2z+3) + z = 9<br />
[1]    x + 3z = 6<br />
// Plug this in for variable  y  in equation [2]</p>
<p dir="auto">[2]    3x - 2•(-x +2z+3) + 4z = 9<br />
[2]    5x = 15<br />
// Solve equation [2] for the variable  x</p>
<p dir="auto">[2]    5x = 15</p>
<p dir="auto">[2]    x = 3<br />
// Plug this in for variable  x  in equation [1]</p>
<p dir="auto">[1]    (3) + 3z = 6<br />
[1]    3z = 3<br />
// Solve equation [1] for the variable  z</p>
<p dir="auto">[1]    3z = 3</p>
<p dir="auto">[1]    z = 1<br />
// By now we know this much :</p>
<p dir="auto">x = 3<br />
y = -x+2z+3<br />
z = 1<br />
// Use the  x  and  z  values to solve for  y<br />
y = -(3)+2(1)+3 = 2</p>
<p dir="auto">Solution :<br />
{x,y,z} = {3,2,1}</p>
]]></description><link>https://community.secnto.com//post/6191</link><guid isPermaLink="true">https://community.secnto.com//post/6191</guid><dc:creator><![CDATA[zaasmi]]></dc:creator><pubDate>Tue, 08 Dec 2020 15:19:53 GMT</pubDate></item><item><title><![CDATA[Reply to MTH603 Assignment 1 Solution and Discussion on Tue, 08 Dec 2020 15:09:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/zareen" aria-label="Profile: zareen">@<bdi>zareen</bdi></a> said in <a href="/post/6044">MTH603 Assignment 1 Solution and Discussion</a>:</p>
<blockquote>
<p dir="auto">Question #1: Find the root of the equation x^3+x^2+x-1 =0 correct to two decimal places by using bisection method.</p>
</blockquote>
<p dir="auto">We now use the Bisection Method to approximate one of the solutions. The Bisection Method is an iterative procedure to approximate a root (Root is another name for a solution of an equation).</p>
<p dir="auto">The function is   F(x) = x3 + x2 + x - 1</p>
<p dir="auto">At   x=   0.00   F(x)  is equal to  -1.00<br />
At   x=   1.00   F(x)  is equal to  2.00</p>
<p dir="auto">Intuitively we feel, and justly so, that since  F(x)  is negative on one side of the interval, and positive on the other side then, somewhere inside this interval,  F(x)  is zero</p>
<p dir="auto">Procedure :<br />
(1) Find a point “Left” where F(Left) &lt; 0</p>
<p dir="auto">(2) Find a point ‘Right’ where F(Right) &gt; 0</p>
<p dir="auto">(3) Compute ‘Middle’ the middle point of the interval [Left,Right]</p>
<p dir="auto">(4) Calculate Value = F(Middle)</p>
<p dir="auto">(5) If Value is close enough to zero goto Step (7)</p>
<p dir="auto">Else :<br />
If Value &lt; 0 then : Left &lt;- Middle<br />
If Value &gt; 0 then : Right &lt;- Middle</p>
<p dir="auto">(6) Loop back to Step (3)</p>
<p dir="auto">(7) Done!! The approximation found is Middle</p>
<p dir="auto">Follow Middle movements to understand how it works :</p>
<table class="table table-bordered table-striped">
<tbody>
<tr>
<td>Left</td>
<td>Value(Left)</td>
<td>Right</td>
<td>Value(Right)</td>
</tr>
<tr>
<td>0.000000000</td>
<td>-1.000000000</td>
<td>1.000000000</td>
<td>2.000000000</td>
</tr>
<tr>
<td>0.000000000</td>
<td>-1.000000000</td>
<td>1.000000000</td>
<td>2.000000000</td>
</tr>
<tr>
<td>0.500000000</td>
<td>-0.125000000</td>
<td>1.000000000</td>
<td>2.000000000</td>
</tr>
<tr>
<td>0.500000000</td>
<td>-0.125000000</td>
<td>0.750000000</td>
<td>0.734375000</td>
</tr>
<tr>
<td>0.500000000</td>
<td>-0.125000000</td>
<td>0.625000000</td>
<td>0.259765625</td>
</tr>
<tr>
<td>0.500000000</td>
<td>-0.125000000</td>
<td>0.562500000</td>
<td>0.056884766</td>
</tr>
<tr>
<td>0.531250000</td>
<td>-0.036590576</td>
<td>0.562500000</td>
<td>0.056884766</td>
</tr>
<tr>
<td>0.531250000</td>
<td>-0.036590576</td>
<td>0.546875000</td>
<td>0.009502411</td>
</tr>
<tr>
<td>0.539062500</td>
<td>-0.013703823</td>
<td>0.546875000</td>
<td>0.009502411</td>
</tr>
<tr>
<td>0.542968750</td>
<td>-0.002140820</td>
<td>0.546875000</td>
<td>0.009502411</td>
</tr>
<tr>
<td>0.542968750</td>
<td>-0.002140820</td>
<td>0.544921875</td>
<td>0.003670745</td>
</tr>
<tr>
<td>0.542968750</td>
<td>-0.002140820</td>
<td>0.543945312</td>
<td>0.000762452</td>
</tr>
<tr>
<td>0.543457031</td>
<td>-0.000689811</td>
<td>0.543945312</td>
<td>0.000762452</td>
</tr>
<tr>
<td>0.543457031</td>
<td>-0.000689811</td>
<td>0.543701172</td>
<td>0.000036164</td>
</tr>
<tr>
<td>0.543579102</td>
<td>-0.000326863</td>
<td>0.543701172</td>
<td>0.000036164</td>
</tr>
<tr>
<td>0.543640137</td>
<td>-0.000145359</td>
<td>0.543701172</td>
<td>0.000036164</td>
</tr>
<tr>
<td>0.543670654</td>
<td>-0.000054600</td>
<td>0.543701172</td>
<td>0.000036164</td>
</tr>
<tr>
<td>0.543685913</td>
<td>-0.000009219</td>
<td>0.543701172</td>
<td>0.000036164</td>
</tr>
<tr>
<td>0.543685913</td>
<td>-0.000009219</td>
<td>0.543693542</td>
<td>0.000013472</td>
</tr>
<tr>
<td>0.543685913</td>
<td>-0.000009219</td>
<td>0.543689728</td>
<td>0.000002127</td>
</tr>
</tbody>
</table>
<p dir="auto">Next Middle will get us close enough to zero:</p>
<p dir="auto">F(  0.543688774 ) is  -0.000000710</p>
<p dir="auto">The desired approximation of the solution is:</p>
<p dir="auto">x ≓ 0.543688774</p>
<p dir="auto">Note, ≓ is the approximation symbol</p>
<p dir="auto">One solution was found :<br />
x ≓ 0.543688774</p>
]]></description><link>https://community.secnto.com//post/6190</link><guid isPermaLink="true">https://community.secnto.com//post/6190</guid><dc:creator><![CDATA[zaasmi]]></dc:creator><pubDate>Tue, 08 Dec 2020 15:09:30 GMT</pubDate></item></channel></rss>