Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In this problem we shall consider the effect of computer arithmetic in the evaluation of the quadratic formula r_1, 2 = -b plusminus squareroot b^2

image text in transcribed

In this problem we shall consider the effect of computer arithmetic in the evaluation of the quadratic formula r_1, 2 = -b plusminus squareroot b^2 - 4ac/2a for the roots of p(x) = ax^2 + bx + c. (a). Write a Matlab function, call it quadroots, that takes a, b, c as input and returns the two roots as output. The function may start like this: function [r1, r2] = quadroots (a, b, c) % inputs: a, b, c: coefficients for the polynomial ax^2 + bx + c = 0. % output r1, r2: The two roots for the polynomial Use the formula in (??) for the computation. Run it on a few test problems to make sure that it works before you go ahead with the following problems. (b). Test your quadroots for the following polynomials: 2x^2 + 6x - 3 x^2 - 14x + 49 3x^2 - 123454321x + 2 What do you get? Why are the results pretty bad for the last polynomial? Can you explain

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

SQL Antipatterns Avoiding The Pitfalls Of Database Programming

Authors: Bill Karwin

1st Edition

1680508989, 978-1680508987

More Books

Students also viewed these Databases questions

Question

How does an organization know if it is pursuing optimal strategies?

Answered: 1 week ago