]>
|
|
||
A rectangular array of numbers, say by , is called a matrix. The i-j-th element of the matrix is the element in the i-th row and j-th column, and is denoted as .
Here are examples of matrices one two by two and the other two by three
If matrix has the same number of columns as has rows, we define the product matrix, to be the matrix whose elements are dot products between the rows of and the columns of . The element obtained by taking the dot product of the i-th row of and the j-th column of is described as . See also Section 32.2 for a fuller discussion of matrices and their properties.
Exercises:
3.7 Find the product of the two matrices above.
3.8 Build a spreadsheet that multiplies 4 by 4 matrices. Solution
3.9 In exercise 3.8:
1. Where is the matrix product ?
2. What appears in columns and in the first four rows?
If you change any of the entries in or the product will change automatically, so you have built an 4 by 4 matrix automatic product finder.
3. Can you use this to find the product of a 2 by 3 matrix and a 3 by 4 one? How?
4. Find the tenth power of a matrix using your product finder. (Hint: use it for and for and look in the right place and you have it.)
A vector can be written either as a matrix consisting of a single row, or of a single column. When writing it as a column we will write ; as a row, . The square of the length of can then be written as the matrix product .
A vector is an eigenvector of a matrix when is a multiple of . The multiple is called the eigenvalue of having eigenvector . If the eigenvalue is , then we have .
The applet here allows you to enter any 2 by 2 matrix, and move the vector around. When lines up with , is an eigenvector of with real eigenvalue which is given by the ratio of the length of (called in the applet) to that of , with a sign that is positive when they point in the same direction.
Exercise 3.10 Choose a symmetric matrix and use the applet to determine the two eigenvectors, approximately. Draw them on a piece of paper. Can you notice something about them? What?
|
|