How to resolve the algorithm Safe addition step by step in the Forth programming language
How to resolve the algorithm Safe addition step by step in the Forth programming language
Table of Contents
Problem Statement
Implementation of interval arithmetic and more generally fuzzy number arithmetic require operations that yield safe upper and lower bounds of the exact result. For example, for an addition, it is the operations +↑ and +↓ defined as: a +↓ b ≤ a + b ≤ a +↑ b. Additionally it is desired that the width of the interval (a +↑ b) - (a +↓ b) would be about the machine epsilon after removing the exponent part. Differently to the standard floating-point arithmetic, safe interval arithmetic is accurate (but still imprecise). I.E.: the result of each defined operation contains (though does not identify) the exact mathematical outcome. Usually a FPU's have machine +,-,*,/ operations accurate within the machine precision. To illustrate it, let us consider a machine with decimal floating-point arithmetic that has the precision is 3 decimal points. If the result of the machine addition is 1.23, then the exact mathematical result is within the interval ]1.22, 1.24[. When the machine rounds towards zero, then the exact result is within [1.23,1.24[. This is the basis for an implementation of safe addition.
Show how +↓ and +↑ can be implemented in your language using the standard floating-point type. Define an interval type based on the standard floating-point one, and implement an interval-valued addition of two floating-point numbers considering them exact, in short an operation that yields the interval [a +↓ b, a +↑ b].
Let's start with the solution:
Step by Step solution about How to resolve the algorithm Safe addition step by step in the Forth programming language
Source code in the forth programming language
c-library m
s" m" add-lib
\c #include
c-function fnextafter nextafter r r -- r
end-c-library
s" MAX-FLOAT" environment? drop fconstant MAX-FLOAT
: fstepdown ( F: r1 -- r2 )
MAX-FLOAT fnegate fnextafter ;
: fstepup ( F: r1 -- r2 )
MAX-FLOAT fnextafter ;
: savef+ ( F: r1 r2 -- r3 r4 ) \ r4 <= r1+r2 <= r3
f+ fdup fstepup fswap fstepdown ;
You may also check:How to resolve the algorithm Smith numbers step by step in the Wren programming language
You may also check:How to resolve the algorithm Pick random element step by step in the EMal programming language
You may also check:How to resolve the algorithm Tau function step by step in the ALGOL 68 programming language
You may also check:How to resolve the algorithm Bell numbers step by step in the D programming language
You may also check:How to resolve the algorithm Dragon curve step by step in the PowerShell programming language