1 / 34

Solving Systems of Equations

Solving Systems of Equations. Solving a System with Several Equations in Several Unknowns. Rule of Thumb : More equations than unknowns  system is unlikely to have a solution. Same number of equations as unknowns  system is likely to have a unique solution.

meredithe
Download Presentation

Solving Systems of Equations

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Solving Systems of Equations

  2. Solving a System with Several Equations in Several Unknowns • Rule of Thumb: • More equations than unknowns system is unlikely to have a solution. • Same number of equations as unknowns system is likely to have a unique solution. • Fewer equations than unknowns the system is likely to have infinitely many solutions. We are interested in this last situation!

  3. Linear system. Matrix methods. Systems of Equations Note: We expect to have as many “free variables” as the difference between the number of unknowns and the number of equations.

  4. Linear system. Matrix methods. Non-linear system. Can be solved analytically Systems of Equations More difficult!

  5. We can solve this system using “elementary row operations” Linear Systems of Equations We can write this as a matrix/vector equation as follows:

  6. Solving the System Row-reduced coefficient matrix: Now we can reinterpret this reduced matrix as a solution to the system of equations.

  7. The Solution Function We started with three equations in five unknowns. As expected, our first three unknowns depend on two “free variables,” two being the difference between the number of unknowns and the number of equations.

  8. Where are we? • Solving a system of m equations in n unknowns is equivalent to finding the “zeros” of a vector valued function from m→n. • When m > n, such a system will “typically” have infinitely many solutions. In “nice” cases, the solution will be a function from m-n→n.

  9. What about finding solutions? Though we completely understand how to solve systems of linear equations . . . and we “luck out” with a small number of non-linear systems . . . most are impossible to solve analytically!

  10. The Implicit Function Theorem. . . . . . gives us conditions under which a system of m equations in n unknowns will have a solution. . . . and it tells us that (under reasonable hypotheses) the solution function will be well behaved. Now we Introduce a useful theoretical framework

  11. F: 5 → 3 g : 2 → 3

  12. So How do we Proceed? This equation is already too hard…. We’ll start with something a bit simpler. What would you do with this one?

  13. So How do we Proceed? This equation is already too hard…. We’ll start with something a bit simpler. What would you do with this one?

  14. So How do we Proceed? This equation is already too hard…. Iteration! We’ll start with something a bit simpler. What would you do with this one?

  15. we are looking for a fixed point Recall: R R x0 x0 x0

  16. Solving equations Suppose we want to find a root for the equation We can add x to both sides of the equation and reinterpret the problem as a fixed point problem.

  17. Root finding via iteration When we iterate the function starting at x0=0, we get The limit is, indeed, a solution to the equation

  18. Problem. . . This works nicely when the iterated map converges, but it may not converge. For instance, if we try the same trick with the iterated map goes to infinity. What’s the difference? What’s going on?

  19. Recall: Attractors and repellors M x0 The key difference is the derivative of the function at the fixed point.

  20. The Derivative at the Fixed Point Theorem: Suppose that R is continuously differentiable on [a,b] and that p is a fixed point of R lying in [a,b]. If then there exists some subinterval I of [a,b] containing p such that if x0 is in I, then Conversely, if then there is some interval I about p such that every iterated map based a point of I (other than p, of course) will eventually leave I and will thus not converge to p.

  21. Rethinking the scheme Let x be a real number and K a non-zero real number. Note that x is a solution to the equation if and only if it is also a solution to the equation So our fixed point root-finding scheme can be applied to any equation of the form Choose the value of K so that the derivative is “favorable”

  22. The best of all possible worlds It is not hard to show that the rate at which the iterated maps on R converge to the fixed point p is governed by the size of | R'(p) | . The closer | R'(p) | is to zero, the faster the convergence rate. While we are making choices, we might as well be ambitious and choose K so that we not only get convergence to the root, but we get really fast convergence! For we want Works, provided that f'(p) 0. 

  23. Constant (given p!), and ideally chosen for convergence near p. Evaluated each step, but not far from f’(p) when x is close to p. So in the best of all possible worlds, we want to iterate the function where p is a root of f. Notice that this looks remarkably like the iteration function for Newton’s method:

  24. Newton’s method “Leibnitz” method “Pretty good” method Quasi-Newton methods: Iterative ways to find p with f (p) = 0 Must evaluate new f’(x) each step. Requires no “magic knowledge” and converges in a neighborhood of p . “Best of all possible worlds”: Since R’(p) = 0, iterated maps converge very quickly in a neighborhood of p . If we choose D near enough to f’(p) so that |Q’(p)| < 1/2, iterated maps will converge in a neighborhood of p .

  25. One Equation in Two Unknowns Can we use this set of ideas to tackle Yes! First we recall that the solutions to this equation are the zeros of the 2-variable function

  26. 0-Level Curves The pairs (x,y) that satisfy the equation f(x,y)=0 lie on the intersection of the graph of f and the horizontal plane z = 0. That is, they lie on the 0-level curves of the function f.

  27. Taking a “piece” The 0-level curves of f. Though the points on the 0-level curves of f do not form a function, portions of them do.

  28. y x Consider the contour line f (x,y) = 0 in the xy-plane. Idea: At least in small regions, this curve might be described by a function y = g(x) . Our goal: find such a function!

  29. (a,b) (a,b) y x In a small box around (a,b), we can hope to find g(x). Make sure all of the y-partials in this box are close to D. Start with a point (a,b) on the contour line, where partial with respect to y is not 0: y = g(x)

  30. (a,b) x z y g(x) How to construct g(x): For this x, construct function Iterate x(y) to find its fixed point, where f (x,y) = 0. Let fixed point be g(x). Fix x. f (x,y) (x fixed) What’s going on here? For our fixed value of x, we find g(x) so that f (x,g(x)) = 0. We do this by iterating x.

  31. x How to construct g(x) Given x, construct function (a,b) Iterate x(y) to find its fixed point, where f (x,y) = 0. Let fixed point be g(x). b • Non-trivial issues: • Make sure the iterated map converges. • Make sure you get the right fixed point. (Don’t leave the box!) How do we know this works? For x = a, this is just the ideal “Leibnitz” method for finding g(a) = b. For small enough boxes, this is a “pretty good” method elsewhere.

  32. (a,b) y x Staying in the Box? (a,b) y = g(x)

  33. (a,b) y x Staying in the box? • Not so obvious . . . we have to work a bit to make sure we get the right fixed point. (We don’t leave the box!) x

  34. Looking ahead • We are interested in solving systems of equations. • The Implicit Function Theorem will tell us when there are solutions to a system and will describe the nature of those solutions. • We will prove the implicit function theorem by employing quasi-Newton’s methods as a theoretical tool.

More Related