Gapotchenko.FX.Math
2026.5.3
Prefix Reserved
dotnet add package Gapotchenko.FX.Math --version 2026.5.3
NuGet\Install-Package Gapotchenko.FX.Math -Version 2026.5.3
<PackageReference Include="Gapotchenko.FX.Math" Version="2026.5.3" />
<PackageVersion Include="Gapotchenko.FX.Math" Version="2026.5.3" />
<PackageReference Include="Gapotchenko.FX.Math" />
paket add Gapotchenko.FX.Math --version 2026.5.3
#r "nuget: Gapotchenko.FX.Math, 2026.5.3"
#:package Gapotchenko.FX.Math@2026.5.3
#addin nuget:?package=Gapotchenko.FX.Math&version=2026.5.3
#tool nuget:?package=Gapotchenko.FX.Math&version=2026.5.3
Overview
The module provides extended math primitives.
Extended System.Math Functionality
System.Math is a static class in the .NET Base Class Library (BCL) that provides commonly used mathematical operations. While comprehensive, its API leaves some practical gaps.
The Gapotchenko.FX.Math module complements System.Math class by extending its functionality to address those limitations.
Min/Max for Three Values
The conventional System.Math class provides ubiquitous Min/Max primitives for two values.
However, such a limitation on number of values was proven counter-productive on more than several occasions.
Gapotchenko.FX.Math fixes that by providing Min/Max operations for three values:
using Gapotchenko.FX.Math;
using System;
Console.WriteLine(Math.Max(1, 2, 3));
Min/Max for Any Comparable Type
Ever found yourself trying to find the maximum System.DateTime value? Or System.Version?
Gapotchenko.FX.Math module provides Min/Max operations for any comparable type:
using Gapotchenko.FX.Math;
using System;
var currentProgress = new DateTime(2012, 1, 1);
var desiredProgress = new DateTime(2026, 1, 1);
var fxProgress = Math.Max(currentProgress, desiredProgress);
Console.WriteLine(fxProgress);
MathEx
MathEx class provided by Gapotchenko.FX.Math module offers extended mathematical functions.
It is designed as a natural addendum to the standard System.Math class.
Some of the functionality provided by MathEx class is outlined below.
Factorial
The MathEx.Factorial function computes the factorial of a given number:
using Gapotchenko.FX.Math;
Console.WriteLine(MathEx.Factorial(5));
Commonly Used Types
Gapotchenko.FX.Math.MathEx
Other Modules
Let's continue with a look at some other modules provided by Gapotchenko.FX:
- Gapotchenko.FX
- Gapotchenko.FX.AppModel.Information
- Gapotchenko.FX.Collections
- Gapotchenko.FX.Console
- Gapotchenko.FX.Data
- Gapotchenko.FX.Diagnostics
- Gapotchenko.FX.IO
- Gapotchenko.FX.Linq
- ➴ Gapotchenko.FX.Math
- Gapotchenko.FX.Memory
- Gapotchenko.FX.Security.Cryptography
- Gapotchenko.FX.Text
- Gapotchenko.FX.Threading
- Gapotchenko.FX.Tuples
- Gapotchenko.FX.Versioning
Or look at the full list of modules.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.7.2
- Gapotchenko.FX (>= 2026.5.3)
- System.ValueTuple (>= 4.6.2)
-
.NETStandard 2.0
- Gapotchenko.FX (>= 2026.5.3)
-
.NETStandard 2.1
- Gapotchenko.FX (>= 2026.5.3)
-
net10.0
- Gapotchenko.FX (>= 2026.5.3)
-
net8.0
- Gapotchenko.FX (>= 2026.5.3)
-
net9.0
- Gapotchenko.FX (>= 2026.5.3)
NuGet packages (5)
Showing the top 5 NuGet packages that depend on Gapotchenko.FX.Math:
| Package | Downloads |
|---|---|
|
Gapotchenko.FX.Profiles.Core
Represents the Core profile of Gapotchenko.FX toolkit. |
|
|
Gapotchenko.FX.Math.Combinatorics
Provides math operations for combinatorics. |
|
|
Gapotchenko.FX.Math.Intervals
Provides data structures and primitives for working with intervals. |
|
|
Gapotchenko.FX.Math.Metrics
Provides math metrics algorithms. |
|
|
Gapotchenko.FX.Math.Graphs
Provides data structures and primitives for working with abstract graphs of objects. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2026.5.3 | 318 | 2/24/2026 |
| 2026.4.2 | 335 | 2/4/2026 |
| 2026.3.5 | 332 | 1/29/2026 |
| 2026.2.2 | 343 | 1/25/2026 |
| 2026.1.5 | 341 | 1/13/2026 |
| 2025.1.45 | 418 | 12/25/2025 |
| 2025.1.27-beta | 427 | 10/8/2025 |
| 2025.1.26-beta | 438 | 8/30/2025 |
| 2025.1.25-beta | 1,079 | 7/22/2025 |
| 2025.1.24-beta | 571 | 7/16/2025 |
| 2025.1.23-beta | 690 | 7/12/2025 |
| 2024.2.5 | 604 | 12/31/2024 |
| 2024.1.3 | 514 | 11/10/2024 |
| 2022.2.7 | 2,472 | 5/1/2022 |
| 2022.2.5 | 2,204 | 5/1/2022 |
| 2022.1.4 | 2,263 | 4/6/2022 |
| 2021.2.21 | 2,328 | 1/21/2022 |
| 2021.2.20 | 2,222 | 1/17/2022 |
| 2021.1.5 | 1,682 | 7/6/2021 |