Skip to content

Instantly share code, notes, and snippets.

@jacklinke
Created August 4, 2024 22:54
Show Gist options
  • Select an option

  • Save jacklinke/9112031fbcfe2569ba7e2fae5c85f8f0 to your computer and use it in GitHub Desktop.

Select an option

Save jacklinke/9112031fbcfe2569ba7e2fae5c85f8f0 to your computer and use it in GitHub Desktop.
A script to help with gaining intuition about Python decimals

Python decimal intuition

This script helps provide an intuitive understanding of how the precision of a number affects the result of mathematical operations when using the decimal module in Python. The script uses the pint library to handle conversion between units and the rich library to display the results in a table format.

It starts with a set of example values that are converted to float, decimal.Decimal, and pint Quantity (using decimals).

  • The first output is a set of tables showing each of these example values rendered with different precision levels, using getcontext().prec. The values shown in red to not match the full precision value, while those in green are the same as the value in the maximum precision (set to 250 here, but that is arbitrary).

  • The second output is a set of tables shows the results of a set of mathematical operations. The float value is shown in orange, along with an indicator of how many digits match the decimal value with the highest precision.


Note: Make sure you pip install pint and pip install rich before running this script.

Note: A future version will also convert Quantities from one unit to another.

import time
from decimal import Decimal, getcontext
from difflib import SequenceMatcher
from pint import UnitRegistry
from rich.console import Console
from rich.table import Table
from rich.style import Style
ureg = UnitRegistry()
Quantity = ureg.Quantity
class FormatedDecimal(Decimal):
"""Make sure we display the number in the fully expanded (not scientific) notation."""
def __str__(self):
return f"{self:.{abs(self.as_tuple().exponent)}f}"
# Example values
str_a = "2.5489120456102"
str_b = "83.21598756102002"
str_c = "0.0002"
str_d = "0.00000000000000000000000000000000965112"
str_e = "745205937266232843946623988365475210078512674585246585"
str_f = "63.1111111111111111111111111111111111101"
str_g = "4522010410540451204102045263884101623.174125843864637484832326463289748"
# Float version of examples
float_a = float(str_a)
float_b = float(str_b)
float_c = float(str_c)
float_d = float(str_d)
float_e = float(str_e)
float_f = float(str_f)
float_g = float(str_g)
# Decimal version of examples converted to Quantities
quantity_a = Quantity(Decimal(str_a), "ft")
quantity_b = Quantity(Decimal(str_b), "ft")
quantity_c = Quantity(Decimal(str_c), "ft")
quantity_d = Quantity(Decimal(str_d), "ft")
quantity_e = Quantity(Decimal(str_e), "ft")
quantity_f = Quantity(Decimal(str_f), "ft")
quantity_g = Quantity(Decimal(str_g), "ft")
# Iterables used in conversions
precision_levels = [4, 5, 6, 8, 10, 15, 20, 25, 50, 75, 100, 125, 150, 200, 250]
units = [
("ft", "ft", "ft"),
("attometer", "exameter", "ft"),
("exameter", "attometer", "ft"),
]
operations = [
{"function": add, "representation": "+"},
{"function": subtract, "representation": "-"},
{"function": multiply, "representation": "*"},
{"function": divide, "representation": "/"},
]
all_quantities = [quantity_a, quantity_b, quantity_c, quantity_d, quantity_e, quantity_f, quantity_g]
combinations = [
{
"strings": [str_a, str_b, str_c],
"floats": [float_a, float_b, float_c],
"quantities": [quantity_a, quantity_b, quantity_c],
},
{
"strings": [str_b, str_c, str_d],
"floats": [float_b, float_c, float_d],
"quantities": [quantity_b, quantity_c, quantity_d],
},
{
"strings": [str_c, str_d, str_e],
"floats": [float_c, float_d, float_e],
"quantities": [quantity_c, quantity_d, quantity_e],
},
{
"strings": [str_d, str_e, str_f],
"floats": [float_d, float_e, float_f],
"quantities": [quantity_d, quantity_e, quantity_f],
},
{
"strings": [str_e, str_f, str_g],
"floats": [float_e, float_f, float_g],
"quantities": [quantity_e, quantity_f, quantity_g],
},
{
"strings": [str_f, str_g, str_a],
"floats": [float_f, float_g, float_a],
"quantities": [quantity_f, quantity_g, quantity_a],
},
{
"strings": [str_g, str_a, str_b],
"floats": [float_g, float_a, float_b],
"quantities": [quantity_g, quantity_a, quantity_b],
},
]
start = time.perf_counter()
def add(x, y, z, precision_level=1):
"""Performs the addition operation with the three values, returning the table with the newly added row."""
getcontext().prec = precision_level
operation_result = x + y + z
return operation_result
def subtract(x, y, z, precision_level=1):
"""Performs the subtraction operation with the three values, returning the table with the newly added row."""
getcontext().prec = precision_level
operation_result = x - y - z
return operation_result
def multiply(x, y, z, precision_level=1):
"""Performs the multiplication operation with the three values, returning the table with the newly added row."""
getcontext().prec = precision_level
operation_result = x * y * z
return operation_result
def divide(x, y, z, precision_level=1):
"""Performs the division operation with the three values, returning the table with the newly added row."""
getcontext().prec = precision_level
operation_result = x / y / z
return operation_result
def print_quantities_at_each_precision():
"""Prints the quantities at each precision level."""
console = Console(record=True)
for quantity in all_quantities:
print("\n\n")
table = Table(title="Checking precision of original values")
columns = ["Prec", "Value 1"]
for column in columns:
table.add_column(column)
# Temporarily set to max precision to get the length of the fully expanded number
getcontext().prec = precision_levels[-1]
max_precision_value = str(FormatedDecimal(quantity.magnitude.normalize())).rstrip("0").rstrip(".")
for precision_level in precision_levels:
getcontext().prec = precision_level
formatted_value = str(FormatedDecimal(quantity.magnitude.normalize())).rstrip("0").rstrip(".")
table.add_row(
str(precision_level),
formatted_value,
style=Style(color="green") if formatted_value == max_precision_value else Style(color="red"),
)
console.print(table)
# print(console.export_html())
def print_examples_with_various_operations():
"""Prints various combinations or the example values using different operations and precision levels."""
console = Console(record=True)
for operation in operations:
for combination in combinations:
print("\n\n")
table = Table(
title=(
f"{operation['function'].__name__}: {combination['strings'][0]} {operation['representation']} "
f"{combination['strings'][1]} {operation['representation']} {combination['strings'][2]}"
)
)
columns = ["Type", "Prec", "Result"]
for column in columns:
table.add_column(column)
# Get float value
formatted_float_value = str(
FormatedDecimal(operation["function"](*combination["floats"], precision_level=1))
)
table.add_row("float", "N/A", formatted_float_value, style=Style(color="orange3"))
# Get value at highest precision
max_precision_value = operation["function"](
*combination["quantities"], precision_level=precision_levels[-1]
)
formatted_max_precision_value = (
str(FormatedDecimal(max_precision_value.magnitude.normalize())).rstrip("0").rstrip(".")
)
# Compare float with max value, and add a row showing where they differ
s = SequenceMatcher(None, formatted_float_value, formatted_max_precision_value)
matching_blocks = s.get_matching_blocks()
if len(matching_blocks) > 0:
match_length = matching_blocks[0].size
table.add_row(
"(match)",
"N/A",
f"{'-' * (match_length)}{'x' * (len(formatted_float_value) - match_length)}",
style=Style(color="orange3"),
)
for precision_level in precision_levels:
quantity_value = operation["function"](*combination["quantities"], precision_level)
formatted_quantity_value = (
str(FormatedDecimal(quantity_value.magnitude.normalize())).rstrip("0").rstrip(".")
)
table.add_row(
"Quantity",
str(precision_level),
formatted_quantity_value,
style=(
Style(color="green")
if formatted_quantity_value == formatted_max_precision_value
else Style(color="red")
),
)
console.print(table)
# print(console.export_html())
print_quantities_at_each_precision()
print("\n\n")
print_examples_with_various_operations()
end = time.perf_counter()
print(f"Time taken: {end - start:.2f} seconds")

Checking precision of original values

# ┏━━━━━━┳━━━━━━━━━━━━━━━━━┓
# ┃ Prec ┃ Value 1         ┃
# ┑━━━━━━╇━━━━━━━━━━━━━━━━━┩
- β”‚ 4    β”‚ 2.549           β”‚
- β”‚ 5    β”‚ 2.5489          β”‚
- β”‚ 6    β”‚ 2.54891         β”‚
- β”‚ 8    β”‚ 2.548912        β”‚
- β”‚ 10   β”‚ 2.548912046     β”‚
+ β”‚ 15   β”‚ 2.5489120456102 β”‚
+ β”‚ 20   β”‚ 2.5489120456102 β”‚
+ β”‚ 25   β”‚ 2.5489120456102 β”‚
+ β”‚ 50   β”‚ 2.5489120456102 β”‚
+ β”‚ 75   β”‚ 2.5489120456102 β”‚
+ β”‚ 100  β”‚ 2.5489120456102 β”‚
+ β”‚ 125  β”‚ 2.5489120456102 β”‚
+ β”‚ 150  β”‚ 2.5489120456102 β”‚
+ β”‚ 200  β”‚ 2.5489120456102 β”‚
+ β”‚ 250  β”‚ 2.5489120456102 β”‚
# β””β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
# ┏━━━━━━┳━━━━━━━━━━━━━━━━━━━┓
# ┃ Prec ┃ Value 1           ┃
# ┑━━━━━━╇━━━━━━━━━━━━━━━━━━━┩
- β”‚ 4    β”‚ 83.22             β”‚
- β”‚ 5    β”‚ 83.216            β”‚
- β”‚ 6    β”‚ 83.216            β”‚
- β”‚ 8    β”‚ 83.215988         β”‚
- β”‚ 10   β”‚ 83.21598756       β”‚
- β”‚ 15   β”‚ 83.21598756102    β”‚
+ β”‚ 20   β”‚ 83.21598756102002 β”‚
+ β”‚ 25   β”‚ 83.21598756102002 β”‚
+ β”‚ 50   β”‚ 83.21598756102002 β”‚
+ β”‚ 75   β”‚ 83.21598756102002 β”‚
+ β”‚ 100  β”‚ 83.21598756102002 β”‚
+ β”‚ 125  β”‚ 83.21598756102002 β”‚
+ β”‚ 150  β”‚ 83.21598756102002 β”‚
+ β”‚ 200  β”‚ 83.21598756102002 β”‚
+ β”‚ 250  β”‚ 83.21598756102002 β”‚
# β””β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
# ┏━━━━━━┳━━━━━━━━━┓
# ┃ Prec ┃ Value 1 ┃
# ┑━━━━━━╇━━━━━━━━━┩
+ β”‚ 4    β”‚ 0.0002  β”‚
+ β”‚ 5    β”‚ 0.0002  β”‚
+ β”‚ 6    β”‚ 0.0002  β”‚
+ β”‚ 8    β”‚ 0.0002  β”‚
+ β”‚ 10   β”‚ 0.0002  β”‚
+ β”‚ 15   β”‚ 0.0002  β”‚
+ β”‚ 20   β”‚ 0.0002  β”‚
+ β”‚ 25   β”‚ 0.0002  β”‚
+ β”‚ 50   β”‚ 0.0002  β”‚
+ β”‚ 75   β”‚ 0.0002  β”‚
+ β”‚ 100  β”‚ 0.0002  β”‚
+ β”‚ 125  β”‚ 0.0002  β”‚
+ β”‚ 150  β”‚ 0.0002  β”‚
+ β”‚ 200  β”‚ 0.0002  β”‚
+ β”‚ 250  β”‚ 0.0002  β”‚
# β””β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
# ┏━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Prec ┃ Value 1                                  ┃
# ┑━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
- β”‚ 4    β”‚ 0.000000000000000000000000000000009651   β”‚
- β”‚ 5    β”‚ 0.0000000000000000000000000000000096511  β”‚
+ β”‚ 6    β”‚ 0.00000000000000000000000000000000965112 β”‚
+ β”‚ 8    β”‚ 0.00000000000000000000000000000000965112 β”‚
+ β”‚ 10   β”‚ 0.00000000000000000000000000000000965112 β”‚
+ β”‚ 15   β”‚ 0.00000000000000000000000000000000965112 β”‚
+ β”‚ 20   β”‚ 0.00000000000000000000000000000000965112 β”‚
+ β”‚ 25   β”‚ 0.00000000000000000000000000000000965112 β”‚
+ β”‚ 50   β”‚ 0.00000000000000000000000000000000965112 β”‚
+ β”‚ 75   β”‚ 0.00000000000000000000000000000000965112 β”‚
+ β”‚ 100  β”‚ 0.00000000000000000000000000000000965112 β”‚
+ β”‚ 125  β”‚ 0.00000000000000000000000000000000965112 β”‚
+ β”‚ 150  β”‚ 0.00000000000000000000000000000000965112 β”‚
+ β”‚ 200  β”‚ 0.00000000000000000000000000000000965112 β”‚
+ β”‚ 250  β”‚ 0.00000000000000000000000000000000965112 β”‚
# β””β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
# ┏━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Prec ┃ Value 1                                                ┃
# ┑━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
- β”‚ 4    β”‚ 745200000000000000000000000000000000000000000000000000 β”‚
- β”‚ 5    β”‚ 745210000000000000000000000000000000000000000000000000 β”‚
- β”‚ 6    β”‚ 745206000000000000000000000000000000000000000000000000 β”‚
- β”‚ 8    β”‚ 745205940000000000000000000000000000000000000000000000 β”‚
- β”‚ 10   β”‚ 745205937300000000000000000000000000000000000000000000 β”‚
- β”‚ 15   β”‚ 745205937266233000000000000000000000000000000000000000 β”‚
- β”‚ 20   β”‚ 745205937266232843950000000000000000000000000000000000 β”‚
- β”‚ 25   β”‚ 745205937266232843946624000000000000000000000000000000 β”‚
- β”‚ 50   β”‚ 745205937266232843946623988365475210078512674585250000 β”‚
+ β”‚ 75   β”‚ 745205937266232843946623988365475210078512674585246585 β”‚
+ β”‚ 100  β”‚ 745205937266232843946623988365475210078512674585246585 β”‚
+ β”‚ 125  β”‚ 745205937266232843946623988365475210078512674585246585 β”‚
+ β”‚ 150  β”‚ 745205937266232843946623988365475210078512674585246585 β”‚
+ β”‚ 200  β”‚ 745205937266232843946623988365475210078512674585246585 β”‚
+ β”‚ 250  β”‚ 745205937266232843946623988365475210078512674585246585 β”‚
# β””β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
# ┏━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Prec ┃ Value 1                                  ┃
# ┑━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
- β”‚ 4    β”‚ 63.11                                    β”‚
- β”‚ 5    β”‚ 63.111                                   β”‚
- β”‚ 6    β”‚ 63.1111                                  β”‚
- β”‚ 8    β”‚ 63.111111                                β”‚
- β”‚ 10   β”‚ 63.11111111                              β”‚
- β”‚ 15   β”‚ 63.1111111111111                         β”‚
- β”‚ 20   β”‚ 63.111111111111111111                    β”‚
- β”‚ 25   β”‚ 63.11111111111111111111111               β”‚
+ β”‚ 50   β”‚ 63.1111111111111111111111111111111111101 β”‚
+ β”‚ 75   β”‚ 63.1111111111111111111111111111111111101 β”‚
+ β”‚ 100  β”‚ 63.1111111111111111111111111111111111101 β”‚
+ β”‚ 125  β”‚ 63.1111111111111111111111111111111111101 β”‚
+ β”‚ 150  β”‚ 63.1111111111111111111111111111111111101 β”‚
+ β”‚ 200  β”‚ 63.1111111111111111111111111111111111101 β”‚
+ β”‚ 250  β”‚ 63.1111111111111111111111111111111111101 β”‚
# β””β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
# ┏━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Prec ┃ Value 1                                                                 ┃
# ┑━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
- β”‚ 4    β”‚ 4522000000000000000000000000000000000                                   β”‚
- β”‚ 5    β”‚ 4522000000000000000000000000000000000                                   β”‚
- β”‚ 6    β”‚ 4522010000000000000000000000000000000                                   β”‚
- β”‚ 8    β”‚ 4522010400000000000000000000000000000                                   β”‚
- β”‚ 10   β”‚ 4522010411000000000000000000000000000                                   β”‚
- β”‚ 15   β”‚ 4522010410540450000000000000000000000                                   β”‚
- β”‚ 20   β”‚ 4522010410540451204100000000000000000                                   β”‚
- β”‚ 25   β”‚ 4522010410540451204102045000000000000                                   β”‚
- β”‚ 50   β”‚ 4522010410540451204102045263884101623.1741258438646                     β”‚
+ β”‚ 75   β”‚ 4522010410540451204102045263884101623.174125843864637484832326463289748 β”‚
+ β”‚ 100  β”‚ 4522010410540451204102045263884101623.174125843864637484832326463289748 β”‚
+ β”‚ 125  β”‚ 4522010410540451204102045263884101623.174125843864637484832326463289748 β”‚
+ β”‚ 150  β”‚ 4522010410540451204102045263884101623.174125843864637484832326463289748 β”‚
+ β”‚ 200  β”‚ 4522010410540451204102045263884101623.174125843864637484832326463289748 β”‚
+ β”‚ 250  β”‚ 4522010410540451204102045263884101623.174125843864637484832326463289748 β”‚
# β””β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

add

2.5489120456102 + 83.21598756102002 + 0.0002
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                            ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 85.7650996066302155895755277015268802642822265625 β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ----------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 85.76                                             β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 85.765                                            β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 85.7651                                           β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 85.7651                                           β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 85.76509961                                       β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 85.7650996066302                                  β”‚
+ β”‚ Quantity  β”‚ 20    β”‚ 85.76509960663022                                 β”‚
+ β”‚ Quantity  β”‚ 25    β”‚ 85.76509960663022                                 β”‚
+ β”‚ Quantity  β”‚ 50    β”‚ 85.76509960663022                                 β”‚
+ β”‚ Quantity  β”‚ 75    β”‚ 85.76509960663022                                 β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ 85.76509960663022                                 β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ 85.76509960663022                                 β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ 85.76509960663022                                 β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ 85.76509960663022                                 β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 85.76509960663022                                 β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

add

83.21598756102002 + 0.0002 + 0.00000000000000000000000000000000965112
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                            ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 83.2161875610200212349809589795768260955810546875 β”‚
! β”‚ (match)   β”‚ N/A   β”‚ -----------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 83.22                                             β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 83.216                                            β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 83.2162                                           β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 83.216188                                         β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 83.21618756                                       β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 83.21618756102                                    β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 83.21618756102002                                 β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 83.21618756102002                                 β”‚
+ β”‚ Quantity  β”‚ 50    β”‚ 83.21618756102002000000000000000000965112         β”‚
+ β”‚ Quantity  β”‚ 75    β”‚ 83.21618756102002000000000000000000965112         β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ 83.21618756102002000000000000000000965112         β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ 83.21618756102002000000000000000000965112         β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ 83.21618756102002000000000000000000965112         β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ 83.21618756102002000000000000000000965112         β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 83.21618756102002000000000000000000965112         β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

add

0.0002 + 0.00000000000000000000000000000000965112 + 745205937266232843946623988365475210078512674585246585  
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                                        ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 745205937266232855072287477295291095024793137927159808                                        β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ----------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx                                        β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 745200000000000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 745210000000000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 745206000000000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 745205940000000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 745205937300000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 745205937266233000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 745205937266232843950000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 745205937266232843946624000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 745205937266232843946623988365475210078512674585250000                                        β”‚
- β”‚ Quantity  β”‚ 75    β”‚ 745205937266232843946623988365475210078512674585246585.0002                                   β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ 745205937266232843946623988365475210078512674585246585.00020000000000000000000000000000965112 β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ 745205937266232843946623988365475210078512674585246585.00020000000000000000000000000000965112 β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ 745205937266232843946623988365475210078512674585246585.00020000000000000000000000000000965112 β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ 745205937266232843946623988365475210078512674585246585.00020000000000000000000000000000965112 β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 745205937266232843946623988365475210078512674585246585.00020000000000000000000000000000965112 β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

add

0.00000000000000000000000000000000965112 + 745205937266232843946623988365475210078512674585246585 + 63.1111111111111111111111111111111111101                                      
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                                        ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 745205937266232855072287477295291095024793137927159808                                        β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ----------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx                                        β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 745200000000000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 745210000000000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 745206000000000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 745205940000000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 745205937300000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 745205937266233000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 745205937266232843950000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 745205937266232843946624000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 745205937266232843946623988365475210078512674585250000                                        β”‚
- β”‚ Quantity  β”‚ 75    β”‚ 745205937266232843946623988365475210078512674585246648.111111111111111111111                  β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ 745205937266232843946623988365475210078512674585246648.11111111111111111111111111111112076122 β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ 745205937266232843946623988365475210078512674585246648.11111111111111111111111111111112076122 β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ 745205937266232843946623988365475210078512674585246648.11111111111111111111111111111112076122 β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ 745205937266232843946623988365475210078512674585246648.11111111111111111111111111111112076122 β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 745205937266232843946623988365475210078512674585246648.11111111111111111111111111111112076122 β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

add

745205937266232843946623988365475210078512674585246585 + 63.1111111111111111111111111111111111101 + 4522010410540451204102045263884101623.174125843864637484832326463289748                      
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                                       ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 745205937266232855072287477295291095024793137927159808                                       β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ----------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx                                       β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 745200000000000000000000000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 745210000000000000000000000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 745206000000000000000000000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 745205940000000000000000000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 745205937300000000000000000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 745205937266233000000000000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 745205937266232848470000000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 745205937266232848468634400000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 745205937266232848468634398905926414180557938469350000                                       β”‚
- β”‚ Quantity  β”‚ 75    β”‚ 745205937266232848468634398905926414180557938469348271.285236954975748595943                 β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ 745205937266232848468634398905926414180557938469348271.2852369549757485959434375744008591101 β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ 745205937266232848468634398905926414180557938469348271.2852369549757485959434375744008591101 β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ 745205937266232848468634398905926414180557938469348271.2852369549757485959434375744008591101 β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ 745205937266232848468634398905926414180557938469348271.2852369549757485959434375744008591101 β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 745205937266232848468634398905926414180557938469348271.2852369549757485959434375744008591101 β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

add

63.1111111111111111111111111111111111101 + 4522010410540451204102045263884101623.174125843864637484832326463289748 + 2.5489120456102    
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                      ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 4522010410540451172472608712208416768                                       β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ----------------xxxxxxxxxxxxxxxxxxxxx                                       β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 4522000000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 4522000000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 4522010000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 4522010400000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 4522010411000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 4522010410540450000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 4522010410540451204100000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 4522010410540451204102045000000000000                                       β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 4522010410540451204102045263884101688.8341490005859                         β”‚
+ β”‚ Quantity  β”‚ 75    β”‚ 4522010410540451204102045263884101688.8341490005859485959434375744008591101 β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ 4522010410540451204102045263884101688.8341490005859485959434375744008591101 β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ 4522010410540451204102045263884101688.8341490005859485959434375744008591101 β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ 4522010410540451204102045263884101688.8341490005859485959434375744008591101 β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ 4522010410540451204102045263884101688.8341490005859485959434375744008591101 β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 4522010410540451204102045263884101688.8341490005859485959434375744008591101 β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

add

4522010410540451204102045263884101623.174125843864637484832326463289748 + 2.5489120456102 + 83.21598756102002                             
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                  ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 4522010410540451172472608712208416768                                   β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ----------------xxxxxxxxxxxxxxxxxxxxx                                   β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 4522000000000000000000000000000000000                                   β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 4522000000000000000000000000000000000                                   β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 4522010000000000000000000000000000000                                   β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 4522010400000000000000000000000000000                                   β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 4522010411000000000000000000000000000                                   β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 4522010410540450000000000000000000000                                   β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 4522010410540451204100000000000000000                                   β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 4522010410540451204102045000000000000                                   β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 4522010410540451204102045263884101708.9390254504948                     β”‚
+ β”‚ Quantity  β”‚ 75    β”‚ 4522010410540451204102045263884101708.939025450494857484832326463289748 β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ 4522010410540451204102045263884101708.939025450494857484832326463289748 β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ 4522010410540451204102045263884101708.939025450494857484832326463289748 β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ 4522010410540451204102045263884101708.939025450494857484832326463289748 β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ 4522010410540451204102045263884101708.939025450494857484832326463289748 β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 4522010410540451204102045263884101708.939025450494857484832326463289748 β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

subtract

2.5489120456102 - 83.21598756102002 - 0.0002         
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                             ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ -80.6672755154098268803863902576267719268798828125 β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ------------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx β”‚
- β”‚ Quantity  β”‚ 4     β”‚ -80.67                                             β”‚
- β”‚ Quantity  β”‚ 5     β”‚ -80.667                                            β”‚
- β”‚ Quantity  β”‚ 6     β”‚ -80.6673                                           β”‚
- β”‚ Quantity  β”‚ 8     β”‚ -80.667276                                         β”‚
- β”‚ Quantity  β”‚ 10    β”‚ -80.66727552                                       β”‚
- β”‚ Quantity  β”‚ 15    β”‚ -80.6672755154098                                  β”‚
+ β”‚ Quantity  β”‚ 20    β”‚ -80.66727551540982                                 β”‚
+ β”‚ Quantity  β”‚ 25    β”‚ -80.66727551540982                                 β”‚
+ β”‚ Quantity  β”‚ 50    β”‚ -80.66727551540982                                 β”‚
+ β”‚ Quantity  β”‚ 75    β”‚ -80.66727551540982                                 β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ -80.66727551540982                                 β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ -80.66727551540982                                 β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ -80.66727551540982                                 β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ -80.66727551540982                                 β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ -80.66727551540982                                 β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

subtract

83.21598756102002 - 0.0002 - 0.00000000000000000000000000000000965112                
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                            ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 83.2157875610200079563583130948245525360107421875 β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ----------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 83.22                                             β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 83.216                                            β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 83.2158                                           β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 83.215788                                         β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 83.21578756                                       β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 83.21578756102                                    β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 83.21578756102002                                 β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 83.21578756102002                                 β”‚
+ β”‚ Quantity  β”‚ 50    β”‚ 83.21578756102001999999999999999999034888         β”‚
+ β”‚ Quantity  β”‚ 75    β”‚ 83.21578756102001999999999999999999034888         β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ 83.21578756102001999999999999999999034888         β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ 83.21578756102001999999999999999999034888         β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ 83.21578756102001999999999999999999034888         β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ 83.21578756102001999999999999999999034888         β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 83.21578756102001999999999999999999034888         β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

subtract

0.0002 - 0.00000000000000000000000000000000965112 - 745205937266232843946623988365475210078512674585246585
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                                         ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ -745205937266232855072287477295291095024793137927159808                                        β”‚
! β”‚ (match)   β”‚ N/A   β”‚ -----------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx                                        β”‚
- β”‚ Quantity  β”‚ 4     β”‚ -745200000000000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 5     β”‚ -745210000000000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 6     β”‚ -745206000000000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 8     β”‚ -745205940000000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 10    β”‚ -745205937300000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 15    β”‚ -745205937266233000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 20    β”‚ -745205937266232843950000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 25    β”‚ -745205937266232843946624000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 50    β”‚ -745205937266232843946623988365475210078512674585250000                                        β”‚
- β”‚ Quantity  β”‚ 75    β”‚ -745205937266232843946623988365475210078512674585246584.9998                                   β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ -745205937266232843946623988365475210078512674585246584.99980000000000000000000000000000965112 β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ -745205937266232843946623988365475210078512674585246584.99980000000000000000000000000000965112 β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ -745205937266232843946623988365475210078512674585246584.99980000000000000000000000000000965112 β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ -745205937266232843946623988365475210078512674585246584.99980000000000000000000000000000965112 β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ -745205937266232843946623988365475210078512674585246584.99980000000000000000000000000000965112 β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

subtract

0.00000000000000000000000000000000965112 - 745205937266232843946623988365475210078512674585246585 - 63.1111111111111111111111111111111111101                                      
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                                         ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ -745205937266232855072287477295291095024793137927159808                                        β”‚
! β”‚ (match)   β”‚ N/A   β”‚ -----------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx                                        β”‚
- β”‚ Quantity  β”‚ 4     β”‚ -745200000000000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 5     β”‚ -745210000000000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 6     β”‚ -745206000000000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 8     β”‚ -745205940000000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 10    β”‚ -745205937300000000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 15    β”‚ -745205937266233000000000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 20    β”‚ -745205937266232843950000000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 25    β”‚ -745205937266232843946624000000000000000000000000000000                                        β”‚
- β”‚ Quantity  β”‚ 50    β”‚ -745205937266232843946623988365475210078512674585250000                                        β”‚
- β”‚ Quantity  β”‚ 75    β”‚ -745205937266232843946623988365475210078512674585246648.111111111111111111111                  β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ -745205937266232843946623988365475210078512674585246648.11111111111111111111111111111110145898 β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ -745205937266232843946623988365475210078512674585246648.11111111111111111111111111111110145898 β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ -745205937266232843946623988365475210078512674585246648.11111111111111111111111111111110145898 β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ -745205937266232843946623988365475210078512674585246648.11111111111111111111111111111110145898 β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ -745205937266232843946623988365475210078512674585246648.11111111111111111111111111111110145898 β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

subtract

745205937266232843946623988365475210078512674585246585 - 63.1111111111111111111111111111111111101 - 4522010410540451204102045263884101623.174125843864637484832326463289748                      
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                                       ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 745205937266232855072287477295291095024793137927159808                                       β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ----------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx                                       β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 745200000000000000000000000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 745210000000000000000000000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 745206000000000000000000000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 745205940000000000000000000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 745205937300000000000000000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 745205937266233000000000000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 745205937266232839430000000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 745205937266232839424613600000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 745205937266232839424613577825024005976467410701150000                                       β”‚
- β”‚ Quantity  β”‚ 75    β”‚ 745205937266232839424613577825024005976467410701144898.714763045024251404057                 β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ 745205937266232839424613577825024005976467410701144898.7147630450242514040565624255991408899 β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ 745205937266232839424613577825024005976467410701144898.7147630450242514040565624255991408899 β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ 745205937266232839424613577825024005976467410701144898.7147630450242514040565624255991408899 β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ 745205937266232839424613577825024005976467410701144898.7147630450242514040565624255991408899 β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 745205937266232839424613577825024005976467410701144898.7147630450242514040565624255991408899 β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

subtract

63.1111111111111111111111111111111111101 - 4522010410540451204102045263884101623.174125843864637484832326463289748 - 2.5489120456102     
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                       ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ -4522010410540451172472608712208416768                                       β”‚
! β”‚ (match)   β”‚ N/A   β”‚ -----------------xxxxxxxxxxxxxxxxxxxxx                                       β”‚
- β”‚ Quantity  β”‚ 4     β”‚ -4522000000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 5     β”‚ -4522000000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 6     β”‚ -4522010000000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 8     β”‚ -4522010400000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 10    β”‚ -4522010411000000000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 15    β”‚ -4522010410540450000000000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 20    β”‚ -4522010410540451204100000000000000000                                       β”‚
- β”‚ Quantity  β”‚ 25    β”‚ -4522010410540451204102045000000000000                                       β”‚
- β”‚ Quantity  β”‚ 50    β”‚ -4522010410540451204102045263884101562.6119267783637                         β”‚
+ β”‚ Quantity  β”‚ 75    β”‚ -4522010410540451204102045263884101562.6119267783637263737212153521786368899 β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ -4522010410540451204102045263884101562.6119267783637263737212153521786368899 β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ -4522010410540451204102045263884101562.6119267783637263737212153521786368899 β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ -4522010410540451204102045263884101562.6119267783637263737212153521786368899 β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ -4522010410540451204102045263884101562.6119267783637263737212153521786368899 β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ -4522010410540451204102045263884101562.6119267783637263737212153521786368899 β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

subtract

4522010410540451204102045263884101623.174125843864637484832326463289748 - 2.5489120456102 - 83.21598756102002                             
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                  ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 4522010410540451172472608712208416768                                   β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ----------------xxxxxxxxxxxxxxxxxxxxx                                   β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 4522000000000000000000000000000000000                                   β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 4522000000000000000000000000000000000                                   β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 4522010000000000000000000000000000000                                   β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 4522010400000000000000000000000000000                                   β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 4522010411000000000000000000000000000                                   β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 4522010410540450000000000000000000000                                   β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 4522010410540451204100000000000000000                                   β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 4522010410540451204102045000000000000                                   β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 4522010410540451204102045263884101537.4092262372344                     β”‚
+ β”‚ Quantity  β”‚ 75    β”‚ 4522010410540451204102045263884101537.409226237234417484832326463289748 β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ 4522010410540451204102045263884101537.409226237234417484832326463289748 β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ 4522010410540451204102045263884101537.409226237234417484832326463289748 β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ 4522010410540451204102045263884101537.409226237234417484832326463289748 β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ 4522010410540451204102045263884101537.409226237234417484832326463289748 β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 4522010410540451204102045263884101537.409226237234417484832326463289748 β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

multiply

2.5489120456102 * 83.21598756102002 * 0.0002              
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                      ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 0.042422046616326501700111606396603747271001338958740234375 β”‚
! β”‚ (match)   β”‚ N/A   β”‚ -----------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 0.04242                                                     β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 0.042422                                                    β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 0.042422                                                    β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 0.042422046                                                 β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 0.04242204662                                               β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 0.0424220466163264                                          β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 0.042422046616326499414                                     β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 0.04242204661632649941477506                                β”‚
+ β”‚ Quantity  β”‚ 50    β”‚ 0.0424220466163264994147750632408                           β”‚
+ β”‚ Quantity  β”‚ 75    β”‚ 0.0424220466163264994147750632408                           β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ 0.0424220466163264994147750632408                           β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ 0.0424220466163264994147750632408                           β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ 0.0424220466163264994147750632408                           β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ 0.0424220466163264994147750632408                           β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 0.0424220466163264994147750632408                           β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

multiply

83.21598756102002 * 0.0002 * 0.00000000000000000000000000000000965112                                                       
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                                                                                                                  ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 0.000000000000000000000000000000000160625496373982310333829517887327379564709411961708274623855793555793146587939939206259747951632821383327609510160982608795166015625 β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ---------------------------------------------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 0.0000000000000000000000000000000001606                                                                                                                                 β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 0.00000000000000000000000000000000016062                                                                                                                                β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 0.000000000000000000000000000000000160626                                                                                                                               β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 0.0000000000000000000000000000000001606255                                                                                                                              β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 0.0000000000000000000000000000000001606254964                                                                                                                           β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 0.000000000000000000000000000000000160625496373982                                                                                                                      β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 0.00000000000000000000000000000000016062549637398230708                                                                                                                 β”‚
+ β”‚ Quantity  β”‚ 25    β”‚ 0.00000000000000000000000000000000016062549637398230708448                                                                                                              β”‚
+ β”‚ Quantity  β”‚ 50    β”‚ 0.00000000000000000000000000000000016062549637398230708448                                                                                                              β”‚
+ β”‚ Quantity  β”‚ 75    β”‚ 0.00000000000000000000000000000000016062549637398230708448                                                                                                              β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ 0.00000000000000000000000000000000016062549637398230708448                                                                                                              β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ 0.00000000000000000000000000000000016062549637398230708448                                                                                                              β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ 0.00000000000000000000000000000000016062549637398230708448                                                                                                              β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ 0.00000000000000000000000000000000016062549637398230708448                                                                                                              β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 0.00000000000000000000000000000000016062549637398230708448                                                                                                              β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

multiply

0.0002 * 0.00000000000000000000000000000000965112 * 745205937266232843946623988365475210078512674585246585               
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                        ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 1438414385053777152                                           β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ----------------xxx                                           β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 1438000000000000000                                           β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 1438400000000000000                                           β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 1438410000000000000                                           β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 1438414400000000000                                           β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 1438414385000000000                                           β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 1438414385053780000                                           β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 1438414385053777025                                           β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 1438414385053777024.974028                                    β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 1438414385053777024.9740283413187610218985870487886           β”‚
+ β”‚ Quantity  β”‚ 75    β”‚ 1438414385053777024.97402834131876102189858704878863300428504 β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ 1438414385053777024.97402834131876102189858704878863300428504 β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ 1438414385053777024.97402834131876102189858704878863300428504 β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ 1438414385053777024.97402834131876102189858704878863300428504 β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ 1438414385053777024.97402834131876102189858704878863300428504 β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 1438414385053777024.97402834131876102189858704878863300428504 β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

multiply

0.00000000000000000000000000000000965112 * 745205937266232843946623988365475210078512674585246585 * 63.1111111111111111111111111111111111101                                         
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                                              ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 453899650394747469561856                                                                            β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ----------------xxxxxxxx                                                                            β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 453900000000000000000000                                                                            β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 453900000000000000000000                                                                            β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 453900000000000000000000                                                                            β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 453899650000000000000000                                                                            β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 453899650400000000000000                                                                            β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 453899650394748000000000                                                                            β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 453899650394747416770000                                                                            β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 453899650394747416769582.3                                                                          β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 453899650394747416769582.27659392014468072659600442                                                 β”‚
- β”‚ Quantity  β”‚ 75    β”‚ 453899650394747416769582.276593920144680726596004418986392577256718888485945                        β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ 453899650394747416769582.27659392014468072659600441898639257725671888848594484603214223524425611452 β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ 453899650394747416769582.27659392014468072659600441898639257725671888848594484603214223524425611452 β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ 453899650394747416769582.27659392014468072659600441898639257725671888848594484603214223524425611452 β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ 453899650394747416769582.27659392014468072659600441898639257725671888848594484603214223524425611452 β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 453899650394747416769582.27659392014468072659600441898639257725671888848594484603214223524425611452 β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

multiply

745205937266232843946623988365475210078512674585246585 * 63.1111111111111111111111111111111111101 * 4522010410540451204102045263884101623.174125843864637484832326463289748  
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                                                                                                              ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 212673652842957002305485905385005806695176173220378240310168070823863903650901111384341217280                                                                       β”‚
! β”‚ (match)   β”‚ N/A   β”‚ --------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx                                                                       β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 212700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000                                                                       β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 212670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000                                                                       β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 212674000000000000000000000000000000000000000000000000000000000000000000000000000000000000000                                                                       β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 212673650000000000000000000000000000000000000000000000000000000000000000000000000000000000000                                                                       β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 212673652900000000000000000000000000000000000000000000000000000000000000000000000000000000000                                                                       β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 212673652842957000000000000000000000000000000000000000000000000000000000000000000000000000000                                                                       β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 212673652842956987430000000000000000000000000000000000000000000000000000000000000000000000000                                                                       β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 212673652842956987432546500000000000000000000000000000000000000000000000000000000000000000000                                                                       β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 212673652842956987432546507802167027303793138006730000000000000000000000000000000000000000000                                                                       β”‚
- β”‚ Quantity  β”‚ 75    β”‚ 212673652842956987432546507802167027303793138006724577956612040376227296461000000000000000000                                                                       β”‚
- β”‚ Quantity  β”‚ 100   β”‚ 212673652842956987432546507802167027303793138006724577956612040376227296460621377432972435643.9416171                                                               β”‚
- β”‚ Quantity  β”‚ 125   β”‚ 212673652842956987432546507802167027303793138006724577956612040376227296460621377432972435643.94161710499585077404239347043616                                      β”‚
- β”‚ Quantity  β”‚ 150   β”‚ 212673652842956987432546507802167027303793138006724577956612040376227296460621377432972435643.941617104995850774042393470436155844378852658277059250683             β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ 212673652842956987432546507802167027303793138006724577956612040376227296460621377432972435643.941617104995850774042393470436155844378852658277059250682710618794858 β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 212673652842956987432546507802167027303793138006724577956612040376227296460621377432972435643.941617104995850774042393470436155844378852658277059250682710618794858 β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

multiply

63.1111111111111111111111111111111111101 * 4522010410540451204102045263884101623.174125843864637484832326463289748 * 2.5489120456102  
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                                                                      ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 727431718410569901195519350757065228288                                                                                     β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ---------------xxxxxxxxxxxxxxxxxxxxxxxx                                                                                     β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 727500000000000000000000000000000000000                                                                                     β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 727430000000000000000000000000000000000                                                                                     β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 727431000000000000000000000000000000000                                                                                     β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 727431710000000000000000000000000000000                                                                                     β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 727431718500000000000000000000000000000                                                                                     β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 727431718410571000000000000000000000000                                                                                     β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 727431718410569783840000000000000000000                                                                                     β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 727431718410569783851679200000000000000                                                                                     β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 727431718410569783851679140796857357610.35533377863                                                                         β”‚
- β”‚ Quantity  β”‚ 75    β”‚ 727431718410569783851679140796857357610.355333778630521877983708523932867728                                                β”‚
- β”‚ Quantity  β”‚ 100   β”‚ 727431718410569783851679140796857357610.3553337786305218779837085239328677277381203028975266262642451                       β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ 727431718410569783851679140796857357610.35533377863052187798370852393286772773812030289752662626424510664942344977355727896 β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ 727431718410569783851679140796857357610.35533377863052187798370852393286772773812030289752662626424510664942344977355727896 β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ 727431718410569783851679140796857357610.35533377863052187798370852393286772773812030289752662626424510664942344977355727896 β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 727431718410569783851679140796857357610.35533377863052187798370852393286772773812030289752662626424510664942344977355727896 β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

multiply

4522010410540451204102045263884101623.174125843864637484832326463289748 * 2.5489120456102 * 83.21598756102002  
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                                               ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 959164682177303783320192219330218295296                                                              β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ----------------xxxxxxxxxxxxxxxxxxxxxxx                                                              β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 959500000000000000000000000000000000000                                                              β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 959150000000000000000000000000000000000                                                              β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 959164000000000000000000000000000000000                                                              β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 959164700000000000000000000000000000000                                                              β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 959164682500000000000000000000000000000                                                              β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 959164682177305000000000000000000000000                                                              β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 959164682177303762400000000000000000000                                                              β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 959164682177303762433692500000000000000                                                              β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 959164682177303762433692476952965565220.89630216745                                                  β”‚
- β”‚ Quantity  β”‚ 75    β”‚ 959164682177303762433692476952965565220.896302167465464415679420813905257873                         β”‚
+ β”‚ Quantity  β”‚ 100   β”‚ 959164682177303762433692476952965565220.896302167465464415679420813905257874624335137243131571476592 β”‚
+ β”‚ Quantity  β”‚ 125   β”‚ 959164682177303762433692476952965565220.896302167465464415679420813905257874624335137243131571476592 β”‚
+ β”‚ Quantity  β”‚ 150   β”‚ 959164682177303762433692476952965565220.896302167465464415679420813905257874624335137243131571476592 β”‚
+ β”‚ Quantity  β”‚ 200   β”‚ 959164682177303762433692476952965565220.896302167465464415679420813905257874624335137243131571476592 β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 959164682177303762433692476952965565220.896302167465464415679420813905257874624335137243131571476592 β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

divide

2.5489120456102 / 83.21598756102002 / 0.0002
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                                                                                                                                                                                              ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 153.15038133394455144298262894153594970703125                                                                                                                                                                                                       β”‚
! β”‚ (match)   β”‚ N/A   β”‚ -----------------xxxxxxxxxxxxxxxxxxxxxxxxxxxx                                                                                                                                                                                                       β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 153.2                                                                                                                                                                                                                                               β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 153.15                                                                                                                                                                                                                                              β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 153.15                                                                                                                                                                                                                                              β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 153.15038                                                                                                                                                                                                                                           β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 153.1503814                                                                                                                                                                                                                                         β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 153.150381333944                                                                                                                                                                                                                                    β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 153.150381333944522                                                                                                                                                                                                                                 β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 153.1503813339445219945876                                                                                                                                                                                                                          β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 153.15038133394452199458762162739249397892535337102                                                                                                                                                                                                 β”‚
- β”‚ Quantity  β”‚ 75    β”‚ 153.150381333944521994587621627392493978925353371022549708890212909058190657                                                                                                                                                                        β”‚
- β”‚ Quantity  β”‚ 100   β”‚ 153.1503813339445219945876216273924939789253533710225497088902129090581906569937780879716955975125018                                                                                                                                               β”‚
- β”‚ Quantity  β”‚ 125   β”‚ 153.15038133394452199458762162739249397892535337102254970889021290905819065699377808797169559751250173178411412922905854060988                                                                                                                      β”‚
- β”‚ Quantity  β”‚ 150   β”‚ 153.1503813339445219945876216273924939789253533710225497088902129090581906569937780879716955975125017317841141292290585406098829659482696064885040227                                                                                               β”‚
- β”‚ Quantity  β”‚ 200   β”‚ 153.15038133394452199458762162739249397892535337102254970889021290905819065699377808797169559751250173178411412922905854060988296594826960648850402269971686347870140934387602415711882441354344550569794                                           β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 153.1503813339445219945876216273924939789253533710225497088902129090581906569937780879716955975125017317841141292290585406098829659482696064885040226997168634787014093438760241571188244135434455056979367621324181824549591490245157954454492974… β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

divide

83.21598756102002 / 0.0002 / 0.00000000000000000000000000000000965112
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                                                                                                                                                                                              ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 43112088317739297244662469208144084992                                                                                                                                                                                                              β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ----------------xxxxxxxxxxxxxxxxxxxxxx                                                                                                                                                                                                              β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 43110000000000000000000000000000000000                                                                                                                                                                                                              β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 43112000000000000000000000000000000000                                                                                                                                                                                                              β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 43112100000000000000000000000000000000                                                                                                                                                                                                              β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 43112089000000000000000000000000000000                                                                                                                                                                                                              β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 43112088320000000000000000000000000000                                                                                                                                                                                                              β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 43112088317739300000000000000000000000                                                                                                                                                                                                              β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 43112088317739298651000000000000000000                                                                                                                                                                                                              β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 43112088317739298651348240000000000000                                                                                                                                                                                                              β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 43112088317739298651348237303028042341.199777849617                                                                                                                                                                                                 β”‚
- β”‚ Quantity  β”‚ 75    β”‚ 43112088317739298651348237303028042341.1997778496174537255779640083223501521                                                                                                                                                                        β”‚
- β”‚ Quantity  β”‚ 100   β”‚ 43112088317739298651348237303028042341.19977784961745372557796400832235015210669849716924046121071958                                                                                                                                               β”‚
- β”‚ Quantity  β”‚ 125   β”‚ 43112088317739298651348237303028042341.199777849617453725577964008322350152106698497169240461210719584877195600096154643191671                                                                                                                      β”‚
- β”‚ Quantity  β”‚ 150   β”‚ 43112088317739298651348237303028042341.1997778496174537255779640083223501521066984971692404612107195848771956000961546431916710184931904276394864015783                                                                                             β”‚
- β”‚ Quantity  β”‚ 200   β”‚ 43112088317739298651348237303028042341.199777849617453725577964008322350152106698497169240461210719584877195600096154643191671018493190427639486401578262419283979475957194605392949212112169364799111398                                           β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 43112088317739298651348237303028042341.19977784961745372557796400832235015210669849716924046121071958487719560009615464319167101849319042763948640157826241928397947595719460539294921211216936479911139846981490231185603328940060842679398867696… β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

divide

0.0002 / 0.00000000000000000000000000000000965112 / 745205937266232843946623988365475210078512674585246585
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                                                                                                                                                                                              ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 0.00000000000000000000000002780839820265322545319868390910976136226659313788633802609428616843599384178542521794952335767447948455810546875                                                                                                         β”‚
! β”‚ (match)   β”‚ N/A   β”‚ -------------------------------------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx                                                                                                         β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 0.0000000000000000000000000278                                                                                                                                                                                                                      β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 0.000000000000000000000000027808                                                                                                                                                                                                                    β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 0.0000000000000000000000000278084                                                                                                                                                                                                                   β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 0.000000000000000000000000027808398                                                                                                                                                                                                                 β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 0.00000000000000000000000002780839821                                                                                                                                                                                                               β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 0.0000000000000000000000000278083982026532                                                                                                                                                                                                          β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 0.000000000000000000000000027808398202653227133                                                                                                                                                                                                     β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 0.00000000000000000000000002780839820265322713340926                                                                                                                                                                                                β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 0.000000000000000000000000027808398202653227133409259227275637272788533811925                                                                                                                                                                       β”‚
- β”‚ Quantity  β”‚ 75    β”‚ 0.0000000000000000000000000278083982026532271334092592272756372727885338119251338752444469179392202375                                                                                                                                              β”‚
- β”‚ Quantity  β”‚ 100   β”‚ 0.00000000000000000000000002780839820265322713340925922727563727278853381192513387524444691793922023752274288974502687074517766                                                                                                                     β”‚
- β”‚ Quantity  β”‚ 125   β”‚ 0.000000000000000000000000027808398202653227133409259227275637272788533811925133875244446917939220237522742889745026870745177654279196804308624632137173                                                                                            β”‚
- β”‚ Quantity  β”‚ 150   β”‚ 0.0000000000000000000000000278083982026532271334092592272756372727885338119251338752444469179392202375227428897450268707451776542791968043086246321371734385891755669861762459294                                                                   β”‚
- β”‚ Quantity  β”‚ 200   β”‚ 0.000000000000000000000000027808398202653227133409259227275637272788533811925133875244446917939220237522742889745026870745177654279196804308624632137173438589175566986176245929362948319860600733507205881176615156602696467912866                 β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 0.000000000000000000000000027808398202653227133409259227275637272788533811925133875244446917939220237522742889745026870745177654279196804308624632137173438589175566986176245929362948319860600733507205881176615156602696467912866237732448963735… β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

divide

0.00000000000000000000000000000000965112 / 745205937266232843946623988365475210078512674585246585 / 63.1111111111111111111111111111111111101
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                                                                                                                                                                                              ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205208612021169043217688053095497601418863904020064404935733665312642123847374611836715840422371271400873686828979627062804109535702573425838998223205389… β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ---------------------------------------------------------------------------------------------------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx… β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000002052                                                                                                                                                       β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000020521                                                                                                                                                      β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205208                                                                                                                                                     β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000020520862                                                                                                                                                   β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205208612                                                                                                                                                  β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205208612021169                                                                                                                                            β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000020520861202116906348                                                                                                                                       β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000002052086120211690634830233                                                                                                                                  β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000020520861202116906348302331600169070309524087817238                                                                                                         β”‚
- β”‚ Quantity  β”‚ 75    β”‚ 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000020520861202116906348302331600169070309524087817238424908072868364265971744                                                                                 β”‚
- β”‚ Quantity  β”‚ 100   β”‚ 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000002052086120211690634830233160016907030952408781723842490807286836426597174399670109071810862749879759                                                       β”‚
- β”‚ Quantity  β”‚ 125   β”‚ 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000002052086120211690634830233160016907030952408781723842490807286836426597174399670109071810862749879759597843570707511152693653                               β”‚
- β”‚ Quantity  β”‚ 150   β”‚ 0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205208612021169063483023316001690703095240878172384249080728683642659717439967010907181086274987975959784357070751115269365300352825112471344186150893     β”‚
- β”‚ Quantity  β”‚ 200   β”‚ 0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205208612021169063483023316001690703095240878172384249080728683642659717439967010907181086274987975959784357070751115269365300352825112471344186150893524… β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205208612021169063483023316001690703095240878172384249080728683642659717439967010907181086274987975959784357070751115269365300352825112471344186150893524… β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
divide: 745205937266232843946623988365475210078512674585246585 / 63.1111111111111111111111111111111111101 / 4522010410540451204102045263884101623.174125843864637484832326463289748
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                                                                                                                                                                                              ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 2611192696007879                                                                                                                                                                                                                                    β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ---------------x                                                                                                                                                                                                                                    β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 2612000000000000                                                                                                                                                                                                                                    β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 2611200000000000                                                                                                                                                                                                                                    β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 2611180000000000                                                                                                                                                                                                                                    β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 2611192800000000                                                                                                                                                                                                                                    β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 2611192697000000                                                                                                                                                                                                                                    β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 2611192696007880                                                                                                                                                                                                                                    β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 2611192696007878.9275                                                                                                                                                                                                                               β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 2611192696007878.927592999                                                                                                                                                                                                                          β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 2611192696007878.9275929982654726360205472061723079                                                                                                                                                                                                 β”‚
- β”‚ Quantity  β”‚ 75    β”‚ 2611192696007878.9275929982654726360205472061723079423109217846186986379673                                                                                                                                                                         β”‚
- β”‚ Quantity  β”‚ 100   β”‚ 2611192696007878.927592998265472636020547206172307942310921784618698637967302733171718546787565863901                                                                                                                                               β”‚
- β”‚ Quantity  β”‚ 125   β”‚ 2611192696007878.9275929982654726360205472061723079423109217846186986379673027331717185467875658639005838924299141047143058968                                                                                                                      β”‚
- β”‚ Quantity  β”‚ 150   β”‚ 2611192696007878.92759299826547263602054720617230794231092178461869863796730273317171854678756586390058389242991410471430589678447552484595869530039323                                                                                             β”‚
- β”‚ Quantity  β”‚ 200   β”‚ 2611192696007878.9275929982654726360205472061723079423109217846186986379673027331717185467875658639005838924299141047143058967844755248459586953003932330569091045571355044514963817210996251284983797934                                           β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 2611192696007878.927592998265472636020547206172307942310921784618698637967302733171718546787565863900583892429914104714305896784475524845958695300393233056909104557135504451496381721099625128498379793320080007360405334031387047703042385775499… β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

divide

63.1111111111111111111111111111111111101 / 4522010410540451204102045263884101623.174125843864637484832326463289748 / 2.5489120456102
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                                                                                                                                                                                              ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 0.0000000000000000000000000000000000054754449728722994465847869443122640418627096815219340128870510599217239463980793157979901704564273945408103827503509819507598876953125                                                                         β”‚
! β”‚ (match)   β”‚ N/A   β”‚ -----------------------------------------------------xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx                                                                         β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 0.000000000000000000000000000000000005477                                                                                                                                                                                                           β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 0.0000000000000000000000000000000000054753                                                                                                                                                                                                          β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 0.00000000000000000000000000000000000547543                                                                                                                                                                                                         β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 0.0000000000000000000000000000000000054754451                                                                                                                                                                                                       β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 0.000000000000000000000000000000000005475444974                                                                                                                                                                                                     β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 0.00000000000000000000000000000000000547544497287229                                                                                                                                                                                                β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 0.0000000000000000000000000000000000054754449728722993168                                                                                                                                                                                           β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 0.000000000000000000000000000000000005475444972872299316861886                                                                                                                                                                                      β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 0.0000000000000000000000000000000000054754449728722993168618875902076448800628155634208                                                                                                                                                             β”‚
- β”‚ Quantity  β”‚ 75    β”‚ 0.00000000000000000000000000000000000547544497287229931686188759020764488006281556342082812132252933701191587906                                                                                                                                    β”‚
- β”‚ Quantity  β”‚ 100   β”‚ 0.000000000000000000000000000000000005475444972872299316861887590207644880062815563420828121322529337011915879040819459150415259387851227                                                                                                           β”‚
- β”‚ Quantity  β”‚ 125   β”‚ 0.0000000000000000000000000000000000054754449728722993168618875902076448800628155634208281213225293370119158790408194591504152593878512276537620317099278766700543                                                                                  β”‚
- β”‚ Quantity  β”‚ 150   β”‚ 0.00000000000000000000000000000000000547544497287229931686188759020764488006281556342082812132252933701191587904081945915041525938785122765376203170992787667005450849104461662104256423193                                                         β”‚
- β”‚ Quantity  β”‚ 200   β”‚ 0.0000000000000000000000000000000000054754449728722993168618875902076448800628155634208281213225293370119158790408194591504152593878512276537620317099278766700545084910446166210425642319179883984411418536479439691980685891327298351199153       β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 0.000000000000000000000000000000000005475444972872299316861887590207644880062815563420828121322529337011915879040819459150415259387851227653762031709927876670054508491044616621042564231917988398441141853647943969198068589132729835119915187619… β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

divide

4522010410540451204102045263884101623.174125843864637484832326463289748 / 2.5489120456102 / 83.21598756102002
# ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
# ┃ Type      ┃ Prec  ┃ Result                                                                                                                                                                                                                                              ┃
# ┑━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
! β”‚ float     β”‚ N/A   β”‚ 21319152521981889113294105233850368                                                                                                                                                                                                                 β”‚
! β”‚ (match)   β”‚ N/A   β”‚ ----------------xxxxxxxxxxxxxxxxxxx                                                                                                                                                                                                                 β”‚
- β”‚ Quantity  β”‚ 4     β”‚ 21320000000000000000000000000000000                                                                                                                                                                                                                 β”‚
- β”‚ Quantity  β”‚ 5     β”‚ 21319000000000000000000000000000000                                                                                                                                                                                                                 β”‚
- β”‚ Quantity  β”‚ 6     β”‚ 21319100000000000000000000000000000                                                                                                                                                                                                                 β”‚
- β”‚ Quantity  β”‚ 8     β”‚ 21319152000000000000000000000000000                                                                                                                                                                                                                 β”‚
- β”‚ Quantity  β”‚ 10    β”‚ 21319152520000000000000000000000000                                                                                                                                                                                                                 β”‚
- β”‚ Quantity  β”‚ 15    β”‚ 21319152521981800000000000000000000                                                                                                                                                                                                                 β”‚
- β”‚ Quantity  β”‚ 20    β”‚ 21319152521981886410000000000000000                                                                                                                                                                                                                 β”‚
- β”‚ Quantity  β”‚ 25    β”‚ 21319152521981886410137770000000000                                                                                                                                                                                                                 β”‚
- β”‚ Quantity  β”‚ 50    β”‚ 21319152521981886410137776585684448.742023828536889                                                                                                                                                                                                 β”‚
- β”‚ Quantity  β”‚ 75    β”‚ 21319152521981886410137776585684448.742023828536889954655246182745458602527                                                                                                                                                                         β”‚
- β”‚ Quantity  β”‚ 100   β”‚ 21319152521981886410137776585684448.74202382853688995465524618274545860252702831790205730108867067547                                                                                                                                               β”‚
- β”‚ Quantity  β”‚ 125   β”‚ 21319152521981886410137776585684448.742023828536889954655246182745458602527028317902057301088670675467007182679862423086208471                                                                                                                      β”‚
- β”‚ Quantity  β”‚ 150   β”‚ 21319152521981886410137776585684448.7420238285368899546552461827454586025270283179020573010886706754670071826798624230862084706539751322099274044019028                                                                                             β”‚
- β”‚ Quantity  β”‚ 200   β”‚ 21319152521981886410137776585684448.742023828536889954655246182745458602527028317902057301088670675467007182679862423086208470653975132209927404401902807906409635273055815908889666265350346221402476646                                           β”‚
+ β”‚ Quantity  β”‚ 250   β”‚ 21319152521981886410137776585684448.74202382853688995465524618274545860252702831790205730108867067546700718267986242308620847065397513220992740440190280790640963527305581590888966626535034622140247664633706000138303244356628386822704807333344… β”‚
# β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment