Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C language In floating-point arithmetic, the order in which numbers are added matters. There is a famous algorithm originally due to Kahan (1965) called compensated

C language

In floating-point arithmetic, the order in which numbers are added matters. There is a famous algorithm originally due to Kahan (1965) called compensated summation that estimates the error produced when summing two floating-point numbers and accumulates this error estimate during the computation. It is based on the observation that the round-off error in the sum of two floating-point numbers can be estimated by subtracting one of the numbers from the sum.

Let a and b be two numbers such that |a| |b|. Their exact sum is s = a + b = s + e.

Let a = a1 + a2 and b = b1 + b2, where a2 and b1 are determined by the significance overlap of the numbers. Then s = a1 + (a2 + b1).

Now s a = b1,

and thus we can get an estimate of the error from

(s a) b = b2 = e.

Generate an array of one million random numbers in single precision from a uniform distribution on [0, 1].

Cast the numbers as double precision and sum them in the order in which they were generated. We will take this as the reference solution, i.e., a highly accurate estimate of the exact solution.

Sum the numbers in the order in which they were generated and compute the error in the sum.

Sort the numbers in ascending order, sum them, and compute the error in the sum. Sum the numbers using compensated summation and compute the error in the sum.

Comment on the performance of the different methods for computing the sum.

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

Development Of Knowledge Framework For Affective Content Analysis

Authors: Swarnangini Sinha

1st Edition

B0CQJ13WZ1, 979-8223977490

More Books

Students also viewed these Databases questions

Question

1. Traditional and modern methods of preserving food Articles ?

Answered: 1 week ago

Question

What is sociology and its nature ?

Answered: 1 week ago

Question

What is liquidation ?

Answered: 1 week ago

Question

Explain the different types of Mergers.

Answered: 1 week ago