Lyo.Mathematics 2.0.0

dotnet add package Lyo.Mathematics --version 2.0.0
                    
NuGet\Install-Package Lyo.Mathematics -Version 2.0.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="Lyo.Mathematics" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Lyo.Mathematics" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Lyo.Mathematics" />
                    
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 Lyo.Mathematics --version 2.0.0
                    
#r "nuget: Lyo.Mathematics, 2.0.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 Lyo.Mathematics@2.0.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=Lyo.Mathematics&version=2.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Lyo.Mathematics&version=2.0.0
                    
Install as a Cake Tool

Lyo.Mathematics

C# contracts for the Lyo math stack: physical quantities as structs, 2D/3D vectors and small matrices, typed inputs/results for formulas, and a small registry so they can be discovered. Numerical implementations live in Lyo.Mathematics.Functions (F#).

Target frameworks: netstandard2.0, net10.0

Folders and namespaces

Area Namespace Purpose
Quantities Lyo.Mathematics.Quantities Strongly typed SI-oriented values (mass, length, angles, …) with operators and factory methods.
Vectors Lyo.Mathematics.Vectors Vector3D, Vector2D. Normalize, magnitude, cross/dot (3D), angles, projections.
Matrices Lyo.Mathematics.Matrices Matrix3x3, Matrix2x2. Element storage for linear algebra functions.
Models Lyo.Mathematics.Models DTO-style struct/record inputs and results for calculus, statistics, finance, physics, etc.
Unit enums Lyo.Mathematics.Units MassUnit, LengthUnit, TimeUnit, AngleUnit for conversions or display where used.
Registry Lyo.Mathematics.Registry FormulaDescriptor, MathematicsFormulaRegistry. Curated ids for docs or UIs.
(root) Lyo.Mathematics MathematicsWorkflowExtensions. A few C# convenience extensions.

Internal helpers (MathValueGuards, MathematicsDisplayFormat) support consistent ToString() and finite/non-negative validation on quantity constructors.

Quantities (Lyo.Mathematics.Quantities)

Most quantities are readonly record struct types holding a canonical SI scalar (e.g. kilograms, meters) plus From* factories, common derived accessors, and arithmetic where meaningful. Non-finite or out-of-range values throw via MathValueGuards / ArgumentHelpers as documented per type.

Type SI core (conceptual)
Length meters
Mass kilograms
TimeInterval seconds
Angle radians (degree helpers included)
Area area in square meters
Volume volume in cubic meters
Velocity m/s
Acceleration m/s²
Force newtons
Momentum kg·m/s
Energy joules
Power watts
Pressure pascals
Density kg/m³
Temperature kelvin (Celsius helpers included)
Frequency hertz
ElectricCurrent amperes
Voltage volts
Resistance ohms
Capacitance farads
Torque N·m
AngularVelocity rad/s
AngularAcceleration rad/s²
AngularMomentum kg·m²/s
MomentOfInertia kg·m²
SpringConstant N/m
VolumetricFlowRate m³/s
MassFlowRate kg/s
DynamicViscosity Pa·s
KinematicViscosity m²/s
ThermalConductivity W/(m·K)
SpecificHeatCapacity J/(kg·K)
ThermalExpansionCoefficient 1/K
HeatTransferCoefficient W/(m²·K)
ModulusOfElasticity Pa
Entropy J/K
AreaMomentOfInertia m⁴
FractureToughness Pa·m^(1/2)

Matrices and vectors

  • Vector3D / Vector2D. Components, Magnitude, Normalize(), Cross (3D), Dot, Project, AngleBetween, scalar multiply, add/subtract.
  • Matrix3x3 / Matrix2x2. M11M33, Identity (2×2). Used by LinearAlgebraFunctions in the F# assembly.

Models (Lyo.Mathematics.Models)

  • Algebra / polynomials. QuadraticEquationInput, PolynomialInput, QuadraticEquationResult, LinearSystem2x2Result, LinearSystem2x2Input, ComplexNumber, Eigen2x2Result.
  • Calculus / numerics. AdaptiveIntegrationInput, NumericalIntegrationInput, OdeInput, DifferentiationInput, VectorFunctionInput, OdeStepResult, GradientDescentInput, ScalarMultivariateFunctionInput, InterpolationInput, OptimizationResult.
  • Statistics. LinearRegressionInput, WeightedValuesInput, DescriptiveStatisticsResult, LinearRegressionResult, WeightedStatisticsResult, QuartilesResult, ConfidenceIntervalResult, CovarianceCorrelationResult, distribution parameter records (BinomialDistributionParameters, NormalDistributionParameters, ExponentialDistributionParameters, PoissonDistributionParameters, GeometricDistributionParameters, UniformDistributionParameters, NegativeBinomialDistributionParameters), DistributionSummaryResult.
  • Geometry. RectangleMeasurementInput, CircleMeasurementInput, TriangleInput, RightTriangleInput.
  • Physics / engineering. ForceInput, MomentumInput, AverageVelocityInput, KineticEnergyInput, ProjectileMotionResult, ProjectileMotionInput, TorqueInput, AngularMotionInput, ImpulseInput, PowerInput, WaveInput, SpringForceInput, Collision1DResult, Collision1DInput, IdealGasLawInput, GravitationalForceInput, DensityInput, BodyMassIndexInput, OhmsLawInput, PressureInput.
  • Finance. CashFlowSeriesInput, LoanPaymentInput.
  • Linear algebra. RootFindingResult, QrDecompositionResult.

Registry

  • FormulaDescriptor. record with Category, Id, Name, Library, Description, Signature (human-oriented hint string).
  • MathematicsFormulaRegistry.All. Small curated list of representative capabilities (QR, FFT, law of cosines, adaptive integration, arithmetic mean, descriptive statistics, and similar). Not an exhaustive index of every function. For that, see the Functions README and IDE metadata on *Functions types.

MathematicsWorkflowExtensions

Extension Description
ToMagnitudes(this ComplexNumber[] samples) double[] of Magnitude per element.
TryNormalize(this Vector3D vector, out Vector3D normalized) false and (0,0,0) if zero-length; else unit vector.

Repository

GitHub Repository

Dependencies

Generated from ProjectReference / PackageReference (same model as docs/Lyo.ProjectGraph.html).

  • Lyo.Exceptions (direct, lyo)
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 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 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 (4)

Showing the top 4 NuGet packages that depend on Lyo.Mathematics:

Package Downloads
Lyo.Scientific

Scientific contracts, datasets, engineering models, chemistry and astronomy records, and unit infrastructure built on top of the Lyo mathematics stack.

Lyo.Mathematics.Functions

F# implementations for arithmetic, algebra, statistics, calculus, physics, signal processing, optimization, and numerical tools used by the Lyo mathematics stack.

Lyo.Metrics.Statistics

Statistical analysis extensions for Lyo.Metrics histograms (percentiles, quartiles, moving averages, anomaly detection). Pulls in Lyo.Mathematics and Lyo.Mathematics.Functions so the base Lyo.Metrics can stay dependency-light.

Lyo.Scientific.Functions

F# scientific calculations for chemistry, astronomy, thermodynamics, fluid dynamics, compressible flow, and solid mechanics built on top of the Lyo scientific and mathematics contracts.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.0 232 9/9/2026
1.0.13 251 8/25/2026
1.0.11 245 8/23/2026
1.0.9 251 8/22/2026
1.0.6 238 8/20/2026
1.0.4 239 8/20/2026
1.0.3 240 8/19/2026
1.0.2 245 8/19/2026
1.0.1 243 8/18/2026
1.0.0 239 8/16/2026