Link to this document's Jupyter Notebook

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 on the day before class. Students must come to class the next day prepared to discuss the material covered in this assignment.


Readings for this topic (Recommended in bold)

Pre-Class Assignment: Transformation Matrix


Assignment Overview

  1. The Inverse Matrix
  2. Transformation Matrix
  3. Assignment wrap-up

1. The Inverse Matrix (aka $A^{-1}$)

For some (not all) square matrices $A$, there exists a special matrix called the Inverse Matrix, which is typically written as $A^{-1}$ and when multiplied by $A$ results in the identity matrix $I$:

$$ A^{-1}A = AA^{-1} = I $$

Some properties of an Inverse Matrix include:

  1. $(A^{-1})^{-1} = A$
  2. $(cA)^{-1} = \frac{1}{c}A^{-1}$
  3. $(AB)^{-1} = B^{-1}A^{-1}$
  4. $(A^n)^{-1} = (A^{-1})^n$
  5. $(A^\top)^{-1} = (A^{-1})^\top$ here $A^\top$ is the tranpose of the matrix $A$.

If you know that $A^{-1}$ is an inverse matrix to $A$, then solving $Ax=b$ is simple, just multiply both sides of the equation by $A^{-1}$ and you get:

$$A^{-1}Ax = A^{-1}b$$

If we apply the definition of the inverse matrix from above we can reduce the equation to:

$$Ix = A^{-1}b$$

We know $I$ times $x$ is just $x$ (definition of the identity matrix), so this further reduces to:

$$x = A^{-1}b$$

To conclude, solving $Ax=b$ when you know $A^{-1}$ is really simple. All you need to do is multiply $A^{-1}$ by $b$ and you know $x$.

DO THIS: Find a Python numpy command that will calculate the inverse of a matrix and use it invert the following matrix A. Store the inverse in a new matirx named A_inv

Lets check your answer by multiplying A by A_inv.

QUESTION: What function did you use to find the inverse of matrix $A$?

put your answer to the above question here

How do we create an inverse matrix?

From previous assignments, we learned that we could string together a bunch of Elementary Row Operations to get matrix ($A$) into it's Reduced Row Echelon form. We now know that we can represent Elementary Row Operations as a sequence of Elementaary Matrices as follows:

$$ E_n \dots E_3 E_2 E_1 A = RREF $$

If $A$ reduces to the identity matrix (i.e. $A$ is row equivalent to $I$), then $A$ has an inverse and its inverse is just all of the Elementary Matrices multiplied together:

$$ A^{-1} = E_n \dots E_3 E_2 E_1 $$

Consider the following matrix.
$$ A = \left[ \begin{matrix} 1 & 2 \\ 4 & 6 \end{matrix} \right] $$

It can be reduced into an identity matrix using the following elementary operators

Words Elementary Matrix
Adding -4 times row 1 to row 2. $$E_1 = \left[\begin{matrix}1 & 0 \\ -4 & 1 \end{matrix}\right]$$
Adding row 2 to row 1. $$

E_2 = \left[ \begin{matrix} 1 & 1 \\ 0 & 1 \end{matrix} \right] $$ | | Multiplying row 2 by $-\frac{1}{2}$.| $$ E_3 = \left[ \begin{matrix} 1 & 0 \\ 0 & -\frac{1}{2} \end{matrix} \right] $$ |

We can just check that the statment seems to be true by multiplying everything out.

DO THIS: Combine the above elementary Matrices to make an inverse matrix named A_inv

DO THIS: Verify that A_inv is an actual inverse and chech that $AA^{-1} = I$.

QUESTION: Is an invertible matrix is always square? Why or why not?

Put your answer to the above question here.

QUESTION: Is a square matrix always invertible? Why or why not?

Put your answer to the above question here.

QUESTION: Describe the Reduced Row Echelon form of a square, invertible matrix.

Put your answer to the above question here.

QUESTION: Is the following matrix in the Reduced Row Echelon form?

$$ \left[ \begin{matrix} 1 & 2 & 0 & 3 & 0 & 4 \\ 0 & 0 & 1 & 3 & 0 & 7 \\ 0 & 0 & 0 & 0 & 1 & 6 \\ 0 & 0 & 0 & 0 & 0 & 0 \end{matrix} \right] $$

Put your answer to the above question here.

QUESTION: If the matrix shown above is not in Reduced Row Echelon form. Name a rule that is violated?

Put your answer to the above question here.

QUESTION: What is the size of the matrix described in the previous QUESTION?

Put your answer to the above question here.

QUESTION: Describe the elementary row operation that is implemented by the following matrix

$$ \left[ \begin{matrix} 0 & 1 & 0 \\ 1 & 0 & 0 \\ 0 & 0 & 1 \end{matrix} \right] $$

Put your answer to the above question here.


2. Transformation Matrix

Consider the following set of points:

We can rotate these points around the origin by using the following simple set of equations:

$$ x \cos(\theta) - y \sin(\theta) = x_{rotated} $$$$ x \sin(\theta) + y \cos(\theta) = y_{rotated} $$

This can be rewritten as the following system of matrices:

$$ \left[ \begin{matrix} \cos(\theta) & -\sin(\theta) \\ \sin(\theta) & \cos(\theta) \end{matrix} \right] \left[ \begin{matrix} x \\ y \end{matrix} \right] = \left[ \begin{matrix} x_{rotated}\\ y_{rotated} \end{matrix} \right] $$

We can rotate the points around the origin by $\pi/4$ (i.e. $45^o$} as follows:

We can even have a little fun and keep applying the same rotation over and over again.

QUESTION: In the above code what does the T call in p[0].T do?

Put your answer here


3. Assignment wrap-up

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!

Direct Link to Google Form

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: If the matrix shown above is not in Reduced Row Echelon form. Name a rule that is violated?

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


Congratulations, we're done!

Course Resources:


Written by Dr. Dirk Colbry, Michigan State University Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.