On our quiz, we had the following problem:
Generate a cubic polynomial of the form f(z)=z^3 + p z + (-1)^s q by choosing
- p to be the position in the alphabet of the first letter in your first name,
- q to be the position in the alphabet of the last letter in your last name, and
- s to be the position in the alphabet of your middle initial.
For example, my name is Mark C.~mcclurE; thus, my cubic is f(z)=z^3 + 13 z - 5.
- Explain why this process always generates a polynomial with precisely one root in the upper half plane.
- Apply Newton’s method to find a good decimal approximation to the root. Be sure to
a) Find the Newton’s method iteration function and type it out nicely,
b) use a picture to find a good starting point from which to iterate, and
c) perform the iteration to find the root precise to 10 decimal places.
Solutions might follow.