Exercise 3. Determinants

Experiment with the appropriate matrices to find answers to the following questions. Show me the matrices you used.

a. In your own words, how do you compute the determinant of a diagonal matrix?

In[89]:=

  
  
  

b. How do you compute the determinant of an upper or lower triangular matrix?

In[90]:=

  
  
  

c. Consider matrices with a row of zeroes. What happens to their determinants?

In[91]:=

  
  
  

d. Is Det[A+B]=Det[A]+Det[B]?

In[92]:=

  
  
  

e. Is Det[AB]=Det[A]Det[B]?

In[93]:=

  
  
  

f. What is the relationship between Det[A] and Det[Inverse[A]]?

In[94]:=

  
  
  

g. Use part f. to give a condition involving the determinant for a matrix to be nonsingular.

In[95]:=

  
  
  

h. How does Det[A] relate to Det[Transpose[A]]?

In[96]:=

  
  
  

i. Use part h. (do not use Mathematica) to show that Det[A.Transpose[A]]>0.

In[97]:=

  
  
  

Up to Exercises