What is a Floating-Point Arithmetic Problem?
What is a Floating-Point Arithmetic Problem? 관련
Have you ever worked with numbers like , where the result is 0.33333… and continues forever? As humans, we naturally round off such numbers, but have you ever wondered how computers handle them?
In this article, you’ll explore how computers manage continuous values, including the concept of precision errors. We’ll examine the floating-point arithmetic problem, a universal issue that affects many programming languages. We’ll focus specifically on how JavaScript addresses this challenge.
Additionally, you’ll learn how binary operations work behind the scenes, the threshold at which JavaScript truncates numbers based on the IEEE 754 standard, and introduce BigInt
as a solution for accurately handling larger numbers without precision loss.
First, let's consider an example. Can you guess the output of this operation?
console.log(0.1 + 0.2);
// Output: 0.30000000000000004
You may think the answer is , right? But no, the actual output is:
You must be wondering why this is happening. Why so many extra zeros, and why does it end with a ?
The answer is simple: the numbers and cannot be precisely represented in JavaScript (that is, "exactly" or "accurately.")
It sounds simple, right? But the explanation is a bit more complex.
So, what do you think—bug or feature?
Well, it’s not a bug. It’s actually a fundamental issue with how computers handle numbers, specifically floating-point numbers.
Why Does This Happen?
Let’s understand this with basic math.
When you add and , it should be equal to in fraction form, which in decimal is 0.33333... and it never ends. This means that repeats itself infinitely. We can’t write it down exactly, so we approximate it to something like or to save time and space.
Similarly, in a computer, we also have to approximate because or 0.3333... would be a very large number and take up infinite space (which we don’t have).
This leads to what we call the floating-point arithmetic problem.
Floating-Point Arithmetic Problem
In simple terms, floating-point numbers are numbers that cannot be written down exactly, so we approximate them. In a computer, this kind of approximation can lead to small precision errors, which we call the floating-point arithmetic problem.
Binary Explanation
Now that we've covered the simple explanation, let’s also understand this in binary terms. JavaScript handles everything in binary behind the scenes.
Binary is a number system that only uses two digits: and .
Why Can’t 0.1 and 0.2 Be Represented Exactly in Binary?
The core issue is that not all decimal numbers can be perfectly represented as binary fractions.
Let’s take as an example:
When you try to represent in binary, you’ll find out that it can’t be expressed as a finite binary fraction. Instead, it becomes a repeating fraction, much like how in decimal becomes 0.333..., repeating forever.
In binary, 0.1 becomes:
0.0001100110011001100110011001100110011... (repeating infinitely)
Since computers have limited memory, they can’t store this infinite sequence exactly. Instead, they have to cut off the number at some point, which introduces a small rounding error. This is why in binary is only an approximation of the actual value.
Like , can’t be exactly represented in binary. It becomes:
0.00110011001100110011001100110011... (repeating infinitely)
Again, the computer truncates (cutting off part of a number to fit a limit or remove extra digits) this infinite binary sequence, leading to a small error in representation.
So, what happens when we add + ? When you add 0.1 + 0.2
in JavaScript, the binary approximations for and are added together. But since both values are only approximations, the result is also an approximation.
Instead of getting exactly , you get something close to this:
console.log(0.1 + 0.2);
// Output: 0.30000000000000004
This slight error occurs because neither nor can be represented exactly in binary, so the final result has a small rounding error.
How Does JavaScript Truncate the Number?
Now, the question arises: how does JavaScript know when to truncate the value?
Truncation
Truncation means cutting off or shortening a number by removing extra digits beyond a certain point.
There’s a maximum and minimum limit for it.
To handle this in the computer world, we have a standard that defines how floating-point numbers are stored and calculated.
IEEE 754 Standard
JavaScript uses the IEEE 754 standard to handle floating-point arithmetic.
The standard defines safe integer limits for the Number
type in JavaScript without precision loss:
- Maximum Safe Integer: or
- Minimum Safe Integer: or
Beyond these limits, JavaScript cannot accurately represent integers due to the way floating-point arithmetic works.
For this reason, JavaScript provides two constants to represent these limits:
Number.MAX_SAFE_INTEGER
Number.MIN_SAFE_INTEGER
What If I Need a Bigger Number?
If you need to work with numbers larger than the Maximum Safe Integer (like those used in cryptography or finance), JavaScript has a solution: BigInt.
Enter BigInt
BigInt
is a built-in object that allows you to work with whole numbers beyond the safe integer limit. It enables you to represent numbers larger than , so you don't need to worry about precision errors here!
To use BigInt
, simply append an n
to the end of an integer literal:
const bigNumber = 1234567890123456789012345678901234567890n;
Alternatively, you can use the BigInt
constructor:
const bigNumber = BigInt("1234567890123456789012345678901234567890");
Operations with BigInt
You can perform arithmetic operations with BigInt
, like addition, subtraction, multiplication, and even exponentiation. However, there’s a catch: you can’t mix BigInt
with regular Number
types in arithmetic operations without explicitly converting between them.
For example, this won’t work:
let result = bigNumber + 5; // Error: cannot mix BigInt and other types
You would need to convert the Number
to BigInt
first:
let result = bigNumber + BigInt(5); // Now it works!
Where Do We Use BigInt?
BigInt
is particularly useful in areas requiring precision, such as:
- Cryptographic algorithms
- Handling large datasets
- Financial calculations requiring exactness
In Summary
- The safe integer limit in JavaScript ensures accurate number representation for integers between and .
- Precision errors occur due to floating-point arithmetic when handling certain numbers (like .
- If you need numbers bigger than the safe limit,
BigInt
is your friend. But remember, mixingBigInt
andNumber
types require explicit conversions.