Question
Only the matlab
nlinear equations x 0.75 Determine the roots of these equations using: a) The Fixed-point iteration method. b) The Newton Raphson method. Employ initial guesses of x y 1.2 and perform the iterations until E.<10%. Note: You can use to solve the problems, but you should sol at least two full iterations manually. AB bl Du Thursd 30/3/ 1. For the displacement in Q3 y 10 e cos at 0 St S 4. a) Plot the displacement y vs time tusing plot and fplot commands. Include in your plot all necessary annotations b) Find the first two roots using fzero built in function. Choose your initial guess based on the plot. 2. Solve Q5 using fsolve built in function. 3. Solve Q4 using roots built in function for polynomials. Expected MATLABoutputs a) Plot of y vs t with proper annotations upload your m files to schoology.
media%2F0aa%2F0aa96e73-b79c-4e21-b031-35
media%2F844%2F844ce87d-9621-4610-b389-41
0 0
Add a comment Improve this question Transcribed image text
Answer #1

Answer: Note: Asked to solve matlab problem only. 1. Code to plot y vs t: plotmm %create t vector tI0 1 2 3 4; a. %create y vSample output y vs t 4 3.5 2.5 1.5 0.5 -4 2 4 10fplot of the function: Code: Afplotm . m %call fplot fplot(@ (t) 10* (exp (1)) (-0.5*t) *cos (2*t),[0 4]); 10 5 -5 0 0.5 1.5b. Finding first 2 roots: %fzeron.m %create y y = (Lt) 10* (exp (1) ) ^ (-0.5*t) *cos (2*t) ; %find 1st root y1=fzerw (y, [O2. fsolve0 of the given function: Code to create equations: AfsolveFun.m %createing equations function FF fsolveFun ( p) endSample output: >solvem Equation solved. tasian completed because the vector of function vaiuss i e zero as measured by the de3. roots0 of the given function: % roots m %create fx[1 2 4 8; %call roots() x-roots (fx) display root fprintf( The root is

copyable code:

a. Code to plot y vs t:

%create t vector

t=[0 1 2 3 4];

%create y vector

y=zeros(1,5);

%find y

for kk=1:5

    y(kk)=10*(exp(1)).^((-0.5)*t(kk))*cos(2*t(kk));

end

%plot y vs t

plot(y,t,'o-');

title('y vs t');

xlabel('y');

ylabel('t');

fplot of the function:

%fplotm.m

%call fplot

fplot(@(t) 10*(exp(1))^(-0.5*t)*cos(2*t),[0 4]);

b. Finding first 2 roots:

%fzerom.m

%create y

y = @(t) 10*(exp(1))^(-0.5*t)*cos(2*t);

%find 1st root

y1=fzero(y, [0 2]);

%find 2nd root

y2=fzero(y,[3 4]);

%display roots

fprintf('Two real roots are %f %f\n',y1,y2);

2.

Code to create equations:

%fsolveFun.m

%createing equations

function FF = fsolveFun( p )

FF(1)=p(2)+p(1)*p(1)-p(1)-0.75;

FF(2)=p(2)+5*p(1)*p(2)-p(1)*p(1);

end

Code to solve the equations:

%fsolvem.m

%call fsolve()

yp=fsolve(@fsolveFun,[1.2,1.2]);

%display root

fprintf('The roots are x=%f y=%f\n',yp(1),yp(2));

3.

%rootsm.m

%create fx

fx = [1 -2 -4 8];

%call roots()

x=roots(fx)

%display root

fprintf('The root is %f\n',x);

Add a comment
Know the answer?
Add Answer to:
Only the matlab nlinear equations x 0.75 Determine the roots of these equations using: a) The...
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
  • Q2. Determine the positive roots of the simultaneous nonlinear equations: yx2 y 2 cosx Use a...

    Q2. Determine the positive roots of the simultaneous nonlinear equations: yx2 y 2 cosx Use a graphical approach to obtain your initial guesses. Plot both the equations in one plot area. You may have two sets of solutions. Considering one of the solutions and selecting initial guesses close to that solution (you can take x = 0.7 and yo = 1.5), use Newton-Raphson Method to solve the system of equations, shown above.e, 0.01 % Q2. Determine the positive roots of...

  • 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...

  • 4) (16 points) The function f(x)= x? – 2x² - 4x+8 has a double root at...

    4) (16 points) The function f(x)= x? – 2x² - 4x+8 has a double root at x = 2. Use a) the standard Newton-Raphson, b) the modified Newton-Raphson to solve for the root at x = 2. Compare the rate of convergence using an initial guess of Xo = 1,2. 5) (14 points) Determine the roots of the following simultaneous nonlinear equations using a) fixed-point iteration and b) the Newton-Raphson method: y=-x? +x+0,75 y + 5xy = r? Employ initial...

  • ____________ % This function is a modified versio of the newtmult function obtained % from % “Ap...

    ____________ % This function is a modified versio of the newtmult function obtained % from % “Applied Numerical Methods with MATLAB, Chapra, % 3rd edition, 2012, McGraw-Hill.” function [x,f,ea,iter]=newtmult(func,x0,es,maxit,varargin) % newtmult: Newton-Raphson root zeroes nonlinear systems % [x,f,ea,iter]=newtmult(f,J,x0,es,maxit,p1,p2,...): % uses the Newton-Raphson method to find the roots of % a system of nonlinear equations % input: % f = the passed function % J = the passed jacobian % x0 = initial guess % es = desired percent relative error...

  • 2) (15 points) a) Determine the roots of f(x)=-12 – 21x +18r? - 2,75x' graphically. In...

    2) (15 points) a) Determine the roots of f(x)=-12 – 21x +18r? - 2,75x' graphically. In addition, determine the first root of the function with b) bisection and c) false-position. For (b) and (c), use initial guesses of x, =-land x, = 0, and a stopping criterion of 1%. 3) (25 points) Determine the highest real root of f(x) = 2x – 11,7x² +17,7x-5 a) Graphically, b) Fixed-point iteration method (three iterations, x, = 3) c) Newton-Raphson method (three iterations,...

  • 1. This question concerns finding the roots of the scalar non-linear function f(x) = r2-1-sinx (1...

    1. This question concerns finding the roots of the scalar non-linear function f(x) = r2-1-sinx (1 mark) (b) Apply two iterations of the bisection method to f(x) 0 to find the positive root. (3 marks) (c) Apply two iterations of the Newton-Raphson method to find the positive root. Choose (3 marks) (d) Use the Newton-Raphson method and Matlab to find the positive root to 15 significant (3 marks) (a) Use Matlab to obtain a graph of the function that shows...

  • in matlab -Consider the equation f(x) = x-2-sin x = 0 on the interval x E [0.1,4 π] Use a plot to approximately locate the roots of f. To which roots do the fol- owing initial guesses converge wh...

    in matlab -Consider the equation f(x) = x-2-sin x = 0 on the interval x E [0.1,4 π] Use a plot to approximately locate the roots of f. To which roots do the fol- owing initial guesses converge when using Function 4.3.1? Is the root obtained the one that is closest to that guess? )xo = 1.5, (b) x0 = 2, (c) x.-3.2, (d) xo = 4, (e) xo = 5, (f) xo = 27. Function 4.3.1 (newton) Newton's method...

  • How to write in matlab program ? (1) Reduce the following system of equations to one equation in ...

    How to write in matlab program ? (1) Reduce the following system of equations to one equation in terms of x and solve the resulting equation numerically using Newton-Raphson method. ex/10 – y = 0 and 2logey – cosx = 2 (2) Solve the above equations numerically using system of equations, first by plotting the graph to obtain an initial approximation of the roots (such as x = 1 with y = 1 or other combinations), then produce the results...

  • Problem Two: (Based on Chapra, Problems 12.9 Consider the simultaneous nonlinear equations: 2-5-y y+i- 1. Plot...

    Problem Two: (Based on Chapra, Problems 12.9 Consider the simultaneous nonlinear equations: 2-5-y y+i- 1. Plot the equations and identify the solution graphically. Page 1 of 2 2. Solve the system of equations using successive substitution, starting with the initial guess xo-y-1.5. Show two complete iterations. Evaluate &s for the second iteration. 3. Redo Part 2 using Newton-Raphson method . Automate the solutions in Parts 2 and 3 using MATLAB scripts 5. Solve the system of nonlinear equations by calling...

  • 6.5 Employ the Newton-Raphson method to determine a real root for 4x20.5 using initial guesses of...

    6.5 Employ the Newton-Raphson method to determine a real root for 4x20.5 using initial guesses of (a) 4.52 f(x) 15.5x Pick the best numerical technique, justify your choice and then use that technique to determine the root. Note that it is known that for positive initial guesses, all techniques except fixed-point iteration will eventually converge. Perform iterations until the approximate relative error falls below 2 %. If you use a bracket- ing method, use initial guesses of x 0 and...

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