In order to successfully complete this assignment, you must do the required reading, watch the provided videos, and complete all instructions. The embedded survey form must be entirely filled out and submitted on or before 11:59pm on the day before class. Students must come to class the next day prepared to discuss the material covered in this assignment.
If you have trouble with this assignment a detailed overview of the Gauss-Jordan Elimination method can be found in the Reduced Row Echelon Form section of the Beezer text (Section RREF pg 22-44)
The following video explains the different syntax we use to describe linear systems.
from IPython.display import YouTubeVideo
YouTubeVideo("AQJeOg4ZoIk",width=640,height=360, cc_load_policy=True)
The following is a summary of the syntax shown in the video:
The following elementary row operations
from IPython.display import YouTubeVideo
YouTubeVideo("iGmtmF_hm2g",width=640,height=360, cc_load_policy=True)
Consider the element $a_{2,1}$ in the following $A$ Matrix.
$$
A = \left[
\begin{matrix}
1 & 1 \\
20 & 25
\end{matrix}
\, \middle\vert \,
\begin{matrix}
30 \\
690
\end{matrix}
\right]
$$
✅ QUESTION: : Describe an elementary row operation that could be used to make element $a_{(2,1)}$ zero?
Put your answer here.
✅ QUESTION: : What is the new matrix given the above row operation.
Modify the contents of this cell and put your answer to the above question here.
$$
A = \left[
\begin{matrix}
1 & 1 \\
0 & ??
\end{matrix}
\, \middle\vert \,
\begin{matrix}
30 \\
??
\end{matrix}
\right]
$$
Hint, we are using a formating language called Latex to display the above matrix. You should just be able to replace the ?? with your new numbers. If you can't figure out what is going on, try searching the web with "latex math and matrix." If it still doesn't make sense, format your answer in another way that will be clear to understand by the you and the instructor.
The following function is a basic implementation of the Gauss-Jorden algorithm to an (m,m+1) augmented matrix:
from IPython.display import YouTubeVideo
YouTubeVideo("v6RstFsrTJY",width=640,height=360, cc_load_policy=True)
The above video left out a special case for Reduced Row Echelon form. There can be non-zero elements in columns that do not have a leading one. For example, All of the following are in Reduced Row Echelon form:
$$ \left[ \begin{matrix} 1 & 2 & 0 & 3 & 0 & 4 \\ 0 & 0 & 1 & 2 & 0 & 7 \\ 0 & 0 & 0 & 0 & 1 & 6 \\ 0 & 0 & 0 & 0 & 0 & 0 \end{matrix} \right] $$$$ \left[ \begin{matrix} 1 & 2 & 0 & 0 & 4 \\ 0 & 0 & 1 & 0 & 6 \\ 0 & 0 & 0 & 1 & 5 \end{matrix} \right] $$✅ QUESTION: : What are the three steps in the Gauss-Jordan Elimination algorithm?
Put your answer here.
✅ DO THIS:: Solve the following system of linear equations using the Gauss-Jordan algorithm. Try to do this before watching the video!
$$x_1 + x_3 = 3$$$$2x_2 - 2x_3 = -4$$$$x_2 - 2x_3 = 5$$Put your answer here
In the following video, we solve the same set of linear equations. Watch the video after trying to do this on your own. It is provided here in case you get stuck.
from IPython.display import YouTubeVideo
YouTubeVideo("xT16yIVw_KE",width=640,height=360, cc_load_policy=True)
✅ QUESTION:: Something was unclear in the above videos. Describe the difference between a matrix in "row echelon" form and "reduced row echelon" form.
Put your answer to the above question here
Please fill out the form that appears when you run the code below. You must completely fill this out in order to receive credit for the assignment!
If you have trouble with the embedded form, please make sure you log on with your MSU google account at googleapps.msu.edu and then click on the direct link above.
✅ Assignment-Specific QUESTION: Describe the difference between a matrix in "row echelon" form and "reduced row echelon" form.
Put your answer to the above question here
✅ QUESTION: Summarize what you did in this assignment.
Put your answer to the above question here
✅ QUESTION: What questions do you have, if any, about any of the topics discussed in this assignment after working through the jupyter notebook?
Put your answer to the above question here
✅ QUESTION: How well do you feel this assignment helped you to achieve a better understanding of the above mentioned topic(s)?
Put your answer to the above question here
✅ QUESTION: What was the most challenging part of this assignment for you?
Put your answer to the above question here
✅ QUESTION: What was the least challenging part of this assignment for you?
Put your answer to the above question here
✅ QUESTION: What kind of additional questions or support, if any, do you feel you need to have a better understanding of the content in this assignment?
Put your answer to the above question here
✅ QUESTION: Do you have any further questions or comments about this material, or anything else that's going on in class?
Put your answer to the above question here
✅ QUESTION: Approximately how long did this pre-class assignment take?
Put your answer to the above question here
from IPython.display import HTML
HTML(
"""
<iframe
src="https://cmse.msu.edu/cmse314-pc-survey"
width="100%"
height="1000px"
frameborder="0"
marginheight="0"
marginwidth="0">
Loading...
</iframe>
"""
)
Written by Dr. Dirk Colbry, Michigan State University
This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.