Project

General

Profile

Actions

Feature #5321

closed

Introducing Numeric#exact? and Numeric#inexact?

Added by mrkn (Kenta Murata) over 12 years ago. Updated over 4 years ago.

Status:
Rejected
Target version:
-
[ruby-core:39539]

Description

Ruby has several numeric classes such as Integer.
These classes are classified whether their instances represent numbers exactly.
According to this, Integer and Rational are exact, and Float and BigDecimal are inexact because they're always including error.
The exactness of a Complex depends on its real and imaginary parts.

Now, Ruby's numeric classes doesn't provide predicators to investigate the exactness of their instances.
So, if we want to examine whether a number is exactly zero, we must investigate the class of the number.
I want simple way to examine the number exactness.

I propose to introduce Numeric#exact? and/or Numeric#inexact? for resolving this inconvenience.


Files

numeric-exact-5321.patch (7.33 KB) numeric-exact-5321.patch jeremyevans0 (Jeremy Evans), 08/01/2019 12:57 AM

Related issues 2 (0 open2 closed)

Is duplicate of Ruby master - Feature #5520: Numeric#exact?、Numeric#inexact? の追加Rejectedmrkn (Kenta Murata)10/31/2011Actions
Blocks Ruby master - Bug #5179: Complex#rationalize and to_r with approximate zerosClosedmrkn (Kenta Murata)Actions
Actions #1

Updated by naruse (Yui NARUSE) over 12 years ago

  • Project changed from Ruby master to 14
  • Category deleted (core)
  • Target version deleted (3.0)
Actions #2

Updated by naruse (Yui NARUSE) over 12 years ago

  • Project changed from 14 to Ruby master

Updated by alexeymuranov (Alexey Muranov) over 12 years ago

I like this proposal. -Alexey.

Updated by headius (Charles Nutter) over 12 years ago

Why is BigDecimal considered inexact? Unlike a float, a value in a BigDrcimal is always represented exactly. The value itself may be and estimate for various reasons (irrational, repeating, ...), but that is a property of the value, not a property of BigDecimal. Or put another way, BigDecimal is not inexact since if it is possible to exactly represent the number in base 10, BigDecimal can represent it exactly.

Perhaps the idea of inexact is too fuzzy here...even Float can be exact if the value can be exactly represented in base 2 decimal form with Float's precision.

It seems to me that the interesting characteristic of these classes is not whether the value they represent is exact, but whether arithmetic operations using them can be done exactly. By that definition, only Float is clearly inexact; even if the two operands of a floating-point arithmetic operation are exact, the result may not be. The other types do not have this property.

Updated by alexeymuranov (Alexey Muranov) over 12 years ago

Charles, this is from the documentation of BigDecimal: "If a computation results in a value which is too small to be represented as a BigDecimal within the currently specified limits of precision, zero must be returned.".
Thus the operations on BigDecimal are not exact. (See also BigDecimal::ROUND_MODE.)

For me it is easier to think simply whether a class is intended to represent numbers exactly.
Clearly it is better to represent a number exactly whenever the exact value can possibly be defined, can possibly be encoded into a sequence of bytes, when this representation would not take up all of the computer's memory, when carrying out exact computations would not be taking too much time, and if additionally a corresponding class exists in Ruby.
One would probably use Float or BigDecimal to store the distance between CERN and Gran Sasso, but Rational to store an image aspect ratio when this aspect ratio is rational.

The formal definition of exactness probably is the following: "Each operation must be carried out exactly or return NaN or nil, or return some other exceptional value."

-Alexey.

Updated by regularfry (Alex Young) over 12 years ago

On 30/10/11 12:29, Alexey Muranov wrote:

Issue #5321 has been updated by Alexey Muranov.

Charles, this is from the documentation of BigDecimal: "If a computation results in a value which is too small to be represented as a BigDecimal within the currently specified limits of precision, zero must be returned.".
Thus the operations on BigDecimal are not exact. (See also BigDecimal::ROUND_MODE.)

For me it is easier to think simply whether a class is intended to represent numbers exactly. The formal definition of exactness probably is the following: "Each operation must be carried out exactly or return NaN or nil, or return some other exceptional value."

The problem with this is that the values are exact, and some of the
operations are inexact. Some of the operations are sometimes inexact.
Flagging a class at a time as exact or inexact just sounds wrong to me.
Better would be flagging values that have had inexact operations
performed on them (or exact operations with an inexact operand) at any
time in their history, but I've no idea how you'd do that while keeping
any sort of respectable performance.

--
Alex

Actions #7

Updated by mame (Yusuke Endoh) over 12 years ago

  • Status changed from Open to Rejected

#5321 と重複です。あちらで議論しましょう。
あちらの議論がまとまった上での作業は大歓迎です。

--
Yusuke Endoh

Updated by mame (Yusuke Endoh) over 12 years ago

  • Status changed from Rejected to Assigned

Oops, sorry, I've closed this ticket by error. Reopen.

--
Yusuke Endoh

Updated by mame (Yusuke Endoh) over 12 years ago

Hello,

2011/9/14 Kenta Murata :

Now, Ruby's numeric classes doesn't provide predicators to investigate the exactness of their instances.
So, if we want to examine whether a number is exactly zero, we must investigate the class of the number.
I want simple way to examine the number exactness.

Can you show any actual use case?

--
Yusuke Endoh

Updated by alexeymuranov (Alexey Muranov) over 12 years ago

I misread the proposal, it was actually about adding instance Numeric#exact? method, and not class Numeric.exact? method.

For me, adding class method Numeric.exact? would be good enough.
To examine the exactness of a value, it would be enough to call val.class.exact?.
As Alex pointed out, this is better for performance, and it seems to me easier to assume that Float is always inexact than to inspect its instances.

I think it helps distinguishing classes that are intended to represent numbers exactly from those that are not. Those that are intended for this, should carry out standard arithmetic exactly, or return an exceptional value.

Sorry, i change my mind, i am more in favor of Numeric.exact?. A new subclass of Numeric can implement #exact?, or maybe interval arithmetic would even be better (http://en.wikipedia.org/wiki/Interval_arithmetic).

-Alexey.

Updated by mrkn (Kenta Murata) over 12 years ago

Charles Nutter wrote:

Why is BigDecimal considered inexact?

As Alexey pointed out, the reason is from BigDecimal's definition.
A BigDecimal represents an approximation of a real number, not a rational number.

Updated by tadf (tadayoshi funaba) over 12 years ago

i've proposed this before 1.9.
and i've virtually used those predicates in Complex/Rational internally.

i've taken those from scheme.
scheme's one accept also complex number.
i think those should be instance methods.

(exact? 1+0i)
#t
(exact? 1+0.0i)
#f

bye

Updated by mrkn (Kenta Murata) over 12 years ago

Yusuke Endoh wrote:

Can you show any actual use case?

I want to create a mathematical function which behaves like 1/x.
This function is defined over real numbers except for zero,
because lim_{x -> +0} 1/x = +inf while lim_{x -> -0} 1/x = -inf.
So I want to raise Math::DomainError for the function with exact zero.
But I don't want to raise the error for inexact zeros, such as 0.0, -0.0,
BigDecimal("0"), and others which are instances of classes I don't know.

If Numeric#inexact? and Numeric#exact? are given,
I can realize the function more easily.

Updated by alexeymuranov (Alexey Muranov) over 12 years ago

Kenta Murata wrote:

So I want to raise Math::DomainError for the function with exact zero.
But I don't want to raise the error for inexact zeros, such as 0.0, -0.0,
BigDecimal("0"), and others which are instances of classes I don't know.

In my opinion, checking x.class.exact? would be good enough. If you will be checking the instance property #exact? for inputs, you are likely to find most input floats inexact, if they were produced as output of other operations, as operations on floats are not intended to be exact. I think that all exact values should be grouped in separate classes, like Rational, distinguished by their intended use. (Isn't the different intended uses the reason to have more than one class?) It may make sense to me to create a subclass of Numeric where each value is exact or inexact.

As a use case for Numeric.exact? i can only think about using it in irb to not have to look up documentation, or to have a program that needs to carry out computations exactly and that dynamically chooses or tests an appropriate class to work with (so indeed the program will be testing whether the methods of a class are exact before calling them).

Updated by mame (Yusuke Endoh) over 12 years ago

Hello,

2011/10/31 Kenta Murata :

I want to create a mathematical function which behaves like 1/x.
This function is defined over real numbers except for zero,
because lim_{x -> +0} 1/x = +inf while lim_{x -> -0} 1/x = -inf.
So I want to raise Math::DomainError for the function with exact zero.
But I don't want to raise the error for inexact zeros, such as 0.0, -0.0,
BigDecimal("0"), and others which are instances of classes I don't know.

If Numeric#inexact? and Numeric#exact? are given,
I can realize the function more easily.

Thank you for the explanation.

You expect that 1/x does never raise any exception if x is an
inexact number, right? I wonder if the expectation is valid.

But anyway, your use case is certainly convincing for me.
Thank you.

--
Yusuke Endoh

Updated by mame (Yusuke Endoh) over 12 years ago

Hello,

2011/10/31 tadayoshi funaba :

i've taken those from scheme.
scheme's one accept also complex number.
i think those should be instance methods.

I guess Scheme's exactness differs from this proposal.
Scheme's exactness is orthogonal to the type. Actually, the spec of
Scheme allows an "inexact integer" and "exact real."
So it makes no sense to quote Scheme.

But I don't mean that I'm against the proposal. I think the proposal
is fine even if it is different from Scheme's.

--
Yusuke Endoh

Updated by mrkn (Kenta Murata) over 12 years ago

Alexey Muranov wrote:

In my opinion, checking x.class.exact? would be good enough.

I don't think so for two reason.
First, I think the form of "x.class.exact?' isn't ruby way, and too long than "x.exact?".
Second, it limits the exactness property for class.

Numeric classes including both exact and inexact instances should be allowed, I think.

Updated by tadf (tadayoshi funaba) over 12 years ago

But I don't mean that I'm against the proposal. I think the proposal is fine even if it is different from Scheme's.

i'm ok too, even if you don't understand at all what i mean.

Updated by alexeymuranov (Alexey Muranov) over 12 years ago

Kenta Murata wrote:

Alexey Muranov wrote:

In my opinion, checking x.class.exact? would be good enough.

I don't think so for two reason.
First, I think the form of "x.class.exact?' isn't ruby way, and too long than "x.exact?".
Second, it limits the exactness property for class.

Numeric classes including both exact and inexact instances should be allowed, I think.

I am not against Numeric classes including both exact and inexact instances :).

I just doubt it is a good idea to define this in the base Numeric class itself, it would look too heavy to me. (Being able to check whether a given integer is exact? does not look valuable to me.) It sounds like what Yusuke Endoh said about exactness in Scheme (which i do not know). This would probably mean that you need to set the exactness flag for the first time when you read a value from the input, or it should be set to inexact by default (or, even worse, to exact or inexact depending on the default for the class), which will make you think if your output is inexact because an inexact operation was carried out, or because the exact flag was not set correctly on the first input.

I see benefit in being able to mix exact and inexact values, but it can be done even if exactness is defined on the (sub)class level. Keeping track of what influences exactness of your value seems easier if you know that it is a class property.

Update: i just thought about another argument against instance #exact? method. Please correct me if i am wrong: isn't the state of every Numeric object completely defined by its numeric value (in addition to its class)? If so, adding a second attribute (exacteness) to all Numeric instances will seem like a drastic change.

Actions #20

Updated by mrkn (Kenta Murata) over 12 years ago

  • Status changed from Assigned to Rejected

Updated by tarui (Masaya Tarui) over 12 years ago

  • Status changed from Rejected to Assigned

maybe miss operation

Updated by mame (Yusuke Endoh) over 11 years ago

  • Target version set to 2.6
Actions #23

Updated by naruse (Yui NARUSE) over 6 years ago

  • Target version deleted (2.6)

Updated by jeremyevans0 (Jeremy Evans) over 4 years ago

Attached is a patch to implement Numeric#exact?. This returns true for Integer and Rational, and false for Float and BigDecimal. For Complex, it returns true if the real and imaginary parts are both true, and false otherwise (one reason exact? needs to be an instance method and not a class method).

This feature is necessary to fix #5179, as BigDecimal is not a core class and Complex cannot know whether or not it is exact.

Updated by wishdev (John Higgins) over 4 years ago

I really think this is a very overblown issue that is being handled incorrectly.

First, we have what appears to be a singular issue on our hands

Complex(1, BigDecimal("0.0")).to_r

Whether or not that qualifies as a valid operation. BigDecimal('0.0') is ABSOLUTELY without any question at all an exact number and therefore valid in the original operation.

BigDecimal('0.0') is and ALWAYS is an exact number

An example with a slightly different number (0 does not allow for many calculation examples).

# Request arbitrary precision for future CALCULATIONS
BigDecimal.limit(3)
# => 0
# Store a number
a = BigDecimal('0.00000001')
=> 0.1e-7
# Calculate
a + 0.1
# => 0.1e0 # Note the precision dropped

# Remove the limit
BigDecimal.limit(0)
=> 3
# Recalculate
a + 0.1
# Precision held
=> 0.10000001e0

The number is 100% accurate - the precision only affects calculation results and they are only affected at my request.

(BigDecimal('6e-1092837') + BigDecimal('1')).to_s.length
# 1092842

That is an accurate calculation to whatever required precision exists. You can lock your system up if you increase the length of the number - it will work to accomplish what you ask of it.

One cannot throw out valid concepts because someone offers up convenience methods to developers to limit precision if desired. But the choice is that of the developer and not an issue with the class. The class is fully compliant with exactness and should be afforded that.

Floating point does not offer up a choice - it has intrinsic limits - BigDecimal offers no such limitations.

Updated by akr (Akira Tanaka) over 4 years ago

I think associating class with exactness is wrong idea.

Please define the exactness of numeric classes, at first.

I think exactness and inexactness is a property of a method, not class.

For example, Integer#+ is exact because it implements mathematical addition exactly (except memory limitation).
Rational#+ is also exact.
As far as I know, BigDecimal#+ also implements mathematical addition exactly.
But Float#+ is inexact because it implements just approximation of mathematical addition.
(So, mathematically invalid result, such as 1.0 + 1e-20 == 1.0, is possible.)

Subtraction and multiplication is same as addition.
(Integer, Rational and BigDecimal are exact but Float is inexact.)

Division is interesting.
Integer#/ is exact as integer division. (But inexact as normal division.)
http://mathworld.wolfram.com/IntegerDivision.html
Rational#/ is exact as normal division.
But Float#/ and BigDecimal#/ is inexact.

I doubt the concept of "exactness of numeric classes".
So, I against this proposal until someone provide a good definition of
exactness of numeric classes.

Updated by sawa (Tsuyoshi Sawada) over 4 years ago

akr (Akira Tanaka) wrote:

I think associating class with exactness is wrong idea.
...
I think exactness and inexactness is a property of a method, not class.

But notice that these operations are binary operations, not unary. You cannot talk about just Integer#+ or Float#+, etc. You have to think about integer + integer, float + integer, integer + float, float + float, etc. And float + integer and integer + float are the same as float + float with respect to exactness. The reason should be attributed to some notion of hierarchy of exactness between the classes; float is less exact than integer, and the exactness of + would be the minimum exactness of the operands on both sides.

Hence, at least, the classes should also need to carry some kind of notion of exactness.

Updated by akr (Akira Tanaka) over 4 years ago

sawa (Tsuyoshi Sawada) wrote:

akr (Akira Tanaka) wrote:

I think associating class with exactness is wrong idea.
...
I think exactness and inexactness is a property of a method, not class.

But notice that these operations are binary operations, not unary. You cannot talk about just Integer#+ or Float#+, etc. You have to think about integer + integer, float + integer, integer + float, float + float, etc. And float + integer and integer + float are the same as float + float with respect to exactness. The reason should be attributed to some notion of hierarchy of exactness between the classes; float is less exact than integer, and the exactness of + would be the minimum exactness of the operands on both sides.

I see.
I wrongly assumed integer + integer for Integer#+.

Hence, at least, the classes should also need to carry some kind of notion of exactness.

Do you have good definition of exactness of numeric classes?

Updated by sawa (Tsuyoshi Sawada) over 4 years ago

akr (Akira Tanaka) wrote:

Do you have good definition of exactness of numeric classes?

Like alexeymuranov, I misread the proposal. I took it for Integer.exact?, etc. instead of Numeric#exact?, etc.

As for the notion of instance method exact? (on numeric instances), I don't think it would be practical. For float, the same number may be exact or inexact depending on its history. The history may include mathematical operations by which it was created, as well as simply as literal interpretation. For example, 2.5 achieved by the following literal may be naturally considered exact:

2.5 # => 2.5

but the same 2.5 achieved in the following way is inexact:

2.5000000000000001 # => 2.5

So we may expect it to be possible to have "multiple instances" of 2.5, with different exactness, but that is impossible given Ruby's object system.

As for the notion of class method exact? (on numeric classes), I think we can define that based on whether the literal interpretation is "transparent". Float is not exact because different literals are interpreted as the same instance, as with 2.5 above. I am being careful to use the word "transparent" above, which can be paraphrased as "one-to-one in some relevant sense". Rational should be considered exact even though 1/2r and 2/4r represent the same instance. Integer is exact.

However, the use case that mrkn provided (https://bugs.ruby-lang.org/issues/5321#note-13) requires the instance method exact?. I became not so confident with my argument.

Updated by matz (Yukihiro Matsumoto) over 4 years ago

  • Status changed from Assigned to Rejected

Rejected.

Matz.

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0