(10 pts)
I’m sure you couldn’t have made it this far without having a favorite cubic polynomial! What is it?
Your response should include the following:
- Your favorite cubic polynomial nicely typeset using the variable z.
- A graph of your cubic as a real function.
- A list of numerical approximations to the roots of your cubic obtained via some piece of mathematical software.
Example:
My favorite cubic polynomial is f(z)=z^3-3z-1. I can graph f with Mathematica as follows:
Plot[z^3 - 3 z - 1, {z, -2, 2}]
Looks like there are three real roots. I can find them like so:
NSolve[z^3 - 3 z - 1 == 0, z]
(* Out:
{{z -> -1.53209}, {z -> -0.347296}, {z -> 1.87939}}
*)