Difference between revisions of "User:Kevindunn"

From Process Model Formulation and Solution: 3E4
Jump to navigation Jump to search
m
m
Line 6: Line 6:
* [mailto:kevin.dunn@connectmv.com kevin.dunn@connectmv.com] (alternate)
* [mailto:kevin.dunn@connectmv.com kevin.dunn@connectmv.com] (alternate)


<rst>
<html>
<rst-options: 'toc' = False/>
The commented lines in the MATLAB code show how the function is used. The results are: <span class="math">\(x =[1.3333, 3.1667,1.5000,-6.0000]\)</span>.
<rst-options: 'reset-figures' = False/>
Also, the \(A\) and <span class="math">\(b\)</span> (denoted as <span class="math">\(C=[A\quad b]\)</span> below) are updated as:</p>
 
<blockquote>
 
<div><div class="math">
</rst>
\[\begin{split}C^1=
      \left[ \begin{array}{ccccc}
1  &amp;  1  &amp;  1  &amp;  1  &amp;  0\\
        0  &amp;  -3  &amp;  -3  &amp;  -3  &amp;  4\\
        0  &amp;  3  &amp;  -5  &amp;  0  &amp;  2\\
0  &amp;  -6 &amp;  -6  &amp;  -4  &amp;  -4
      \end{array} \right]\end{split}\]</div>
<div class="math">
\[\begin{split}C^2=
\left[ \begin{array}{ccccc}
    1  &amp;  1  &amp;  1  &amp;  1 &amp;  0\\
    0  &amp;  -3  &amp;  -3  &amp;  -3 &amp;  4\\
    0  &amp;  0  &amp;  -8  &amp;  -3 &amp;  6\\
    0  &amp;  0  &amp;  0  &amp;  2 &amp;  -12
\end{array} \right]\end{split}\]</div>
<div class="math">
\[\begin{split}C^3=
      \left[ \begin{array}{ccccc}
1  &amp;  1  &amp;  1  &amp;  1  &amp;  0\\
0  &amp;  -3  &amp;  -3  &amp;  -3  &amp;  4\\
        0  &amp;  0  &amp;  -8  &amp;  -3  &amp;  6\\
        0  &amp;  0  &amp;  0  &amp;  2  &amp; -12
      \end{array} \right]\end{split}\]</div>
</div></blockquote>
<p>The final result for <span class="math">\(x = [1.333, 3.167, 1.5, -6]\)</span>.</p>
</div>
</div>
</html>

Revision as of 07:30, 10 February 2017

Contact details

I don't have an office on campus. The best way to contact me is by email:

The commented lines in the MATLAB code show how the function is used. The results are: \(x =[1.3333, 3.1667,1.5000,-6.0000]\). Also, the \(A\) and \(b\) (denoted as \(C=[A\quad b]\) below) are updated as:

\[\begin{split}C^1= \left[ \begin{array}{ccccc} 1 & 1 & 1 & 1 & 0\\ 0 & -3 & -3 & -3 & 4\\ 0 & 3 & -5 & 0 & 2\\ 0 & -6 & -6 & -4 & -4 \end{array} \right]\end{split}\]
\[\begin{split}C^2= \left[ \begin{array}{ccccc} 1 & 1 & 1 & 1 & 0\\ 0 & -3 & -3 & -3 & 4\\ 0 & 0 & -8 & -3 & 6\\ 0 & 0 & 0 & 2 & -12 \end{array} \right]\end{split}\]
\[\begin{split}C^3= \left[ \begin{array}{ccccc} 1 & 1 & 1 & 1 & 0\\ 0 & -3 & -3 & -3 & 4\\ 0 & 0 & -8 & -3 & 6\\ 0 & 0 & 0 & 2 & -12 \end{array} \right]\end{split}\]

The final result for \(x = [1.333, 3.167, 1.5, -6]\).