"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > Why Does Floating-Point Arithmetic in C++ Lead to Precision Errors?

Why Does Floating-Point Arithmetic in C++ Lead to Precision Errors?

Published on 2024-11-24
Browse:608

Why Does Floating-Point Arithmetic in C   Lead to Precision Errors?

Floating-Point Precision in C

In C , floating-point numbers are precise up to a certain number of decimal places. However, there are limitations to this precision, which can lead to unexpected results.

Problem Statement

Consider the following code snippet:

double a = 0.3;
std::cout.precision(20);
std::cout 

As illustrated, a is slightly less than 0.3, but when multiplied by 50, b becomes slightly greater than 15.0. This deviation from the expected result can be attributed to the limitations of floating-point precision.

Solution

To obtain the correct results, it is crucial to avoid setting the precision higher than the available precision for the numeric type. The following revised code snippet demonstrates this approach:

#include 
#include 
int main() {
  double a = 0.3;
  std::cout.precision(std::numeric_limits::digits10);
  std::cout ::digits10);
  std::cout 

This approach ensures that the precision is set to the maximum available for the double data type. It is important to note that if the loop were to run for a significantly larger number of iterations, such as 5000 instead of 50, the accumulated error would eventually become noticeable, regardless of the precision setting. This is an inherent limitation of floating-point arithmetic.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3