Open Educational Resources

Nonlinear Systems of Equations: Problems

  1. Use your implementation of the Newton-Raphson method to find 4 different sets of roots for the following nonlinear system of equations:

        \[ \begin{split} 4-2x_1^2-x_2&=0\\ 8-4x_1-x_2^2&=0 \end{split} \]


    Use \varepsilon_s=0.0001. Compare with the “FindRoot” built-in function in Mathematica.
  2. Use your implementation of the Newton-Raphson method to find 1 set of roots for the following nonlinear system of equations:

        \[ \begin{split} y=-x^2+x+0.5 \\ y+ 5xy=x^2 \end{split} \]


    Use \varepsilon_s=0.0001. Compare with the “FindRoot” built-in function in Mathematica.
  3. Compare the convergence of the Newton-Raphson method and the fixed-point iteration method with initial guesses of x=y=1.5 and \varepsilon_s=0.0001 to find a solution to the following nonlinear system of equations:

        \[ \begin{split} x^2=5-y^2\\ y+1=x^2 \end{split} \]

  4. Use the Newton-Raphson method to find a solution to the following nonlinear set of equations:

        \[\begin{split} 20x_1^4x_2+3x_2^3=20\\ 20x_1^2x_2^3=1 \end{split} \]


    Use \varepsilon_s=0.0001
  5. The following structural system is composed of two truss elements with unit cross sectional area. The left and right supports are hinged supports. The middle connection where the load is applied is also a hinged connection. Find the displacement at equilibrium of the following structural system. Assume a linear material with \sigma=10\varepsilon where \sigma is the stress in the bar, \varepsilon=\frac{\Delta L}{L_0} is the corresponding strain, and L_0 is the initial length. Use the Newton-Raphson method.

    NR41

  6. Solve the following nonlinear system of equations using the Newton-Raphson method and \varepsilon_s=0.0001

        \[ \begin{split} x_1-x_2-x_3-0.2=0\\ x_2-x_4-0.2=0\\ x_4+x_5-0.2=0\\ -x_5-x_6+x_7-0.2=0\\ x_3+x_6-0.2=0\\ 20|x_2|x_2-30|x_3|x_3+20|x_4|x_4-20|x_5|x_5+40|x_6|x_6=0\\ 60|x_1|x_1+30|x_3|x_3-40|x_6|x_6-30|x_7|x_7-10=0 \end{split} \]


    Hint, if x_i\neq 0:

        \[ \frac{\partial |x_i|x_i}{\partial x_i}=2|x_i| \]

  7. The following three equations describe a plane, a hyperbolic paraboloid (i.e., a saddle function), and a sphere, respectively.

        \[ \begin{split} f_1(x,y,z)&=x-y-z+1=0\\ f_2(x,y,z)&=x^2+y-z^2=0\\ f_3(x,y,z)&=x^2+y^2+z^2-4=0 \end{split} \]


    Find the coordinates of the two points at which the three surface plots intersect.

    3D plot of the sphere, the paraboloid, and the plane intersecting each other

  8. Solve the following system of nonlinear equations using the Newton-Raphson method.

        \[y-\cosh(x) = 0 \qquad \text{and} \qquad x^2 + y^2 - 2 = 0\]


    Plot the x-y curves for each equation.

9. Use the Newton-Raphson method to solve the following linear system of equations

    \[\begin{bmatrix} 10 && 4 && 2 && 4\\ 5 && 1 && -2 && 4 \\ 1 && 5 && 1 && -1 \\0 && 6 && -2 && 2 \end{bmatrix} \begin{bmatrix}x \\ y \\ z \\ w \end{bmatrix} = \begin{bmatrix}25 \\ 14 \\ 10 \\ 8 \end{bmatrix}\]


Provide comments on the behaviour of this method for a linear system of equations with regards to the solution procedure and number of iterations to reach a certain accuracy. Explain the reasons or causes of this behaviour.

Leave a Reply

Your email address will not be published.