(Solved):
Please solve the nonlinear multiple equation system below using initial guesses of x= -0.5, y= 1 a ...
Please solve the nonlinear multiple equation system below using initial guesses of x= -0.5, y= 1 and an error cutoff of 0.0001%. u = cos(y) + sin(x) v=-x³y + 4x-2 clear; clc; close all; (a) 5 points total State which method you will use and describe why it is the most appropriate method. % Please put your answer below using comments (b) 10 points Use the method you have chosen in (a) to solve the problem. Be sure to create a table that includes the number of the iterations, x, y, and the errors for x and y. % Please write your code below.