-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gaussian elimination - struggling to understand why it's allowed or how it works #10
Comments
Are you struggling because he seems to ignore the right hand side of the equation? |
no, i'm not actually worried about the right hand side |
i guess this is what I want/need to read
So I'll look into this Euclid fellow and his common notions. which are in fact axioms heh. |
the math principle is basic substitution. One way to solve it is: There is another way.. Can you think of it ? |
I'm going to take a stab at this. Let's say we have these 2 equations:
So our first goal is to subtract 4x from equation 2. "Whatever we do to the left, we do to the right", so we'll need to subtract 4x from both sides. On the left is easy enough, but how do we subtract 4x from the right in a meaningful way? Well, if we look at equation 1, it's giving us a value for 4x:
So we can subtract 4x from the left because that's easy, and we can equivalently subtract (44-8y-12z) from the right:
And this is our new equation 2. So all of this is to say: our goal was to subtract 4x from both sides, but in order to do that while making progress on the other variables (and the right side of the equation), we had to express x in terms of y and z. Once we did that, we could subtract 4x from the left and [new representation] from the right, and arrive at a simpler equation with one less variable. |
hey! that makes total sense!! thank you!
|
Hey, so starting in lecture 2, Strang jumps straight into gaussian elimination. I've seen this before, but it's still a little perplexing to me. I understand how to solve algebraic equations, and make y=mx + b form. I understand how to isolate variables if i have 2 equations with 2 unknowns and use substitution to solve for a single variable.
but gaussian elimination is something a little different. This concept of, multiply by the factor you want to get rid of and subtract, just seems so random.
Is this something that will get explained more? or should I look into on my own some?
The text was updated successfully, but these errors were encountered: