![]() | This article is rated B-class on Wikipedia's content assessment scale. It is of interest to the following WikiProjects: | ||||||||||
|
![]() | This article contains a translation of Intervallarithmetik from de.wikipedia. |
The article on interval arithmetic is quite long. But I didn't find a mention of interval comparison. It seems to me that for practical use interval arithmetic needs to be complemented by interval comparison.
Take for example <, we have 3 different outcomes:
[a,b] < [c,d] == true, b < c [a,b] < [c,d] == false, d < a [a,b] < [c,d] == maybe, otherwise
The "maybe" turns an original deterministic pointwise program into a non-deterministic intervalwise program.
Jan Burse (talk) 15:17, 3 July 2012 (UTC)
?- X in 0..3, Y in 4..7, X #< Y. X in 0..3 Y in 4..7
?- X in 4..7, Y in 0..3, X #< Y. false
?- X in 2..7, Y in 0..5, X #< Y. X in 2..7 Y in 0..5 X #< Y ?- X in 2..7, Y in 0..5, X #< Y, label([X,Y]). X = 2, Y = 3 ; X = 2, Y = 4 ; Etc...
Isn't it kind of trivial to determine the correct resulting value of a complicated function if it is continuous and differentiable along the entire interval's domain? For any function of any number of variables, you just have to get the (partial) derivatives in order to get the maxima and minima inside the interval's region, get the function's values at the bounds, and then the resulting interval would consist of the minimum and maximum value in this set. Am I missing or overlooking something here? Rinku*gt (talk) 14:10, 9 February 2013 (UTC)
In the second paragraph of the article, the middle parts of the formulas for addition and subtraction (highlighted below in bold)
are pedagogically confusing and mathematically misleading. They are pedagogically confusing because they make the lines unnecessarily long and complex. One never needs to compute the cross results a + d, b + c, a - c, or b - d. They are mathematically misleading because they suggest that the definition of the interval sum and difference involves only the endpoints of the input intervals, whereas a more appropriate suggestion would refer to all possible values within the respective intervals, such as perhaps
I suggest that the bolded parts of the formulas be omitted for clarity and simplicity. I have made this change in the article.
Best regards, Scwarebang (talk) 23:22, 11 September 2013 (UTC)
The section Patents describes an alleged controversy over patents in interval arithmetic, sourced only to the website of a product that disputes the validity of the patents. This cannot be considered an independent reliable source. Even more, the person named, G. William Walster, appears to still be alive. I am removing the entire section as ontentious material about living persons that is unsourced. Deltahedron (talk) 16:06, 11 February 2014 (UTC)
Hello fellow Wikipedians,
I have just added archive links to one external link on Interval arithmetic. Please take a moment to review my edit. If necessary, add {{cbignore}}
after the link to keep me from modifying it. Alternatively, you can add {{nobots|deny=InternetArchiveBot}}
to keep me off the page altogether. I made the following changes:
When you have finished reviewing my changes, please set the checked parameter below to true to let others know.
This message was posted before February 2018. After February 2018, "External links modified" talk page sections are no longer generated or monitored by InternetArchiveBot. No special action is required regarding these talk page notices, other than regular verification using the archive tool instructions below. Editors have permission to delete these "External links modified" talk page sections if they want to de-clutter talk pages, but see the RfC before doing mass systematic removals. This message is updated dynamically through the template {{source check}}
(last update: 5 June 2024).
Cheers.—cyberbot IITalk to my owner:Online 23:45, 11 January 2016 (UTC)
Hello fellow Wikipedians,
I have just modified one external link on Interval arithmetic. Please take a moment to review my edit. If you have any questions, or need the bot to ignore the links, or the page altogether, please visit this simple FaQ for additional information. I made the following changes:
When you have finished reviewing my changes, you may follow the instructions on the template below to fix any issues with the URLs.
This message was posted before February 2018. After February 2018, "External links modified" talk page sections are no longer generated or monitored by InternetArchiveBot. No special action is required regarding these talk page notices, other than regular verification using the archive tool instructions below. Editors have permission to delete these "External links modified" talk page sections if they want to de-clutter talk pages, but see the RfC before doing mass systematic removals. This message is updated dynamically through the template {{source check}}
(last update: 5 June 2024).
Cheers.—InternetArchiveBot (Report bug) 19:14, 15 November 2017 (UTC)
The article talks about closed intervals, with half open intervals only mentioned briefly when infinity is involved.
There are many places where, perhaps naively, I expected closed intervals to be used and saw half open intervals used. This needs attention and discussion of when half intervals are appropriate, especially when infinity is not involved.
In this article, a wide variety of functions are discussed over intervals which are subdivided to make them more tractable. This common scenario needs more attention, especially when the function has more than one parameter.
There are some subtle situations that need to be highlighted, if only by a couple of examples.