Skip to content

Commit

Permalink
Remove qualification about the next exponent not yielding an integer
Browse files Browse the repository at this point in the history
This is unnecessary because all we care avbout is finite
decimal representability. When computing *the* exponent of a
number, we wil choose the minimum power that yields an
integer, in which case the fact that any smaller power
yields a non-integer is understood.
  • Loading branch information
jessealama committed Sep 24, 2024
1 parent 2c21f0c commit 055edbb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions spec.emu
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ location: https://github.com/tc39/proposal-decimal/
<li>a mathematical value _v_ for which there exists an integer _q_ satisfing the following conditions:</li>
<ul>
<li>-6176 ≤ _q_ ≤ 6111,</li>
<li>v × 10<sup>−_q_</sup> is an integer _n_ such that 0 < abs(_n_) < 10<sup>34</sup>, and</li>
<li>v × 10<sup>−(_q_ + 1)</sup> is a not an integer.</li>
<li>v × 10<sup>−_q_</sup> is an integer _n_ such that 0 < abs(_n_) < 10<sup>34</sup>.</li>
</ul>
</ul>
<emu-note>
Expand Down

0 comments on commit 055edbb

Please sign in to comment.