![]() |
VOOZH | about |
dotnet add package ExtendedNumerics.BigDecimal --version 3003.2.0.161
NuGet\Install-Package ExtendedNumerics.BigDecimal -Version 3003.2.0.161
<PackageReference Include="ExtendedNumerics.BigDecimal" Version="3003.2.0.161" />
<PackageVersion Include="ExtendedNumerics.BigDecimal" Version="3003.2.0.161" />Directory.Packages.props
<PackageReference Include="ExtendedNumerics.BigDecimal" />Project file
paket add ExtendedNumerics.BigDecimal --version 3003.2.0.161
#r "nuget: ExtendedNumerics.BigDecimal, 3003.2.0.161"
#:package ExtendedNumerics.BigDecimal@3003.2.0.161
#addin nuget:?package=ExtendedNumerics.BigDecimal&version=3003.2.0.161Install as a Cake Addin
#tool nuget:?package=ExtendedNumerics.BigDecimal&version=3003.2.0.161Install as a Cake Tool
đ NuGet Version
đ Downloads
BigDecimal is an arbitrary precision floating point number type/class.
It stores a Mantissa and an Exponent. The Mantissa is of type BigInteger, enabling BigDecimal to have arbitrary precision. BigDecimal is a base-10 floating point number, like System.Decimal is. This is unlike System.Double, which is a base-2 floating point number.
BREAKING CHANGE NOTICE FOR VER. 3001.0.0: BigDecimal.Round(BigDecimal value, Int32 precision) now exhibits common/standard/normal/expected rounding behavior when the precision argument is zero or greater. Previously, this method truncated at the requested precision. For negative precision values, the behavior remains unaltered. For anyone who still needs the old behavior of BigDevimal.Round(BigDecimal value, Int32 precision), use BigDecimal.Truncate(BigDecimal value, int precision) instead. This method is functionally identical to Excel's ROUNDDOWN function.
BREAKING CHANGE NOTICE FOR VER. 3000.0.0: The default Precision value for the library has been changed from 5000 to 100. This should provide a much more reasonable default value for the vast majority of the users. 5000 digits of precision by default was a poor choice, is likely more precision than anyone needs, and resulted in performance issues after a couple of multiplications (assuming BigDecimal.AlwaysTruncate is false, which is the default).
Here is what you need to know: You will want to configure BigDecimal to obtain the behavior that you want. This is done via two static fields of BigDecimal:
BigDecimal.PrecisionBigDecimal.AlwaysTruncateYou set them like this (these are the default values being set here, BTW):
BigDecimal.Precision = 100;
BigDecimal.AlwaysTruncate = false;
This is the default precision that BigDecimal uses for all BigDecimal instances. The value is specified in the number of digits to the right of the decimal place that you want.
The default value is 100.
This value specifies whether or not BigDecimal will round the value of a BigDecimal to BigDecimal.Precision places after every arithmetic operation.
The default value is false.
Setting this setting to true keeps the values constrained to only BigDecimal.Precision digits. This limits the amount of memory used and keeps the arithmetic performant.
However, the number has the potential to lose precision as you go, depending on how you use it.
The dynamics of if and when BigDecimals lose precision with this setting enabled isn't necessarily complicated, but it does require some discussion.
See the documentation for a more in depth discussion on this topic.
đ Now supports logarithms and trigonometric functions: LogN, Ln, Log2, Log10, Exp, Sin, Cos, Tan, Cot, Sec, Csc, Sinh, Cosh, Tanh, Coth, Sech, Csch, Arcsin, Arccos, Arctan, Arccot, Arcsec, Arccsc
âŦī¸ Download the latest package from NuGet if you just want the compiled binaries. You can either include the NuGet package in your project outright, or extract the assembly .dll from the nuget package. (Explaination: A .nupkg file is just a .zip file renamed. Use 7zip to extract the binaries from it.):
âī¸ See the Documentation Wiki Page for important information on correct and accurate usage, tips and other information.
đ¨ī¸ Visit the community discussion forums if you have a question or want to start a discussion relevant to the this project.
:cockroach: View open issues if you are experiencing a bug or have an idea for a new feature. You can also discuss new feature ideas in the discussion forums first. An 'issue' for the new feature can be created from a discussion at any time.
Example usage:
Console.WriteLine(BigDecimal.Precision);
// 5000
BigDecimal.Precision = 200; // Set the precision for this demo to 200 digits.
Console.WriteLine(BigDecimal.Precision);
// 200
BigDecimal goldenRatio = BigDecimal.Divide(BigDecimal.Add(BigDecimal.One, BigDecimal.Pow(5d, 0.5d)), BigDecimal.Parse("2"));
BigDecimal almostInteger = BigDecimal.Pow(goldenRatio, 23);
Console.WriteLine(almostInteger);
// 64079.00001560578384383500959972260039151833845477140599206350517199794937295147270152942235863491540475774000502741633359451934934882489092137272096824676971700933979751496900324221635899408750483174158953011851250910101237515143968376713756637230312138443375432324556317247823731646925119584432357765294362228759928426416872990657055876547580521657363887865665906948418349
Console.WriteLine(almostInteger.Mantissa);
// 6407900001560578384383500959972260039151833845477140599206350517199794937295147270152942235863491540475774000502741633359451934934882489092137272096824676971700933979751496900324221635899408750483174158953011851250910101237515143968376713756637230312138443375432324556317247823731646925119584432357765294362228759928426416872990657055876547580521657363887865665906948418349
Console.WriteLine(almostInteger.Exponent);
// -368
BigDecimal X = BigDecimal.Parse("0.000551876379690949227373068432671081677704194260485651214128035320088300220750");
Console.WriteLine(X);
// 0.00055187637969094922737306843267108167770419426048565121412803532008830022075
BigDecimal result = BigDecimal.Divide(BigDecimal.One, X);
Console.WriteLine(result);
// 1812.000000000000000000000000000000000000000000000000000000000000000000000001812000000000000000000000000000000000000000000000000000000000000000000000001812000000000000000000000000000000000000000000000000000000000000000000000001
I've written a number of other polynomial implementations and numeric types catering to various specific scenarios. Depending on what you're trying to do, another implementation of this same library might be more appropriate. All of my polynomial projects should have feature parity, where appropriate[^1].
[^1]: For example, the ComplexPolynomial implementation may be missing certain operations (namely: Irreducibility), because such a notion does not make sense or is ill defined in the context of complex numbers).
GenericArithmetic - A core math library. Its a class of static methods that allows you to perform arithmetic on an arbitrary numeric type, represented by the generic type T, who's concrete type is decided by the caller. This is implemented using System.Linq.Expressions and reflection to resolve the type's static overloadable operator methods at runtime, so it works on all the .NET numeric types automagically, as well as any custom numeric type, provided it overloads the numeric operators and standard method names for other common functions (Min, Max, Abs, Sqrt, Parse, Sign, Log, Round, etc.). Every generic arithmetic class listed below takes a dependency on this class.
Polynomial - The original. A univariate polynomial that uses System.Numerics.BigInteger as the indeterminate type.
GenericPolynomial - A univariate polynomial library that allows the indeterminate to be of an arbitrary type, as long as said type implements operator overloading. This is implemented dynamically, at run time, calling the operator overload methods using Linq.Expressions and reflection.
CSharp11Preview.GenericMath.Polynomial - A univariate polynomial library that allows the indeterminate to be of an arbitrary type, but this version is implemented using C# 11's new Generic Math via static virtual members in interfaces.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 is compatible. net5.0-windows net5.0-windows was computed. net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 is compatible. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 is compatible. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 is compatible. |
| .NET Framework | net45 net45 is compatible. net451 net451 was computed. net452 net452 was computed. net46 net46 is compatible. net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 is compatible. net48 net48 is compatible. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on ExtendedNumerics.BigDecimal:
| Package | Downloads |
|---|---|
|
NPOI
.NET port of Apache POI |
|
|
NCalc.Core
Assembly with the core logic of NCalc. |
|
|
FirstQuad.DynamicTree.Server
Shared utilities for web applications |
|
|
ZnNCalcSync
莥įŽåŧæ |
|
|
AlliedBits.NCalc
This package by Allied Bits offers a number of advanced features compared to the original NCalc project. NCalc is a fast and lightweight expression evaluator library for .NET, designed for flexibility and high performance. It supports a wide range of mathematical and logical operations and flow control statements (loops and conditions). NCalc can parse any expression and evaluate the result, including static or dynamic parameters and custom functions. NCalc targets .NET 10, .NET 9, .NET 8, .NET Standard 2.0, and NET Framework 4.6.2 and later. |
Showing the top 4 popular GitHub repositories that depend on ExtendedNumerics.BigDecimal:
| Repository | Stars |
|---|---|
|
nissl-lab/npoi
a .NET library that can read/write Office formats without Microsoft Office installed. No COM+, no interop.
|
|
|
ncalc/ncalc
NCalc is a fast and lightweight expression evaluator library for .NET, designed for flexibility and high performance. It supports a wide range of mathematical and logical operations.
|
|
|
elgarf/vMixUTC
Customizable controller for vMix
|
|
| chen-junji/YouYouFramework |
| Version | Downloads | Last Updated |
|---|---|---|
| 3003.2.0.161 | 2,080 | 6/10/2026 |
| 3003.1.0.157 | 1,302 | 6/6/2026 |
| 3003.0.0.346 | 565,032 | 12/12/2025 |
| 3002.0.0.346 | 3,079 | 12/12/2025 |
| 3001.1.0.233 | 290,197 | 8/22/2025 |
| 3001.0.1.201 | 293,797 | 7/20/2025 |
| 3001.0.0.199 | 5,131 | 7/19/2025 |
| 3000.0.4.132 | 114,988 | 5/12/2025 |
| 3000.0.3.40 | 427,483 | 2/10/2025 |
| 3000.0.2.358 | 123,469 | 12/23/2024 |
| 3000.0.1.312 | 242,754 | 11/7/2024 |
| 3000.0.0.280 | 359,021 | 10/6/2024 |
| 2025.1005.0.264 | 47,482 | 9/20/2024 |
| 2025.1004.0.247 | 56,541 | 9/3/2024 |
| 2025.1003.0.225 | 17,194 | 8/12/2024 |
| 2025.1002.0.190 | 100,319 | 7/8/2024 |
| 2025.1001.2.129 | 20,724,362 | 5/8/2024 |
| 2025.1000.2.122 | 8,762 | 5/1/2024 |
| 2025.1000.1.121 | 4,673 | 4/30/2024 |