Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

ROOT FINDING A GIVEN FUNCTION Given the function f ( x ) = 3 e x - 1 0 ( 2 ) x , find

ROOT FINDING A GIVEN FUNCTION
Given the function f(x)=3ex-10(2)x, find the root using the following methods:
a) Use bisection with 10 iterations. Look in the region xrin[0,5]. After updating the bracket 10 times, save the final bracket midpoint xm on HW{1}.
b) Use Newton's method with 5 iterations. Use an initial guess of x0=0. Save the newest guess (after 5 iterations) on HW{2}
c) Use Secant method with 5 iterations. Use a set of initial guesses x-1=0,x0=1. Save the newest guess (after 5 iterations) on HW{3}
ROOT FINDING WITH TOLERANCE
Given the equation 3xcos(x)=x2sin(x), find the first positive solution using
a) Bisection method. Search on xrin[1,2]. Plot both sides of the equation to demonstrate that a solution exists there. Then, iterate the bisection method until xu-xl10-4. Save the root, xm on HW{4}. Add a marker to your plot for ordered pair of the root location that you found.
b) Newton's method. Use an initial guess of x0=2. Iterate until |xi+1-xi|10-6. Save the final guess on HW{5}
c) Secant Method. Use initial guesses of x-1=1,x0=2. Iterate using the same tolerances as part b. Save the final guess on HW{6}
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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