What is the Expansion by Minors in Linear Algebra?

AI Thread Summary
Expansion by minors is the rule that allows the removal of the i'th row and j'th column from a matrix to simplify determinant calculations. The resulting (n-1) x (n-1) matrix is referred to as the "minor" at that point. To calculate the determinant, one must sum the products of each element in a chosen row or column with its corresponding minor, applying a sign based on the position. When squaring a matrix, it is important to multiply the matrix by itself rather than squaring each individual element. Understanding matrix multiplication is crucial for correctly squaring a matrix.
Bob19
Messages
71
Reaction score
0
if one is presented with an n x n where n = 4.

What is the rule called which allows the i'th row and the j'th column to be removed from the matrix in order to make calculating the determinant easier ?

Secondly if one wants to square \left[ \begin{array}{cccc} 2 & 5 & 7 & 6 \\ 2 & 9 & 2 & 1 \\ 0 & 1 & -2 & 1 \\ 6 & 7 & 1 & -5\end{array}\right ] ^2

Do I square every element of matrix individually ?

/Bob
 
Last edited:
Physics news on Phys.org
Bob19 said:
if one is presented with an n x n where n = 4.

What is the rule called which allows the i'th row and the j'th column to be removed from the matrix in order to make calculating the determinant easier ?

What you are talking about is "expansion by minors". The (n-1) x(n-1) matrix you get by removing the "i'th row and j'th column is the "minor" at that point. Choose anyone row or column, calculate the minor for each element in that row or column. The determinant is the sum of the product of the element itself times its minor times either plus or minus one, depending on whether i+j is even or odd.

Secondly if one wants to square \left[ \begin{array}{cccc} 2 & 5 & 7 & 6 \\ 2 & 9 & 2 & 1 \\ 0 & 1 & -2 & 1 \\ 6 & 7 & 1 & -5\end{array}\right ] ^2

Do I square every element of matrix individually ?

/Bob

No! squaring a matrix means multiplying the matrix by itself, not the individual elements. You won't be able to square a matrix if you don't know how to multiply two matrices. The simplest way to remember that is to think of each row of the first matrix and each column of the second as "vectors". The i, j element of the product is the dot product of the ith row of the first matrix and the jth column of the second.
 
I think Bob may have been asking about row/column transformations to simplify the evaluation of a determinant.
 
I don't. He specifically said "which allows the i'th row and the j'th column to be removed from the matrix". That's the "expansion by minors", not "row reduction".
 
TL;DR Summary: I came across this question from a Sri Lankan A-level textbook. Question - An ice cube with a length of 10 cm is immersed in water at 0 °C. An observer observes the ice cube from the water, and it seems to be 7.75 cm long. If the refractive index of water is 4/3, find the height of the ice cube immersed in the water. I could not understand how the apparent height of the ice cube in the water depends on the height of the ice cube immersed in the water. Does anyone have an...
Thread 'Variable mass system : water sprayed into a moving container'
Starting with the mass considerations #m(t)# is mass of water #M_{c}# mass of container and #M(t)# mass of total system $$M(t) = M_{C} + m(t)$$ $$\Rightarrow \frac{dM(t)}{dt} = \frac{dm(t)}{dt}$$ $$P_i = Mv + u \, dm$$ $$P_f = (M + dm)(v + dv)$$ $$\Delta P = M \, dv + (v - u) \, dm$$ $$F = \frac{dP}{dt} = M \frac{dv}{dt} + (v - u) \frac{dm}{dt}$$ $$F = u \frac{dm}{dt} = \rho A u^2$$ from conservation of momentum , the cannon recoils with the same force which it applies. $$\quad \frac{dm}{dt}...
Back
Top