yego.me
💡 Stop wasting time. Read Youtube instead of watch. Download Chrome Extension

Determinant when multiplying a matrix by a constant


2m read
·Nov 11, 2024

So let's say that I have matrix A and its elements, it's a 2x2: a, b, c, d. We have a lot of practice taking determinants of matrices like this. The determinant of this matrix, same thing as the determinant of a, b, c, d, it's going to be equal to a times d, a d, minus b times c.

Now, what would happen if we multiply one row of this matrix by a constant? What would happen to its determinant? Well, let's try it out. So you have your original, the determinant of your original matrix a, b, c, d. I'm just rewriting what I just did up here: that's a d minus b c.

Now, if I were to multiply, let's say, this first row by a constant k, how would that change the determinant? Well, instead of this being just an a, this is now a k a. Instead of this being just a b, it is now a k b. And so this is equal to k times a d minus b c, which is the same thing as it's equal to k times our original determinant of our matrix A.

So that seems pretty interesting, and I encourage you to see that if you, instead of doing the first row, you did the second row, you would have gotten the same outcome. And then you can also verify that look, if I multiply both of these rows by that constant k, how would that change things? Well then, I'm going to have k a times k d, so you're going to have a k squeezed in there, and then you're going to have k b times k c.

And so this would actually be, you could factor out a k squared, and so this is going to be k squared times the determinant of A. And that can be extended to a generalized property that if I have some n by n matrix A, then the determinant, the determinant of k times that n by n matrix A, the determinant of this, when I multiply a constant times an entire matrix, I'm multiplying that constant times all the rows, you could say all of the elements.

Well, this is going to be equal to... pause this video, see if you can intuit what this general formula is going to be. You might be tempted to say it's k times the determinant of A, but remember that's only if I multiply one row by k. But if I multiply the entire matrix by k, well then this determinant is going to be the constant k to the nth power times the determinant of our n by n matrix A.

And you could see this play out in a three by three case. In fact, I encourage you to try it out with some three by threes, and you could also do a generalized proof for an n by n case. But I won't do that now; this is really just to give you the idea.

More Articles

View All
If It’s Broke, Fix It | Port Protection
Salmon’s Stewart will have to clear both the main drain and the two beaver dams if they want to restore the water flow. If you got a foot of mud all the way around your pipe inlet, it’s got to reduce flow. It’d be like having a big water hair in your bath…
Making Captain Paul | Wicked Tuna
Paul Hebert is a hack; he belongs in the back deck. He’s no business running about as far as I’m concerned. Paul will always be a mate; he’s not a captain in my eyes. I truly did not think Paul would be as much of a threat as he is this season. Boy, was I…
Division resulting in decimals example 2
Let’s say that we wanted to compute 78 divided by 12. What would this be? Pause this video and try to figure that out. Well, one way to think about it is, this is the same thing as 78 divided by 12, heh. I know when I said it in English, it sounds the sa…
Example exercise using limit flow chart
In a previous video, we introduced this flowchart that helps us think about what strategies to use when trying to determine a limit of a function as it approaches a point. What we’re going to do in this video is now try to apply that in several example ex…
Multiply monomials by polynomials: Area model | Algebra 1 | Khan Academy
We are told a rectangle has a height of five and a width of three x squared minus x plus two. Then we’re told to express the area of the entire rectangle, and the expression should be expanded. So pause this video and see if you can work through this. Al…
Nested conditionals | Intro to CS - Python | Khan Academy
What happens if you indent a conditional inside another conditional? To trace how the computer executes a program with nested conditionals, we need to look at the indentation. We know that an if starts a new conditional, so that means we have two conditio…