Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Task 1 0 . SOLVE IN MATLAB! Dont use this!!!: function FixedPointMethod ( ) % Interval and tolerance x 0 _ left = 0 ;

Task 10.SOLVE IN MATLAB!
Dont use this!!!: function FixedPointMethod()
% Interval and tolerance
x0_left =0;
x0_right =2;
tol =1e-12;
max_iter =100;
USE SIMPLE IF AND WHILE FUNCTION TO CHECK ALL PARTS!!!!
Write scripts in Matlab with algorithms that solve a nonlinear equation with one unknown using the following methods:
2.Fixed point method.
Function: f(x)=2*x4-15*x2+5*x +5(you can use diefrentitation to define g(x) function)
Interval: [0,2]
Tolerance: 1e-12
Maximum number of iterations: 100
Scripts should print: PLEASE PRINT ALL ITERATIONS, NOT ONLY IF ITs CONVEREGNTED
a)the solution, i.e.the zero-point x0
frpintf (please print this)
b)f(x0)
fprintf(print this)
c)the required number of iterations until convergence to the given tolerance with a corresponding message.
fprintf()> print all previous iterations not just end solution
d)If convergence is not achieved within the given maximum number of iterations it is necessary to print the last value of the solution x0and f(x0),along with a corresponding message.
The fixed point method needs to be run on both sides of the given interval. -> please solve all in one code, maybe left an right..
Thanks

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions