EllipticCurves 3.7.0

dotnet add package EllipticCurves --version 3.7.0
                    
NuGet\Install-Package EllipticCurves -Version 3.7.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EllipticCurves" Version="3.7.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EllipticCurves" Version="3.7.0" />
                    
Directory.Packages.props
<PackageReference Include="EllipticCurves" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add EllipticCurves --version 3.7.0
                    
#r "nuget: EllipticCurves, 3.7.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package EllipticCurves@3.7.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=EllipticCurves&version=3.7.0
                    
Install as a Cake Addin
#tool nuget:?package=EllipticCurves&version=3.7.0
                    
Install as a Cake Tool

EllipticCurves

A managed C# library for elliptic curves over the rationals and finite fields, targeting .NET Standard 2.0. Native computations run offline without PARI, Sage, Magma or other mathematical software. LMFDB integration is optional.

This package contains the library. The Windows desktop Elliptic Curves Explorer and the Console command-line tool are separate applications in the repository.

using EllipticCurves;

var e = new EllipticCurveQ(0, 0, 1, -1, 0);  // 37.a1
var p = new EllipticCurvePoint(0, 0);

var twice = e.Double(p);
var conductor = e.Conductor;                 // 37
var bounds = e.GetRankBounds();
var rank = bounds.ExactRank;                 // null unless proved
var local = e.GetLocalData(37);
var height = e.CanonicalHeight(p);           // certified rational enclosure
var periods = e.GetPeriods();                // on the global minimal model
var count = e.CountPoints(5);                // 8, including infinity
var finite = e.ReduceModuloPrime(5);

Capabilities

  • Exact rational arithmetic, invariants, point arithmetic, rational torsion, minimal models, isomorphisms and quadratic twists.
  • Conductors with prime/exponent factorizations from the same calculation, configurable parallel factorization, root numbers, local reduction data and Tamagawa numbers.
  • General 2-descent and descent by 2-isogeny, with proved algebraic rank bounds.
  • Certified rank lower bounds from supplied rational points, without full descent.
  • Numerical central L-function derivatives and analytic rank estimates, with separate rigorous certificates for analytic ranks 0 and 1.
  • Certified canonical/local heights, subgroup regulators, periods, and Faltings heights.
  • Subgroup saturation at explicitly requested primes and exact rational division.
  • Fourier coefficients, Frobenius traces, rational CM recognition, Velu isogenies with pointwise rational kernels, and dual 2-isogenies.
  • Prime-field curves, arithmetic, direct point counting and enumeration, including characteristics 2 and 3.
  • Exact finite extensions F_(p^k) with proved irreducible defining polynomials, curve arithmetic, counting by x-coordinate and bounded enumeration of points.
  • Numerical elliptic logarithms of rational points on both real components.
  • Optional cached LMFDB data, including generators, heights, periods and isogeny-class metadata, with offline snapshot parsing.

Scope and limits

Point searches are bounded. Saturation certifies only the requested primes and does not establish a full Mordell-Weil basis. Work limits can leave rank bounds incomplete. Numerical estimates and stored LMFDB values are distinguished from proofs; the library does not compute the Tate-Shafarevich group order.

Finite-field counting uses direct search, not SEA. Extension-field point counting visits q x-coordinates, with a default limit of 1000000. Point enumeration still checks q^2 coordinate pairs with the same default limit. General isogeny-class discovery, higher descents and curves over general number fields are outside this release.

See the repository README for examples and the algorithm notes for ranks, heights, periods and saturation, coefficients, division, isogenies and prime fields, and Faltings heights and finite extensions.

Licensed under MIT.

Product 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 was computed.  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 was computed.  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 was computed.  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 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.7.0 63 9/16/2026
3.6.0 59 9/16/2026
3.5.0 52 9/16/2026
3.4.0 62 9/12/2026
3.3.0 66 9/11/2026
3.2.0 65 9/11/2026
3.1.0 63 9/11/2026
3.0.0 68 9/10/2026
2.1.0 80 9/9/2026
2.0.0 71 9/9/2026
1.1.0 271 12/14/2025
1.0.2 331 10/15/2025
1.0.1 206 10/14/2025
1.0.0 198 10/14/2025