Skip to content

Doc: enhance readability by avoiding big blocks for small numbers. #31157

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 6, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions Doc/tutorial/floatingpoint.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,9 @@ Floating Point Arithmetic: Issues and Limitations


Floating-point numbers are represented in computer hardware as base 2 (binary)
fractions. For example, the decimal fraction ::

0.125

has value 1/10 + 2/100 + 5/1000, and in the same way the binary fraction ::

0.001

has value 0/2 + 0/4 + 1/8. These two fractions have identical values, the only
fractions. For example, the **decimal** fraction ``0.125``
has value 1/10 + 2/100 + 5/1000, and in the same way the **binary** fraction ``0.001``
has value 0/2 + 0/4 + 1/8. These two fractions have identical values, the only
real difference being that the first is written in base 10 fractional notation,
and the second in base 2.

Expand Down