

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Material Type: Assignment; Class: Numerical Analysis; Subject: Mathematics; University: University of California - Berkeley; Term: Spring 2002;
Typology: Assignments
1 / 2
This page cannot be seen from the preview
Don't miss anything!


Math 128a - Homework 4 - Due Feb 28 at the beginning of class
f 1 (x, y) = x^2 + a · y^2 − 1 = 0 f 2 (x, y) = (x − 1)^2 + y^2 − 1 = 0
where a is a parameter.
Part 1. Solve the equations explicitly by hand. Show that for all but a finite number of (complex) values of a, there are four (possibly complex) solutions (x, y), but for this finite set of a’s, there are fewer solutions. Exhibit all solutions, and the finite set of a’s, explicitly. Four is the upper bound on the number ofsolutions given by Bezout’s theorem as described in class (the product ofthe degrees ofthe polynomials f 1 and f 2 , which are both 2). This example shows that the upper bound is attainable for most, but not necessarily all, coefficients.
Part 2. Write down two explicit formulas for Newton iteration for this system. First, write it in the form (^) [ xi+ yi+
xi yi
x^2 i + a · y^2 i − 1 (xi − 1)^2 + y^2 i − 1
where you explicitly exhibit the Jacobian J and its inverse J−^1. Second, evaluate this ex- pression explicitly, i.e. multiply it out and simplify.
Part 3. Using these formulas, write a (very short) Matlab program to implement Newton iteration just for this example. It need only implement one step, i.e. not test test convergence, so that you can just run it ”by hand” and look at the iterates to determine convergence. Thus it need only be a few lines long at most.