Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

what is this missing to be a solution to problem 1 clc; clear; sigmasf = 14; eps = 0.5; ta1 = 273; ta2 = 305;

what is this missing to be a solution to problem 1 clc; clear; sigmasf = 14; eps = 0.5; ta1 = 273; ta2 = 305; error = inf; xr = ta1; counter = 0; fx = @(ta) -139.34411 + ((1.575701*10^5)/ta) - ((6.642308*10^7)/ta^2) + ((1.243800*10^10)/ta^3) - ((8.621949*10^11)/ta^4) - log; while abs(error) >= eps previous = xr; if fx(ta1) * fx(xr) <= 0 ta2 = xr; else ta1 = xr; end error = abs(xr - previous); counter = counter + 1; end fprintf('There were %g iterations, and the root is %g ', counter, xr - 273)

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

Recommended Textbook for

Finite Mathematics With Applications In The Management Natural And Social Sciences

Authors: Margaret Lial, Thomas Hungerford, John Holcomb, Bernadette Mullins

11th Edition

0321931068, 9780321931061

More Books

Students also viewed these Mathematics questions

Question

6. What is a contingency reserve used for?

Answered: 1 week ago