Perform two iterations of Newton's Method on this system.
Starting with $(0,1)$, $4{x_1}^2={x_2}^2$ and $4x_1{x_2}^2-x_1=1$.
I'm not sure I understand "starting with $(0,1)$". I know how to use Newton's Method and that the following system can be solved for either variable. Any solutions/hints are greatly appreciated.
Write $f(x) = \begin{bmatrix} 4x_1^2-x_2^2 \\ 4 x_1 x_2^2 -x_1 -1\end{bmatrix}$. You want to solve $f(x) = 0$.
Start with $x^0 = (0,1)^T$. Then $x^{n+1} = x^n - f'(x^n)^{-1} f(x^n)$. Repeat twice.
(You can solve the equation any way you want, for example, solve $f'(x^n) \delta = -f(x^n)$, then $x^{n+1} = x^n +\delta$).