19 Pages

6.4 - The Determinant of a Square Matrix

Course: MAT 1033, Spring 2011
School: Valencia
Rating:
 
 
 
 
 

Word Count: 5640

Document Preview

version="1.0" <?xml encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>6.4 - The Determinant of a Square...

Register Now

Unformatted Document Excerpt

Coursehero >> Florida >> Valencia >> MAT 1033

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
version="1.0" <?xml encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>6.4 - The Determinant of a Square Matrix</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link href="../m116.css" rel="stylesheet" type="text/css" /> <link href="matrix.css" rel="stylesheet" type="text/css" /> </head> <body> <h1>6.4 - The Determinant of a Square Matrix</h1> <p>A determinant is a real number associated with every square matrix. I have yet to find a good English definition for what a determinant is. Everything I can find either defines it in terms of a mathematical formula or suggests some of the uses of it. There's even a definition of determinant that defines it in terms of itself. </p> <p>The determinant of a square matrix A is denoted by &quot;det A&quot; or | A |. Now, that last one looks like the absolute value of A, but you will have to apply context. If the vertical lines are around a matrix, it means determinant.</p> <p>The line below shows the two ways to write a determinant.</p> <table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="detl">3</td> <td class="detr">1</td> <td rowspan="2" class="downhalf">=</td> <td rowspan="2" class="downhalf">det</td> <td class="matlt">&nbsp;</td> <td class="lhs">3</td> <td class="lhs">1</td> <td class="matrt">&nbsp;</td> </tr> <tr> <td class="detl">5</td> <td class="detr">2</td> <td class="matlb">&nbsp;</td> <td class="lhs">5</td> <td class="lhs">2</td> <td class="matrb">&nbsp;</td> </tr> </table> <h2>Determinant of a 2&times;2 Matrix</h2> <p>The determinant of a 2&times;2 matrix is found much like a <a href="pivot.html">pivot</a> operation. It is the product of the elements on the main diagonal minus the product of the elements off the main diagonal.</p> <table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="detl">a</td> <td class="detr">b</td> <td rowspan="2" class="downhalf">= ad - bc</td> </tr> <tr> <td class="detl">c</td> <td class="detr">d</td> </tr> </table> <h2>Properties of Determinants</h2> <ul> <li>The determinant is a real number, it is not a matrix.</li> <li>The determinant can be a negative number.</li> <li>It is not associated with absolute value at all except that they both use vertical lines.</li> <li>The determinant only exists for square matrices (2&times;2, 3&times;3, ... n&times;n). The determinant of a 1&times;1 matrix is that single value in the determinant.</li> <li>The inverse of a matrix will exist only if the determinant is not zero.</li> </ul> <h2>Expansion using Minors and Cofactors</h2> <p>The definition of determinant that we have so far is only for a 2&times;2 matrix. There is a shortcut for a 3&times;3 matrix, but I firmly believe you should learn the way that will work for all sizes, not just a special case for a 3&times;3 matrix. </p> <p>The method is called expansion using minors and cofactors. Before we can use them, we need to define them.</p> <h2>Minors</h2> <p>A minor for any element is the determinant that results when the row and column that element are in are deleted. </p> <p>The notation M<sub>ij</sub> is used to stand for the minor of the element in row i and column j. So M<sub>21</sub> would mean the minor for the element in row 2, column 1.</p> <p>Consider the 3&times;3 determinant shown below. I've included headers so that you can keep the rows and columns straight, but you wouldn't normally include those. We're going to find some of the minors.</p> <table border="0" cellspacing="0" cellpadding="1"> <tr> <th scope="col">&nbsp;</th> <th scope="col">C<sub>1</sub></th> <th scope="col">C<sub>2</sub></th> <th scope="col">C<sub>3</sub></th> </tr> <tr> <th scope="row">R<sub>1</sub></th> <td class="detl">1</td> <td class="lhs">3</td> <td class="detr">2</td> </tr> <tr> <th scope="row">R<sub>2</sub></th> <td class="detl">4</td> <td class="lhs">1</td> <td class="detr">3</td> </tr> <tr> <th scope="row">R<sub>3</sub></th> <td class="detl">2</td> <td class="lhs">5</td> <td class="detr">2</td> </tr> </table> <h3>Finding the Minor for R<sub>2</sub>C<sub>1</sub></h3> <p>The minor is the determinant that remains when you delete the row and column of the element you're trying to find the minor for. That means we should delete row 2 and column 1 and then find the determinant.</p> <table border="0" cellspacing="0" cellpadding="1"> <tr> <th scope="col">&nbsp;</th> <th scope="col">C<sub>2</sub></th> <th scope="col">C<sub>3</sub></th> <th scope="col">&nbsp;</th> </tr> <tr> <th scope="row">R<sub>1</sub></th> <td class="detl">3</td> <td class="detr">2</td> <td rowspan="2" class="downhalf">= 3(2) - 5(2) = 6 - 10 = -4</td> </tr> <tr> <th scope="row">R<sub>3</sub></th> <td class="detl">5</td> <td class="detr">2</td> </tr> </table> <p>As you can see, the minor for row 2 and column 1 is M<sub>21</sub> = -4.</p> <p>Let's try another one.</p> <h3>Finding the Minor for R<sub>3</sub>C<sub>2</sub></h3> <p>This time, we would delete row 3 and column 2. </p> <table border="0" cellpadding="1" cellspacing="0"> <tr> <th scope="col">&nbsp;</th> <th scope="col">C<sub>1</sub></th> <th scope="col">C<sub>3</sub></th> <th class="lhs" scope="col">&nbsp;</th> </tr> <tr> <th scope="row">R<sub>1</sub></th> <td class="detl">1</td> <td class="detr">2</td> <td rowspan="2" class="downhalf">= 1(3) - 4(2) = 3 - 8 = -5</td> </tr> <tr> <th scope="row">R<sub>2</sub></th> <td class="detl">4</td> <td class="detr">3</td> </tr> </table> <p>So the minor for row 3, column 2 is M<sub>32</sub> = -5.</p> <h3>Matrix of Minors</h3> <p>When you're just trying to find the determinant of a matrix, this is overkill. But there is one extremely useful application for it and it will give us practice finding minors.</p> <p>The matrix of minors is the square matrix where each element is the minor for the number in that position.</p> <p>Here is a generic matrix of minors for a 3&times;3 determinant.</p> <table border="0" cellspacing="0" cellpadding="1"> <tr> <th scope="col">&nbsp;</th> <td scope="col">&nbsp;</td> <th scope="col">C<sub>1</sub></th> <th scope="col">C<sub>2</sub></th> <th scope="col">C<sub>3</sub></th> <td scope="col">&nbsp;</td> </tr> <tr> <th scope="row">R<sub>1</sub></th> <td class="matlt">&nbsp;</td> <td class="lhs">M<sub>11</sub></td> <td class="lhs">M<sub>12</sub></td> <td class="lhs">M<sub>13</sub></td> <td class="matrt">&nbsp;</td> </tr> <tr> <th scope="row">R<sub>2</sub></th> <td class="matlm">&nbsp;</td> <td class="lhs">M<sub>21</sub></td> <td class="lhs">M<sub>22</sub></td> <td class="lhs">M<sub>23</sub></td> <td class="matrm">&nbsp;</td> </tr> <tr> <th scope="row">R<sub>3</sub></th> <td class="matlb">&nbsp;</td> <td class="lhs">M<sub>31</sub></td> <td class="lhs">M<sub>32</sub></td> <td class="lhs">M<sub>33</sub></td> <td class="matrb">&nbsp;</td> </tr> </table> <p>Let's find the matrix of minors for our original determinant. Here is the determinant.</p> <table border="0" cellspacing="0" cellpadding="1"> <tr> <th scope="col">&nbsp;</th> <th scope="col">C<sub>1</sub></th> <th scope="col">C<sub>2</sub></th> <th scope="col">C<sub>3</sub></th> </tr> <tr> <th scope="row">R<sub>1</sub></th> <td class="detl">1</td> <td class="lhs">3</td> <td class="detr">2</td> </tr> <tr> <th scope="row">R<sub>2</sub></th> <td class="detl">4</td> <td class="lhs">1</td> <td class="detr">3</td> </tr> <tr> <th scope="row">R<sub>3</sub></th> <td class="detl">2</td> <td class="lhs">5</td> <td class="detr">2</td> </tr> </table> <p>Here is the work to find each minor in the matrix of minors.</p> <table border="1" cellspacing="0" cellpadding="1"> <tr> <td scope="col">&nbsp;</td> <th class="datath" scope="col">C<sub>1</sub></th> <th class="datath" scope="col">C<sub>2</sub></th> <th class="datath" scope="col">C<sub>3</sub></th> </tr> <tr> <th class="datath" scope="row">R<sub>1</sub></th> <td class="lhs"><table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="detl">1</td> <td class="detr">3</td> </tr> <tr> <td class="detl">5</td> <td class="detr">2</td> </tr> </table> <br /> = 2 - 15 = -13</td> <td class="lhs"><table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="detl">4</td> <td class="detr">3</td> </tr> <tr> <td class="detl">2</td> <td class="detr">2</td> </tr> </table> <br /> = 8 - 6 = 2</td> <td class="lhs"><table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="detl">4</td> <td class="detr">1</td> </tr> <tr> <td class="detl">2</td> <td class="detr">5</td> </tr> </table> <br /> = 20 - 2 = 18</td> </tr> <tr> <th class="datath" scope="row">R<sub>2</sub></th> <td class="lhs"><table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="detl">3</td> <td class="detr">2</td> </tr> <tr> <td class="detl">5</td> <td class="detr">2</td> </tr> </table> <br /> = 6 - 10 = -4</td> <td class="lhs"><table border="0" cellspacing="0" <tr> <td class="detl">1</td> <td class="detr">2</td> </tr> <tr> <td class="detl">2</td> <td class="detr">2</td> </tr> </table> <br /> = 2 - 4 = -2</td> <td class="lhs"><table border="0" cellspacing="0" <tr> <td class="detl">1</td> <td class="detr">3</td> </tr> <tr> <td class="detl">2</td> <td class="detr">5</td> </tr> </table> <br /> = 5 - 6 = -1</td> </tr> <tr> <th class="datath" scope="row">R<sub>3</sub></th> <td class="lhs"><table border="0" cellspacing="0" <tr> <td class="detl">3</td> <td class="detr">2</td> </tr> <tr> <td class="detl">1</td> <td class="detr">3</td> </tr> </table> <br /> = 9 - 2 = 7</td> <td class="lhs"><table border="0" cellspacing="0" <tr> <td class="detl">1</td> <td class="detr">2</td> </tr> <tr> <td class="detl">4</td> <td class="detr">3</td> </tr> </table> <br /> = 3 - 8 = -5</td> <td class="lhs"><table border="0" cellspacing="0" <tr> <td class="detl">1</td> <td class="detr">3</td> </tr> <tr> cellpadding="1"> cellpadding="1"> cellpadding="1"> cellpadding="1"> cellpadding="1"> <td class="detl">4</td> <td class="detr">1</td> </tr> </table> <br /> = 1 - 12 = -11</td> </tr> </table> <p>Finally, here is the matrix of minors. Again, you don't need to put the labels for the row and columns on there, but it may help you.</p> <table border="0" cellspacing="0" cellpadding="1"> <tr> <th scope="col">&nbsp;</th> <td scope="col">&nbsp;</td> <th scope="col">C<sub>1</sub></th> <th scope="col">C<sub>2</sub></th> <th scope="col">C<sub>3</sub></th> <td scope="col">&nbsp;</td> </tr> <tr> <th scope="row">R<sub>1</sub></th> <td class="matlt">&nbsp;</td> <td class="lhs">-13</td> <td class="lhs">2</td> <td class="lhs">18</td> <td class="matrt">&nbsp;</td> </tr> <tr> <th scope="row">R<sub>2</sub></th> <td class="matlm">&nbsp;</td> <td class="lhs">-4</td> <td class="lhs">-2</td> <td class="lhs">-1</td> <td class="matrm">&nbsp;</td> </tr> <tr> <th scope="row">R<sub>3</sub></th> <td class="matlb">&nbsp;</td> <td class="lhs">7</td> <td class="lhs">-5</td> <td class="lhs">-11</td> <td class="matrb">&nbsp;</td> </tr> </table> <h2>Cofactors</h2> <p>A cofactor for any element is either the minor or the opposite of the minor, depending on where the element is in the original determinant. If the row and column of the element add up to be an even number, then the cofactor is the same as the minor. If the row and column of the element add up to be an odd number, then the cofactor is the opposite of the minor. </p> <p>Ooh - did you get that? Odd changes signs, even is the same sign. Deja Vu. We've been talking about that ever since section 3.2 on polynomials.</p> <h3>Sign Chart</h3> <p>Rather than adding up the row and column of the element to see whether it is odd or even, many people prefer to use a sign chart. A sign chart is either a + or - for each element in the matrix. The first element (row 1, column 1) is always a + and it alternates from there. </p> <p>Note: The + does not mean positive and the - negative. The + means the same sign as the minor and the - means the opposite of the minor. Think of it addition and subtraction rather than positive or negative.</p> <p>Here is the sign chart for a 2&times;2 determinant.</p> <table border="0" cellspacing="0" cellpadding="1"> <tr> <th scope="col">&nbsp;</th> <th scope="col">C<sub>1</sub></th> <th scope="col">C<sub>2</sub></th> </tr> <tr> <th scope="row">R<sub>1</sub></th> <td class="detl">+</td> <td class="detr">-</td> </tr> <tr> <th scope="row">R<sub>2</sub></th> <td class="detl">-</td> <td class="detr">+</td> </tr> </table> <p>Here is the sign chart for a 3&times;3 determinant.</p> <table border="0" cellspacing="0" cellpadding="1"> <tr> <th scope="col">&nbsp;</th> <th scope="col">C<sub>1</sub></th> <th scope="col">C<sub>2</sub></th> <th scope="col">C<sub>3</sub></th> </tr> <tr> <th scope="row">R<sub>1</sub></th> <td class="detl">+</td> <td class="lhs">-</td> <td class="detr">+</td> </tr> <tr> <th scope="row">R<sub>2</sub></th> <td class="detl">-</td> <td class="lhs">+</td> <td class="detr">-</td> </tr> <tr> <th scope="row">R<sub>3</sub></th> <td class="detl">+</td> <td class="lhs">-</td> <td class="detr">+</td> </tr> </table> <h3>Matrix of Cofactors</h3> <p>Again, if all you're trying to do is find the determinant, you do not need to go through this much work.</p> <p>The matrix of cofactors is the matrix found by replacing each element of a matrix by its cofactor. This is the matrix of minors with the signs changed on the elements in the - positions.</p> <table border="0" cellspacing="0" cellpadding="1"> <tr> <th scope="col">&nbsp;</th> <td scope="col">&nbsp;</td> <th scope="col">C<sub>1</sub></th> <th scope="col">C<sub>2</sub></th> <th scope="col">C<sub>3</sub></th> <td scope="col">&nbsp;</td> </tr> <tr> <th scope="row">R<sub>1</sub></th> <td class="matlt">&nbsp;</td> <td class="lhs">-13</td> <td class="lhs">-2</td> <td class="lhs">18</td> <td class="matrt">&nbsp;</td> </tr> <tr> <th scope="row">R<sub>2</sub></th> <td class="matlm">&nbsp;</td> <td class="lhs">4</td> <td class="lhs">-2</td> <td class="lhs">1</td> <td class="matrm">&nbsp;</td> </tr> <tr> <th scope="row">R<sub>3</sub></th> <td class="matlb">&nbsp;</td> <td class="lhs">7</td> <td class="lhs">5</td> <td class="lhs">-11</td> <td class="matrb">&nbsp;</td> </tr> </table> <h2>Expanding to Find the Determinant</h2> <p>Here are the steps to go through to find the determinant.</p> <ol> <li>Pick any row or column in the matrix. It does not matter which row or which column you use, the answer will be the same for any row. There are some rows or columns that are easier than others, but we'll get to that later.</li> <li>Multiply every element in that row or column by its cofactor and add. The result is the determinant.</li> </ol> <p>Let's expand our matrix along the first row.</p> <table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="detl">1</td> <td class="lhs">3</td> <td class="detr">2</td> </tr> <tr> <td class="detl">4</td> <td class="lhs">1</td> <td class="detr">3</td> </tr> <tr> <td class="detl">2</td> <td class="lhs">5</td> <td class="detr">2</td> </tr> </table> <p>From the sign chart, we see that 1 is in a positive position, 3 is in a negative position and 2 is in a positive position. By putting the + or - in front of the element, it takes care of the sign adjustment when going from the minor to the cofactor.</p> <table border="0" cellspacing="0" cellpadding="1"> <tr> <td rowspan="2" class="downhalf">+ 1</td> <td class="detl">1</td> <td class="detr">3</td> <td rowspan="2" class="downhalf">- 3</td> <td class="detl">4</td> class="detr">3</td> <td <td rowspan="2" class="downhalf">+ 2</td> <td class="detl">4</td> <td class="detr">1</td> </tr> <tr> <td class="detl">5</td> <td class="detr">2</td> <td class="detl">2</td> <td class="detr">2</td> <td class="detl">2</td> <td class="detr">5</td> </tr> </table> <p>= 1 ( 2 - 15 ) - 3 ( 8 - 6 ) + 2 ( 20 - 2 )<br /> = 1 ( -13 ) - 3 ( 2 ) + 2 (18)<br /> = -13 - 6 + 36<br /> = 17 </p> <p>The determinant of this matrix is 17.</p> <p>As I said earlier, it doesn't really matter which row or column you use. </p> <p>Let's try it again, but this time expand on the second columns. As an effort to save time, the minors for that column (from the matrix of minors) were 2, -2, and -5. The original elements were 3, 1, and 5. The 3 and 5 are in negative positions.</p> <p>determinant = - 3 ( 2 ) + 1 ( -2 ) - 5 ( -5 ) = -6 -2 + 25 = 17</p> <p>Expand on any row or any column, you'll get 17.</p> <p>However, you can't do diagonals. If we try the main diagonal, you get</p> <p>+ 1 ( -13 ) + 1 ( -2 ) + 2 ( -11 ) = -13 -2 - 22 = -37</p> <h3>Some rows or columns are better than others</h3> <ol> <li> Pick the row or column with the most zeros in it.<br /> Since each minor or cofactor is multiplied by the element in the matrix, picking a row or column with lots of zeros in it means that you will be multiplying by a lot of zeros. Multiplying by zero doesn't take very long at all. In fact, if the element is zero, you don't need to even find the minor or cofactor. </li> <li> Pick the row or column with the largest numbers (or variables) in it. <br /> The elements in the row or column that you expand along are not used to find the minors. The only place that they are multiplied is once, in the expansion. If you pick the row or column with the smallest numbers, then every minor will be the product of larger numbers. <br /> If you pick a row or column that has variables in it, then you will only have to multiply by the variables once, during the expansion.</li> </ol> <h2>Inverse of a Matrix (revisited)</h2> <p>Let's consider our original determinant as a matrix this time.</p> <table border="0" cellpadding="1" cellspacing="0"> <tr> <td class="matlt">&nbsp;</td> <td class="lhs">1</td> <td class="lhs">3</td> <td class="lhs">2</td> <td class="matrt">&nbsp;</td> </tr> <tr> <td class="matlm">&nbsp;</td> <td class="lhs">4</td> <td class="lhs">1</td> <td class="lhs">3</td> <td class="matrm">&nbsp;</td> </tr> <tr> <td class="matlb">&nbsp;</td> <td class="lhs">2</td> <td class="lhs">5</td> <td class="lhs">2</td> <td class="matrb">&nbsp;</td> </tr> </table> <p>Find the <strong>matrix of minors</strong> as explained above.</p> <table border="0" cellpadding="1" cellspacing="0"> <tr> <td class="matlt">&nbsp;</td> <td class="lhs">-13</td> <td class="lhs">2</td> <td class="lhs">18</td> <td class="matrt">&nbsp;</td> </tr> <tr> <td class="matlm">&nbsp;</td> <td class="lhs">-4</td> <td class="lhs">-2</td> <td class="lhs">-1</td> <td class="matrm">&nbsp;</td> </tr> <tr> <td class="matlb">&nbsp;</td> <td class="lhs">7</td> <td class="lhs">-5</td> <td class="lhs">-11</td> <td class="matrb">&nbsp;</td> </tr> </table> <p>Turn it into a <strong>matrix of cofactors</strong> by changing the signs on the appropriate elements based on the sign chart.</p> <table border="0" cellpadding="1" cellspacing="0"> <tr> <td class="matlt">&nbsp;</td> <td class="lhs">-13</td> <td class="lhs">-2</td> <td class="lhs">18</td> <td class="matrt">&nbsp;</td> </tr> <tr> <td class="matlm">&nbsp;</td> <td class="lhs">4</td> <td class="lhs">-2</td> <td class="lhs">1</td> <td class="matrm">&nbsp;</td> </tr> <tr> <td class="matlb">&nbsp;</td> <td class="lhs">7</td> <td class="lhs">5</td> <td class="lhs">-11</td> <td class="matrb">&nbsp;</td> </tr> </table> <p>Find the <strong>adjoint</strong> by transposing the matrix of cofactors.</p> <p>To transpose a matrix, you switch the rows and columns. That is, the rows become columns and the columns become rows. The Transpose of a matrix can be found using the TI-82 or TI-83 calculator by entering the name of the matrix and then choosing Matrix, Math, and then option 2, a superscripted T, like [A]<sup>T</sup>.</p> <table border="0" cellpadding="1" cellspacing="0"> <tr> <td class="matlt">&nbsp;</td> <td class="lhs">-13</td> <td class="lhs">4</td> <td class="lhs">7</td> <td class="matrt">&nbsp;</td> </tr> <tr> <td class="matlm">&nbsp;</td> <td class="lhs">-2</td> <td class="lhs">-2</td> <td class="lhs">5</td> <td class="matrm">&nbsp;</td> </tr> <tr> <td class="matlb">&nbsp;</td> <td class="lhs">18</td> <td class="lhs">1</td> <td class="lhs">-11</td> <td class="matrb">&nbsp;</td> </tr> </table> <p>Finally divide the adjoint of the matrix by the determinant of the matrix. In this problem, the determinant is 17, so we'll divide every element by 17. The resulting matrix is the <strong>inverse</strong> of the original matrix.</p> <table border="0" cellpadding="1" cellspacing="0"> <tr> <td class="matlt">&nbsp;</td> <td class="lhs">-13/17</td> <td class="lhs">4/17</td> <td class="lhs">7/17</td> <td class="matrt">&nbsp;</td> </tr> <tr> <td class="matlm">&nbsp;</td> <td class="lhs">-2/17</td> <td class="lhs">-2/17</td> <td class="lhs">5/17</td> <td class="matrm">&nbsp;</td> </tr> <tr> <td class="matlb">&nbsp;</td> <td class="lhs">18/17</td> <td class="lhs">1/17</td> <td class="lhs">-11/17</td> <td class="matrb">&nbsp;</td> </tr> </table> <p>The inverse of a matrix is found by dividing the adjoint of the matrix by the determinant of the matrix. Don't try that on your calculator since the calculator won't let you divide a matrix by a scalar. You will have to multiply by the inverse of the determinant instead.</p> <p>If you check it with your calculator, you can verify that the inverse actually is the adjoint divided by the determinant. </p> <p>Since the inverse is the adjoint divided by the determinant, we can see why the inverse doesn't exist if the determinant is zero. That would cause division by zero, which is undefined.</p> <h2>Larger Order Determinants</h2> <p>Let's find the determinant of a 4x4 system. </p> <table border="0" cellspacing="0" cellpadding="1"> <tr> <th scope="col">&nbsp;</th> <th class="datath" scope="col">C<sub>1</sub></th> <th class="datath" scope="col">C<sub>2</sub></th> <th class="datath" scope="col">C<sub>3</sub></th> <th class="datath" scope="col">C<sub>4</sub></th> </tr> <tr> <th class="datath" scope="row">R<sub>1</sub></th> <td class="detl">3</td> <td class="lhs">2</td> <td class="lhs">0</td> <td class="detr">1</td> </tr> <tr> <th class="datath" scope="row">R<sub>2</sub></th> <td class="detl">4</td> <td class="lhs">0</td> <td class="lhs">1</td> <td class="detr">2</td> </tr> <tr> <th class="datath" scope="row">R<sub>3</sub></th> <td class="detl">3</td> <td class="lhs">0</td> <td class="lhs">2</td> <td class="detr">1</td> </tr> <tr> <th class="datath" scope="row">R<sub>4</sub></th> <td class="detl">9</td> <td class="lhs">2</td> <td class="lhs">3</td> <td class="detr">1</td> </tr> </table> <p>Pick the row or column with the most zeros in it. In this case, that is the second column.</p> <p>For each element in the original matrix, its minor will be a 3&times;3 determinant. We'll have to expand each of those by using three 2&times;2 determinants.</p> <p>This is why we want to expand along the second column. The minors are multiplied by their elements, so if the element in the original matrix is 0, it doesn't really matter what the minor is and we can save a lot of time by not having to find it. In the second column, you won't need to find two of the minors because their corresponding element in the second column is zero. </p> <table border="0" cellspacing="0" cellpadding="1"> <tr> <td rowspan="3" class="downhalf">- 2</td> <td class="detl">4</td> <td class="lhs">1</td> <td class="detr">2</td> <td rowspan="3" class="downhalf">+ 0</td> <td class="detl">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="detr">&nbsp;</td> <td rowspan="3" class="downhalf">- 0</td> <td class="detl">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="detr">&nbsp;</td> <td rowspan="3" class="downhalf">+ 2</td> <td class="detl">3</td> <td class="lhs">0</td> <td class="detr">1</td> </tr> <tr> <td class="detl">3</td> <td class="lhs">2</td> <td class="detr">1</td> <td class="detl">&nbsp;</td> <td class="lhs">?</td> <td class="detr">&nbsp;</td> <td class="detl">&nbsp;</td> <td class="lhs">?</td> <td class="detr">&nbsp;</td> <td class="detl">4</td> <td class="lhs">1</td> <td class="detr">2</td> </tr> <tr> <td class="detl">9</td> <td class="lhs">3</td> <td class="detr">1</td> <td class="detl">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="detr">&nbsp;</td> <td class="detl">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="detr">&nbsp;</td> <td class="detl">3</td> <td class="lhs">2</td> <td class="detr">1</td> </tr> </table> <p>We could actually fill in those middle two minors, but since they're multiplied by 0, it doesn't really matter what they are. In fact, you could just as easily skip them.</p> <p>Now, there are two 3x3 determinants left to find. </p> <p>In the first 3x3 determinant, there are no zeros, so pick the row or column with the largest numbers. That would be column 1, so expand along the first column. </p> <p>Notice the 4 is in a positive position. The sign charts begin over with each new determinant. The position of the number in the original matrix does not matter, only its position in the current matrix.</p> <table border="0" cellpadding="1" cellspacing="0"> <tr> <td class="detl">4</td> <td class="lhs">1</td> <td class="detr">2</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> </tr> <tr> <td class="detl">3</td> <td class="lhs">2</td> <td class="detr">1</td> <td class="lhs">=</td> <td class="lhs">+ 4</td> <td class="detl">2</td> <td class="detr">1</td> <td class="lhs">- 3</td> <td class="detl">1</td> <td class="detr">2</td> <td class="lhs">+ 9</td> <td class="detl">1</td> <td class="detr">2</td> </tr> <tr> <td class="detl">9</td> <td class="lhs">3</td> <td class="detr">1</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="detl">3</td> <td class="detr">1</td> <td class="lhs">&nbsp;</td> <td class="detl">3</td> <td class="detr">1</td> <td class="lhs">&nbsp;</td> <td class="detl">2</td> <td class="detr">1</td> </tr> </table> <p>= 4 ( 2 - 3 ) - 3 ( 1 - 6 ) + 9 ( 1 - 4 ) = 4 ( -1 ) - 3 ( -5 ) + 9 ( -3 ) = -4 + 15 - 27 = -16</p> <p>Consider the other 3&times;3 matrix. In this one, there is a 0 in the row 1 and column 2. Either one of those would be a good pick for expansion, but since row 1 has slightly larger numbers, we'll expand along the first row.</p> <table border="0" cellpadding="1" cellspacing="0"> <tr> <td class="detl">3</td> <td class="lhs">0</td> <td class="detr">1</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> </tr> <tr> <td class="detl">4</td> <td class="lhs">1</td> <td class="detr">2</td> <td class="lhs">=</td> <td class="lhs">+ 3</td> <td class="detl">1</td> <td class="detr">2</td> <td class="lhs">- 0</td> <td class="detl">?</td> <td class="detr">?</td> <td class="lhs">+ 1</td> <td class="detl">4</td> <td class="detr">1</td> </tr> <tr> <td class="detl">3</td> <td class="lhs">2</td> <td class="detr">1</td> <td class="lhs">&nbsp;</td> <td class="lhs">&nbsp;</td> <td class="detl">2</td> <td class="detr">1</td> <td class="lhs">&nbsp;</td> <td class="detl">?</td> <td class="detr">?</td> <td class="lhs">&nbsp;</td> <td class="detl">3</td> <td class="detr">2</td> </tr> </table> <p>= 3 ( 1 - 4 ) - 0 ( doesn't matter ) + 1 ( 8 - 3 ) = 3 ( -3 ) + 1 ( 5 ) = -9 + 5 = -4</p> <p>When you go to find the determinant, remember that there were elements from the original 4&times;4 matrix that were times each of those 3&times;3 determinants. The first one was -2 and the second one was +2.</p> <p>Determinant = -2 ( -16 ) + 2 ( -4 ) = 32 - 8 = 24</p> <h3>Worst case scenario</h3> <p>To find a 3x3 determinant with no zeros, you have to find three 2x2 determinants.</p> <p>To find a 4x4 determinant with no zeros, you have to find four 3x3 determinants, each of which then becomes three 2x2 determinants for a total of twelve 2x2 determinants. </p> <p>To find a 5x5 determinant with no zeros, you have to find five 4x4 determinants, each of which then becomes four 3x3 determinants, each of those becoming three 2x2 determinants for a total of sixty 2x2 determinants.</p> <h2>Using the Calculator</h2> <p>After that last problem, you've got to be asking yourself if there isn't an easier way. Well, yes, there is, as long as the determinant doesn't have any variables in it. You can use the calculator. </p> <p>The notation that the TI-82 or TI-83 calculator uses is the Det A notation. So, after entering the matrix into one of the available matrices on the calculator, enter DET by going Matrix, Math, and choosing option 1. Then put in the name of the matrix that you're using. </p> <p>You don't need to use parentheses (unless you have a TI-83), but you can if you want to find the determinant of a product &quot;det ([A]*[B])&quot; or the determinant of a transpose &quot;det ([A]<sup>T</sup>)&quot; as opposed to the transpose of the determinant &quot;(det [A])<sup>T&quot;</sup>. By the way, the calculator won't find the transpose of a determinant because the determinant is a scalar (real number) and the calculator only knows how to find the transpose of a matrix. The transpose of a scalar is that scalar.</p> <h2>Triangular Matrices</h2> <p>You're really going to like finding determinants of these matrices.</p> <dl> <dt><strong>Upper Triangular Matrix</strong></dt> <dd>A matrix in which all the non-zero elements are either on or above the main diagonal. That is, all the non-zero values are in the upper triangle. Everything below the diagonal is a zero.</dd> <dt><strong>Lower Triangular Matrix</strong></dt> <dd>A matrix in which all the non-zero elements are either on or below the main diagonal.</dd> <dd>That is, all the non-zero values are in the lower triangle. Everything above the diagonal is zero.</dd> <dt><strong>Diagonal Matrix</strong></dt> <dd>A matrix in which all the non-zero elements are on the main diagonal. Everything off the main diagonal is a zero.</dd> </dl> <p>The determinant of a triangular matrix or a diagonal matrix is the product of the elements on the main diagonal. </p> <h2>Elementary Row Operations</h2> <p>There were three elementary row operations that could be performed that would return an equivalent system. With determinants, since the determinant of a transpose is the same as the determinant of the matrix, the elementary row operations can also be applied to columns. </p> <p>By performing row-reduction (using pivoting on a 1 if you like), you can place a matrix into triangular form. Once it's in triangular form, then all you have to do is multiply by the elements on the main diagonal and you have the determinant. </p> <p>Let's look at each of the three elementary row operations. </p> <ol> <li>If you interchange two rows or two columns in a determinant, the resulting determinant will differ only in sign. That is, if you swap rows or columns, the resulting determinant is the opposite of the original determinant.</li> <li>If you multiply a row or column by a non-zero constant, the determinant is multiplied by that same non-zero constant.</li> <li>If you multiply a row or column by a non-zero constant and add it to another row or column, replacing that row or column, there is no change in the determinant.</li> </ol> <p>That last operation is equivalent to pivoting on a one! </p> <p>Warning, if your pivot is a number other than one, then you are multiplying each row that you change by the pivot element. So, if you pivot on a 3 and you change two rows, then the resulting determinant will be 3*3 = 9 times as great as the original determinant. </p> <p>As long as you pivot on a one, you'll be okay. </p> <p>You do not have to place the matrix into reduced row-echelon form or even rowechelon form. You are free to stop the reduction at any point and expand using minors and cofactors. What I suggest is pivot where there is a one, and then expand.</p> <h2>Determinants that are Zero</h2> <p>The determinant of a matrix will be zero if </p> <ol> <li>An entire row is zero.</li> <li>Two rows or columns are equal.</li> <li>A row or column is a constant multiple of another row or column.</li> </ol> <p>Remember, that a matrix is invertible, non-singular, if and only if the determinant is not zero. So, if the determinant is zero, the matrix is singular and does not have an inverse. </p> </body> </html>
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Valencia - MAT - 1033
&lt;?xml version=&quot;1.0&quot; encoding=&quot;iso-8859-1&quot;?&gt; &lt;!DOCTYPE html PUBLIC &quot;-/W3C/DTD XHTML 1.0 Transitional/EN&quot; &quot;http:/www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt; &lt;html xmlns=&quot;http:/www.w3.org/1999/xhtml&quot;&gt; &lt;head&gt; &lt;title&gt;6.5 - Applications of Matrices and D
Valencia - MAT - 1033
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt; &lt;!DOCTYPE html PUBLIC &quot;-/W3C/DTD XHTML 1.0 Strict/EN&quot; &quot;http:/www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt; &lt;html xmlns=&quot;http:/www.w3.org/1999/xhtml&quot;&gt; &lt;head&gt; &lt;title&gt;7.4 - Mathematical Induction&lt;/title&gt; &lt;link href=&quot;./m1
Valencia - MAT - 1033
&lt;?xml version=&quot;1.0&quot; encoding=&quot;iso-8859-1&quot;?&gt; &lt;!DOCTYPE html PUBLIC &quot;-/W3C/DTD XHTML 1.0 Strict/EN&quot; &quot;http:/www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt; &lt;html xmlns=&quot;http:/www.w3.org/1999/xhtml&quot;&gt; &lt;head&gt; &lt;title&gt;7.6 - Counting Principles&lt;/title&gt; &lt;meta http-equ
Valencia - MAT - 1033
&lt;?xml version=&quot;1.0&quot; encoding=&quot;iso-8859-1&quot;?&gt; &lt;!DOCTYPE html PUBLIC &quot;-/W3C/DTD XHTML 1.0 Strict/EN&quot; &quot;http:/www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt; &lt;html xmlns=&quot;http:/www.w3.org/1999/xhtml&quot;&gt; &lt;head&gt; &lt;title&gt;7.7 - Probability&lt;/title&gt; &lt;meta http-equiv=&quot;Cont
Georgia State - MSIT - 7440
Iowa State - ENGLISH - 250
http:/scienceblogs.com/cortex/2009/04/cognitive_enhancement_and_crea.phpCognitiveEnhancementPostedon:April29,20097:28AM,byJonahLehrerMargaretTalbothasathoroughandthoughtprovokingarticleintheNewYorkeronthepotentialpitfallsof&quot;neuroenhancingdrugs&quot;.Atthisp
Iowa State - ENGLISH - 250
Drugs and the BrainIntroducing the Human BrainThe human brain is the most complex organ in the body. This three-pound mass of gray and white matter sits at thecenter of all human activity - you need it to drive a car, to enjoy a meal, to breathe, to cr
Iowa State - ENGLISH - 250
http:/lawprofessors.typepad.com/healthlawprof_blog/2009/04/a-reason-against-cognitiveenhancing-drugs.html Prosecutorial Misconduct in Painkiller Distribution Case | Main | The Evolution of the Rabbit April 11, 2009An Argument Against Cognitive-Enhancin
Iowa State - ENGLISH - 250
http:/www.ddmcd.com/managing-technology/cognitive-enhancement-and-scientific-collaboration-workingt.htmlHowReliableareWidgetsandRSSFeeds?|Main|OldMediaVersusSocialMediainEmergencySituationsCognitiveEnhancementandScientificCollaboration,Working Togethe
Iowa State - ENGLISH - 250
Goal: Prove that both sides, natural and artificial, and effective in brain enhancement regardlessof moral and legal viewpoints. Inspire collaboration of experts in all fields to optimizebreakthrough research.Facts- Both bring benefits (different impa
Iowa State - ENGLISH - 250
Most people know that most college students put in countless hours of study and preparation fortests in order to become the best in the class and to get that six or seven figure job. If you are, orhave been, a college student at one point in time, you a
Iowa State - ENGLISH - 250
Tyler FoxEnglish 2509/5/11Benedict Carey SummaryBenedict Carey, a writer on science and medical topics, discusses the concept of brainenhancement in his article to the New York Times, Brain Enhancement Is Wrong, Right? Thebasis of the article depict
Iowa State - ENGLISH - 250
Tyler FoxLectures AssignmentEnglish 250I choose to go to was Grant Imaharas lecture. I wouldnt quite call it a lecture becausehe wasnt there to teach us. He was there to tell us about his career as an electrical engineer inthe multi-media world. Over
Iowa State - ENGLISH - 250
Work CitedBegley, Sharon. Can You Build a Better Brain? Newsweek 17 Jan. 2011: 41. Web.This article is about the compares the use of steroids to the use of Adderall and other drugs. Italso talks about natural brain-enhancing methods such as eating blue
UCLA - ECON 1 - 180-004-20
Cal Poly Pomona - ECON - 101
The Real EstateSuccess FormulaBy Eric Medemar www.TheMillionairesBlog.comBefore we get started I would like to say thank you for taking the time to readthrough this handy little manual that I have put together. Your success is without adoubt my top p
UCLA - MATH - 111
InstructorsSolutions Manualto accompanyA First Course inAbstract AlgebraSeventh EditionJohn B. FraleighUniversity of Rhode IslandPrefaceThis manual contains solutions to all exercises in the text, except those odd-numbered exercises for whichfai
Rice - STAT - 622
Springer Texts in StatisticsSeries Editors:G. CasellaS. FienbergI. OlkinFor other titles published in this series, go tohttp:/www.springer.com/series/417Peter D. HoffA First Course in BayesianStatistical Methods123Peter D. HoffDepartment of St
Binghamton - ECON - 202
Edited by Foxit ReaderCopyright(C) by Foxit Software Company,2005-2008For Evaluation Only.Edited by Foxit ReaderCopyright(C) by Foxit Software Company,2005-2008For Evaluation Only.Edited by Foxit ReaderCopyright(C) by Foxit Software Company,2005-20
Washington - PSYCH - 101
Ch7:LearningandAdaptationAdaptingtotheEnvironmentLearning:processwhichexpproducesarelativelyenduringchangeinanorganisms behaviororcapabilitieshabituation:invlchangeinbehavthatresultsfromrepeatedexposuretostimulusconditioning:invllearningassociationsb
El Camino - ECON - 101
Electrical EngineeringApplications with the TI-89David R. VoltmerRose-Hulman Institute of TechnologyTerre Haute, IndianaMark A. YoderRose-Hulman Institute of TechnologyTerre Haute, Indiana00afront.doc .Karen Pressnell Revised: 02/08/99 7:51 AM Pr
Chicago State - ACCOUNTING - 101
Harvard - CHEM - 206
D. A. EvansAn Introduction to Frontier Molecular Orbital Theory-1http:/www.courses.fas.harvard.edu/~chem206/http:/evans.harvard.edu/problems/Chemistry 206 Problems of the DayThe molecule illustrated below can react through either Path A or Path B to
San Jose State - ENGR - me 113
CHRIS LONG &amp; NASER SAYMAHEAT TRANSFERDOWNLOAD FREE TEXTBOOKS ATBOOKBOON.COMN O REGISTRATION NEEDEDChris Long &amp; Naser SaymaHeat TransferDownload free ebooks at BookBooN.com2Heat Transfer 2009 Chris Long, Naser Sayma &amp; Ventus Publishing ApSISBN 9
NYU - ECON - 132
How to Write a Mission StatementBy Janel M. RadtkeEvery organization has a mission, a purpose, a reason for being. Often themission is why the organization was first created to meet a need identifiedyears ago. Sometimes, the same problems that the org
University of Illinois, Urbana Champaign - BUSINESS - 511
BA 590: The economics of organizationNucor case assignmentTeam 8Fang LiuXin LuoOzlem TokurXi WangBonnie YuIntroduction(a) Cash flow analysisTeam 8Assumptions:1.The depreciation of Thin-slab project is straight-line over 10 years;2.The annua
Hanoi University of Technology - INFORMATIO - MAT4021
1Gii tch ton hcTp 1L Vn TrcNXB i hc quc gia H Ni 2007.T kho: Gii tch ton hc, gii tch, tp hp, s thc, nh x, Hm lin tc, imgin on, lin tc, lin tc u, hm s cp, Gii hn, gii hn dy s, gii hn hms, dy s, hm s, nguyn l Cantor, nguyn l Cauchy, gii hn trn, gii h
Hanoi University of Technology - INFORMATIO - MAT4021
1Gii tch ton hcTp 1L Vn TrcNXB i hc quc gia H Ni 2007.T kho: Gii tch ton hc, gii tch, tp hp, s thc, nh x, Hm lin tc, imgin on, lin tc, lin tc u, hm s cp, Gii hn, gii hn dy s, gii hn hms, dy s, hm s, nguyn l Cantor, nguyn l Cauchy, gii hn trn, gii h
Universidad AnΓ‘huac - 341 - 235
ADVANCED ENGINEERING MATHEMATICS with MATLABSECOND EDITIONADVANCED ENGINEERING MATHEMATICS with MATLABSECOND EDITIONDean G.DuffyCHAPMAN &amp; HALL/CRC A CRC Press Company Boca Raton London New York Washington, D.C.This edition published in the Taylor &amp;
Berklee - FIN - 550
What are the key advantages of leasing as compared to borrowing to acquire an asset? Whatare the key disadvantages of leasing?One of the most important form of long term finance nowadays is Lease financing. In leasefinancing a company can rent an asset
Berklee - FIN - 550
Why should a financial manager have an integrated understanding of the 5 basic financefunctions? Why is the corporate governance function considered a finance function?Corporate finance can be defined generally as the science of managing money in a busi
Berklee - FIN - 550
2. What role does the Sarbanes-Oxley Act of 2002 play in financial reporting? Are therepossible shortcomings to relying solely on financial statement analysis to value companies?The Public Company Accounting Reform and Investor Protection Act, otherwise
Berklee - FIN - 550
What are the advantages/disadvantages of the different legal forms of business organizations?The three key legal forms of business organization in the United States are soleproprietorships, partnership, and corporations. A sole proprietorship is a busin
Berklee - FIN - 550
Considering the financial information in the various financial statements, which statementsprovide information on a company's performance over a reporting period? Which presentdata on a company's current position?Financial statements are summaries of m
Berklee - FIN - 550
1. Enter the home page of the Jobs in the Money web site(http:/www.jobsinthemoney.com/index.php?action=adv_search) and page through the financepositions listed. If the salaries are listed, what skill sets or job characteristics lead to thevariation in
Berklee - FIN - 550
A particular business deal allows you the choice of receiving $1,000 today or receiving $2,000ten years from today. How would your choice change based on your ability to invest money ata very low rate of interest or a very high rate of interest?Present
Berklee - FIN - 550
What happens to the present value of a cash flow stream when the discount rate increases?Place this in the context of an investment. If the required return on an investment goes up butthe expected cash flows do not change, would you be willing to pay th
Berklee - FIN - 550
Could a limited liability advantage of a corporation also lead to an agency problem? Why?The Limited Liability Company (LLC) is a newer form of business entity. It has advantagesover corporations and partnerships. The LLCs main advantage over a partners
Berklee - FIN - 550
Suppose a supplier allows payment for inventory 30 days from delivery, and the firm is able tosell all of the inventory within 15 days of delivery. How does this affect free cash flow?Free cash flow is money earned from operations that a business can pu
Berklee - FIN - 550
Define the terms feasible set and efficient set.Often investors have a combination of different stocks. Such a combination of stocks iscalled a portfolio. One of the reasons why we would like to hold a combination of different stocksis to reduce the ri
Berklee - FIN - 550
What's a simple way to assess and compare the default risk of publicly traded bonds? Describehow a bond's interest rate risk is related to its maturity.Bonds are debt instruments used by business and government to raise large sums of money,often from a
Berklee - FIN - 550
Why are investors more concerned with the real returns than the nominal returns on theirinvestments?Usually when someone is talking about how well an investment has performed they areusually talking about the actual percentage increase of the value of
Berklee - FIN - 550
What is meant by the term risk premium? Why must riskier assets offer a risk premium?A risk premium is the amount of return one needs to realize before taking a chance with anunsecured investment versus a guaranteed investment. This is a very important
Berklee - FIN - 550
Is the expected return on a stock with a beta=2.0 twice the expected return on a stock with abeta=1.0?Perhaps the single most important measure of stock risk or volatility is a stock's beta. It'sone of those at-a-glance measures that can provide seriou
Berklee - FIN - 550
A firm issues a bond at par value. Shortly thereafter, interest rates fall. If you calculated thecoupon rate, coupon yield, and yield to maturity for this bond after the decline in interestrates, which of the three values would be highest and which woul
Berklee - FIN - 550
When using discounted cash flow analysis to value an asset, explain why it is important tomeasure the risk of the asset and to associate an expected return with that risk measure.The procedure for valuing a risky asset involves three basic steps: (1) de
Berklee - FIN - 550
Suppose there are two risky assets. One offers a higher return than the other, but it also has ahigher standard deviation. Will one of these assets always lie on the efficient frontier? Will oneof them always be inefficient if held alone?Risky asset is
Berklee - FIN - 550
Suppose that a mutual fund has a beta equal to 0.75. Is it necessarily the case that the standarddeviation of returns on the fund is less than the standard deviation of market returns?A mutual fund is a type of an investment company that pools money fro
Berklee - FIN - 550
Why is using the cost of equity to discount project cash flows inappropriate when a firm usesboth debt and equity in its capital structure?Capital structure is the manner in which a firms assets are financed; that is, the right-handside of the balance
Berklee - FIN - 550
Why would a project that reaches the break-even point in terms of net income potentially bebad for shareholders?The EBIT-EPS capital structure approach focuses on finding a capital structure with thehighest EPS (earnings per share) over the expected ra
Berklee - FIN - 550
Describe how the IRR and NPV approaches are related.The internal rate of return and the net present value methods are the two major approachesto evaluating capital budgeting projects. The NPV technique measures the present value of thefuture cash flows
Berklee - FIN - 550
Why do we consider changes in net working capital associated with a project to be cashinflows or outflows?Working capital is useful to show the operating liquidity of a company and how thecompany manages its business. Positive working capital is requir
Berklee - FIN - 550
Two firms in the same industry have very different equity betas. Offer two reasons why thiscan occur?Beta is an indirect measure, which compares the systematic risk associated with acompanys shares with the systematic risk of the capital market as a wh
Berklee - FIN - 550
Why must manager intuition be part of the investment decision process regardless of aproject's NPV or IRR?Making decisions is certainly the most important task of a manager and it is often a verydifficult one. Experienced managers rarely make major inv
Berklee - FIN - 550
What does it mean if a project has an NPV of $1 million? Explain.In finance, the net present value (NPV) or net present worth (NPW) of a time series of cashflows, both incoming and outgoing, is defined as the sum of the present values (PVs) of theindiv
Berklee - FIN - 550
For what kinds of investments would terminal value account for a substantial fraction of thetotal project NPV, and for what kinds of investments would terminal value be relativelyunimportant?Some investments have a well-defined life span. The life span
Berklee - FIN - 550
Suppose an analyst makes a mistake and calculates the NPV or an investment project bydiscounting the project's contribution to net income each year rather than by discounting itscash flow. Would you expect the NPV based on net income to be higher or low
Berklee - FIN - 550
What is an event study designed to test?In disputes that involve publicly traded companies, a statistical technique known as an eventstudy, which can be used to relate security price movements to specific events, is an important partof the economic exp
Berklee - FIN - 550
What role does par value play in the pricing and sale of common stock by the issuingcorporation? Why do most firms assign relatively low par values to their shares?Par value, sometimes referred to as face value, is the nominal value assigned to anunder
Berklee - FIN - 550
How does the signaling model of financial structure differ from the pecking-order model withrespect to the assumption in this hypothesis of asymmetric information?Pecking Order theory tries to capture the costs of asymmetric information. It states that