search
HomeBackend DevelopmentPython TutorialHow to do accurate decimal calculations using Python?

How to do accurate decimal calculations using Python?

In this article, we will learn how to do accurate decimal calculations in Python.

usage instructions

  • Using the Decimal() function of the decimal Module

  • Use the fsum() function of the math module

It is a well-known shortcoming that floating point numbers cannot accurately represent all decimal numbers. Furthermore, even simple mathematical calculations can produce some errors. For example −

Example

The following program demonstrates the inability of floating-point integers to accurately represent all decimal numbers-

x = 4.2
y = 3.1
 
# printing the sum of both the variables
print("x + y =", x + y)
 
# checking if the sum is both the variables is equal to 7.3
print((x + y) == 7.3)

Output

When executed, the above program will generate the following output -

x + y = 7.300000000000001
False

These errors are a "feature" of the IEEE 754 arithmetic standard used by the system's underlying CPU and its floating-point unit. If you write code using float instances, there is nothing you can do to prevent such errors anyway, since Python's float data type uses native representation to hold the data.

Using the decimal module will give you greater accuracy at the cost of some performance. Let us see it below.

Method 1: Use the Decimal() function of the decimal module

Example

The following program shows an example of using the Decimal() function for precise decimal calculations:

# importing Decimal from decimal module
from decimal import Decimal
x = Decimal('4.2')
y = Decimal('3.1')
# printing the sum of both the variables
print("x + y =", x + y)
# checking if the sum is both the variables is equal to 7.3 using by passing the sum to the Decimal Function
print((x + y) == Decimal('7.3'))

Output

When executed, the above program will generate the following output -

x + y = 7.3
True

In the above code, it may feel a little strange at first that the number is specified as a string. However, decimal objects work exactly as you would expect (all common mathematical operations supported, etc.). When you print them or use them in string formatting functions, they look like ordinary numbers.

Controlling various aspects of calculations, such as the number of digits and rounding methods, is a key feature of decimal.

Example

To do this, create a local context and modify its settings.

# importing localcontext from decimal module
from decimal import localcontext
x = Decimal('2.3')
y = Decimal('2.7')
# dividing x by y(returns as a floating-point number)
print(x / y)
with localcontext() as context:
   # rounding the number upto 3 digits i.e, precision 3
   context.prec = 3
   # Dividing x by y with precision set to 3
   print(x / y)

Output

When executed, the above program will generate the following output -

0.8518518518518518518518518519
0.852

Increase accuracy value to '60' for better accuracy

Example

# importing localcontext from decimal module
import decimal
from decimal import localcontext
x = decimal.Decimal('2.3')
y = decimal.Decimal('2.7')
# dividing x by y(returns as a floating-point number)
print(x / y)
with localcontext() as context:
   # Rounding the number upto 60 digits i.e, precision 60
   context.prec = 60
   # Dividing x by y with precision set to 3
   print(x / y)

Output

When executed, the above program will generate the following output -

0.8518518518518518518518518519
0.851851851851851851851851851851851851851851851851851851851852

Method 2: Use the fsum() function of the math module

The decimal module implements IBM's "Universal Decimal Arithmetic Specification".

Needless to say, there are many customization options that are beyond the scope of this article.

Python beginners may be tempted to use the decimal module to solve precision problems with floating-point data types. But you also need to understand your application area. The ordinary floating point type is usually more commonly used when dealing with scientific or engineering problems, computer graphics, or other things of a scientific nature.

For example, few elements in the real world can be measured with the 17 digits of precision provided by floating point numbers. Therefore, even small calculation errors have no effect. Moreover, native floating point is also significantly faster, which is critical for situations where a large number of calculations need to be run.

Example

However, you can't completely avoid mistakes. Many algorithms have been widely studied by mathematicians, and some are better at handling errors than others. Additionally, some caution is required because the practice of subtracting cancellations and adding large and small numbers can have consequences.

inputList = [1.23e+18, 1, -1.23e+18]

# observe how the 1 disappears here if we perform sum() on the list
print(sum(inputList)) 

Output

When executed, the above program will generate the following output −

0.0

fsum() function is used to find the sum between a given range or iterable object. It requires importing the math library. It is widely used in mathematical calculations.

grammar

The following is the syntax of the function.

maths.fsum( iterable )

Iterable objects can be ranges, arrays, or lists.

Return type -

It returns a floating point number.

Example

The following example can be used for a more accurate implementation in math.fsum() -

# importing math module 
import math
# input list
inputList = [1.23e+18, 1, -1.23e+18]
# adding the sum of elements of the list using the fsum() function
print(math.fsum(inputList))

Output

When executed, the above program will generate the following output -

1.0

In contrast, you actually need to study and understand the error propagation characteristics of other algorithms.

Nevertheless, programs dealing with topics such as finance are where the decimal module is most commonly used. It is very unpleasant when small inaccuracies appear in the calculations of these systems.

Therefore, the decimal module provides a way to avoid this situation. Decimal objects are often encountered again when Python interacts with databases, especially when accessing financial data.

in conclusion

We learned in this article that under certain circumstances regular calculations fail, so we need correct decimal calculations. We learned how to perform accurate decimal calculations using two separate functions, decimal() and fsum(). We also learned how to use the localcontext() function to set the precision of the results.

The above is the detailed content of How to do accurate decimal calculations using Python?. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools