Question

Please use comments to show steps clearlyConsider the following system: f(x) = 5x2 + 2y2-10 g(x) = x2 + y -2 Use Newtons Method to find the roots of the system to a

0 0
Add a comment Improve this question Transcribed image text
Answer #1

warning('off', 'all'); %to suppress any worning

f = @(x,y) 5*x*x+2*y*y-10; % function

fy = @(x,y) 4*y; % y derivative

fx = @(x,y) 10*x; % x derivative

g = @(x,y) x*x +y -2; % function

gy = @(x,y) 1 ; %y derivative

gx = @(x,y) 2*x ; % x derivative

x0=1; % initial values assumed any value

y0=1;

count=0; % to count number of iterations

while true

x1 = x0 + (fy(x0,y0)*g(x0,y0)-f(x0,y0)*gy(x0,y0))/(fx(x0,y0)*gy(x0,y0)-fy(x0,y0)*gx(x0,y0));

y1= y0+ (f(x0,y0)*gx(x0,y0)-fx(x0,y0)*g(x0,y0))/(fx(x0,y0)*gy(x0,y0)-fy(x0,y0)*gx(x0,y0));

  

%condition to break the loop

if (abs(x1-x0) < 10^(-3)) & ( abs(y1-y0) < 10^(-3))

break;

end

if count>10000 % to prevent divergence, so loop doesnot go infinitely

break;

end

   count = count+1;

x0 = x1;

y0=y1;

end

%show values obtained

disp(x0)

disp(y0)

disp(f(x0,y0))

disp(g(x0,y0))

---------------------------------------------------------------------------------------------------------------------------------------------------------

1.4142 -0.0000057946 0.000065679 0.0000073412

1 2 3 4 5 6 7 warningcoff, all); %to suppress any worning f = @(x,y) 5*x*x+2*y*y-10; % function fy = @(x,y) 4*y; % y deriv

line 11,23-26 can be removed. It is just added to ensure no divergence occur and loop doesnot go into infinite loop.

thanks

Add a comment
Know the answer?
Add Answer to:
Please use comments to show steps clearly Consider the following system: f(x) = 5x2 + 2y2-10...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Please solve the following and show steps clearly 1-a casual LTI system is characterized by the...

    Please solve the following and show steps clearly 1-a casual LTI system is characterized by the following difference equation y[n]-3/4 y[n-1]+1/8 y[n-2]= 2 x[n] find the impulse response, h[n], of this system 2-then find the response of the system to input x[n]= (1/4)^n u[n]

  • In MATLAB please Consider the nonlinear function: y = f(x) = x3 cos x a. Plot...

    In MATLAB please Consider the nonlinear function: y = f(x) = x3 cos x a. Plot y as a function of x as x is varied between -67 and 67. In this plot mark all the locations of x where y = 0. Make sure to get all the roots in this range. You may need to zoom in to some areas of the plot. These locations are some of the roots of the above equation. b. Use the fzero...

  • Please show what answers go in what box clearly and show your steps Can u please...

    Please show what answers go in what box clearly and show your steps Can u please solve both questions its my last question for the month (1 point) Given that the vectors X and X, are solutions of a system 1X = AX, find the Wronkian and determine whether the vectors form a fundamental set on (-00,). x-(-)«.x=[]+(3 W(X. X,) Fundamental set: (Y Yes or N for No): Y (1 point) Given that the vectors X1, X2, X, are solutions...

  • please show answer in full with explanation, also show matlab 1. Consider the function f(x)2.753 +18r2 21 12 a) Plot...

    please show answer in full with explanation, also show matlab 1. Consider the function f(x)2.753 +18r2 21 12 a) Plot the graph of f(x) in MATLAB and find all the roots of the function f(x) graphically. Provide the code and the plot you obtained. b) Compute by hand the first root of the function with the bisection method, on the interval -1; 0) for a stopping criterion of 1% c) How many iterations on the interval -1, 0 are needed...

  • Please show all the steps clearly. 5. The transfer function of a system is given by...

    Please show all the steps clearly. 5. The transfer function of a system is given by Z Н(2) (z2-0.8z+ 0.15) -0.4n for n2 0. Find the response of To such a system we apply an input of the type x [n] the system in n domain using MATLAB for obtaining the partial fraction expansion and then manually inverting the output using z-transform tables. 5. The transfer function of a system is given by Z Н(2) (z2-0.8z+ 0.15) -0.4n for n2...

  • Find the limit and show steps if doesn't exist please I'll rate: (a) lim -3.x2 +...

    Find the limit and show steps if doesn't exist please I'll rate: (a) lim -3.x2 + 8 X400 5x2 + 12x (b) lim 3 + 7:22 2x – 9 0-00 Use the limit definition of the derivative to find f'(x) if f(x) = x2 + 50.

  • Consider the function f(x,y) = xy - 3x-2y2 + 17x + y + 37 and the...

    Consider the function f(x,y) = xy - 3x-2y2 + 17x + y + 37 and the constraint glx.v) = -6x + 3y - 12. Find the optimal point of f(x,y) subject to the constraint g(x.). Enter the values of, y. f(x,y), and below. NOTE: Enter correct to 2 decimal places y f(x,y) A-

  • Using the "Newton's Method" Write a MATLAB script to solve for the following nonlinear system of...

    Using the "Newton's Method" Write a MATLAB script to solve for the following nonlinear system of equations: x2 + y2 + z2 = 3 x2 + y2 - z = 1 x + y + z =3 using the initial guess (x,y,z) = (1,0,1), tolerance tol = 1e-7, and maximum number of iterations maxiter = 20.

  • 3. Consider the function f(x,y) = 4 + 2x - 3y - x2 + 2y2 -...

    3. Consider the function f(x,y) = 4 + 2x - 3y - x2 + 2y2 - 3xy. a) (5 pts.) Calculate the partial derivative functions, and use them to calculate the gradient vector evaluated at c = b) (5 pts.) Write down the affine approximation to at the e given in a) /(x) = f(c)+ Vf(e)'(x - c) . Use it to calculate (1.1, 1.1). (Hint: it should be close to f(1.1, 1.1))

  • Show it in Matlab. thx! 5. Formulate Newton's method for the system x = y v...

    Show it in Matlab. thx! 5. Formulate Newton's method for the system x = y v = Note that this system has three real roots (-1,-1), (0,0) and (1,1). By taking various initial points in the square -2 <ry < 2, try to obtain the attraction regions of these three roots. P.S. An attraction region of a root is defined as the set of all initial points which will eventually converge to the root.

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT