MathTrigonometric 1.0.7

dotnet add package MathTrigonometric --version 1.0.7
NuGet\Install-Package MathTrigonometric -Version 1.0.7
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="MathTrigonometric" Version="1.0.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MathTrigonometric --version 1.0.7
#r "nuget: MathTrigonometric, 1.0.7"
#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.
// Install MathTrigonometric as a Cake Addin
#addin nuget:?package=MathTrigonometric&version=1.0.7

// Install MathTrigonometric as a Cake Tool
#tool nuget:?package=MathTrigonometric&version=1.0.7

Math Trigonometric Functions in .NET

NuGet Downloads NuGet Version

Overview

This C# library provides implementations of all standard trigonometric functions, including basic functions like sine, cosine, and tangent, as well as their hyperbolic counterparts, inverse functions, and more. This library is designed to offer a comprehensive set of tools for mathematical, engineering, and scientific applications requiring trigonometric calculations.

Missing Trigonometric Functions in .NET

The .NET includes basic trigonometric functions (sin, cos, tan, asin, acos, atan) and their hyperbolic counterparts (sinh, cosh, tanh, asinh, acosh, atanh) in the Math class. However, the following trigonometric functions are missing in .NET and are implemented in this library:

  1. Cot (Cotangent)
  2. Sec (Secant)
  3. Csc (Cosecant)
  4. Acot (Inverse Cotangent)
  5. Asec (Inverse Secant)
  6. Acsc (Inverse Cosecant)
  7. Coth (Hyperbolic Cotangent)
  8. Sech (Hyperbolic Secant)
  9. Csch (Hyperbolic Cosecant)
  10. Acoth (Inverse Hyperbolic Cotangent)
  11. Asech (Inverse Hyperbolic Secant)
  12. Acsch (Inverse Hyperbolic Cosecant)

You can find a detailed explanation of the implementation and approach in my article on Medium.

Installation

You can install this library via NuGet Package Manager. To do this, follow these steps:

  1. Open your project in Visual Studio.

  2. Go to Tools > NuGet Package Manager > Manage NuGet Packages for Solution.

  3. Search for MathTrigonometric.

  4. Select the package and click Install. Alternatively, you can install the package using the NuGet Package Manager Console:

     Install-Package MathTrigonometric
    

Functions Included

Basic Trigonometric Functions

  1. Sin

    Sine of the angle is ratio of the opposite leg to hypotenuse.

    double Sin(double a);
    
    • Input: Angle in radians (any real number).
    • Output: The sine of the input angle in range: [-1, 1].
  2. Cos

    Cosine of the angle is ratio of the adjacent leg to hypotenuse.

     double Cos(double a);
    
    • Input: Angle in radians (any real number).
    • Output: The cosine of the input angle in range: [-1, 1].
  3. Tan

    Tangent of the angle is ratio of the opposite leg to adjacent one.

     double Tan(double a);
    
    • Input: Angle in radians (any real number).
    • Output: The tangent of the input angle (any real number).
  4. Cot

    Cotangent of the angle is ratio of the adjacent leg to opposite one.

     double Cot(double a);
    
    • Input: Angle in radians (any real number).
    • Output: The cotangent of the input angle (any real number).
  5. Sec

    Secant of the angle is ratio of the hypotenuse to adjacent leg.

     double Sec(double a);
    
    • Input: Angle in radians (any real number).
    • Output: The secant of the input angle in range: (-∞, -1] ∪ [1, ∞).
  6. Csc

    Cosecant of the angle is ratio of the hypotenuse to opposite leg.

     double Csc(double a);
    
    • Input: Angle in radians (any real number).
    • Output: The cosecant of the input angle in range: (-∞, -1] ∪ [1, ∞).

Inverse Trigonometric Functions

  1. Asin

    Arc sine is inverse of the Sine function.

     double Asin(double d);
    
    • Input: Value in range: [-1, 1].
    • Output: Angle in radians is limited to the range [−π/2, π/2].
  2. Acos

    Arc cosine is inverse of the Cosine function.

     double Acos(double d);
    
    • Input: Value in range: [-1, 1].
    • Output: Angle in radians is limited to the range [0, π].
  3. Atan

    Arc tangent is inverse of the Tangent function.

     double Atan(double d);
    
    • Input: Any real number.
    • Output: Angle in radians is limited to the range (−π/2, π/2).
  4. Acot

    Arc cotangent is inverse of the Cotangent function.

    double Acot(double d);
    
    • Input: Any real number.
    • Output: Angle in radians is limited to the range (0, π).
  5. Asec

    Arc secant is inverse of the Secant function.

    double Asec(double d);
    
    • Input: Value in range: (-∞, -1] ∪ [1, ∞).
    • Output: Angle in radians is limited to the range [0, π/2)∪(π/2, π].
  6. Acsc

    Arc cosecant is inverse of the Cosecant function.

    double Acsc(double d);
    
    • Input: Value in range: (-∞, -1] ∪ [1, ∞).
    • Output: Angle in radians is limited to the range [−π/2, 0)∪(0, π/2].

Hyperbolic Trigonometric Functions

  1. Sinh

    Hyperbolic sine is defined as Sinh(x) = (e^x − e^−x)/2.

    double Sinh(double x);
    
    • Input: Any real number.
    • Output: Value (any real number).
  2. Cosh

    Hyperbolic cosine is defined as Cosh(x) = (e^x + e^−x)/2.

    double Cosh(double x);
    
    • Input: Any real number.
    • Output: Value in range: [1, +∞).
  3. Tanh

    Hyperbolic tangent is defined as Tanh(x) = (e^x − e^−x)/(e^x + e^−x).

    double Tanh(double x);
    
    • Input: Any real number.
    • Output: Value in range: (-1, 1).
  4. Coth

    Hyperbolic cotangent is defined as Coth(x) = (e^x + e^−x)/(e^x − e^−x).

    double Coth(double x);
    
    • Input: Value in range: (−∞, 0)∪(0, +∞).
    • Output: Value in range: (−∞, -1)∪(1, +∞).
  5. Sech

    Hyperbolic secant is defined as Sech(x) = 2/(e^x + e^−x).

    double Sech(double x);
    
    • Input: Any real number.
    • Output: Value in range: (0, 1].
  6. Csch

    Hyperbolic cosecant is defined as Csch(x) = 2/(e^x − e^−x).

    double Csch(double x);
    
    • Input: Value in range: (−∞, 0)∪(0, +∞).
    • Output: Value in range: (−∞, 0)∪(0, +∞).

Inverse Hyperbolic Trigonometric Functions

  1. Asinh

    Arc-hyperbolic sine is inverse of the Hyperbolic sine function is defined as Arsinh(x) = ln[x + √(x^2 + 1)].

    double Asinh(double x);
    
    • Input: Any real number.
    • Output: Value (any real number).
  2. Acosh

    Arc-hyperbolic cosine is inverse of the Hyperbolic cosine function is defined as Arcosh(x) = ln[x + √(x^2 - 1)].

    double Acosh(double x);
    
    • Input: Value in range: [1, +∞).
    • Output: Value in range: [0, +∞).
  3. Atanh

    Arc-hyperbolic tangent is inverse of the Hyperbolic tangent function is defined as Artanh(x) = ln[(1 + x)/(1 − x)]/2.

    double Atanh(double x);
    
    • Input: Value in range: (-1, 1).
    • Output: Value (any real number).
  4. Acoth

    Arc-hyperbolic cotangent is inverse of the Hyperbolic cotangent function is defined as Arcoth(x) = ln[(1 + x)/(x − 1)]/2.

    double Acoth(double x);
    
    • Input: Value in range: (−∞, -1)∪(1, +∞).
    • Output: Value in range: (−∞, 0)∪(0, +∞).
  5. Asech

    Arc-hyperbolic secant is inverse of the Hyperbolic secant function is defined as Arsech(x) = ln([1 + √(1 − x^2)]/x).

    double Asech(double x);
    
    • Input: Value in range: (0, 1].
    • Output: Value in range: [0, +∞).
  6. Acsch

    Arc-hyperbolic cosecant is inverse of the Hyperbolic cosecant function is defined as Arcsch(x) = ln[1/x + √(1/(x^2) + 1)].

    double Acsch(double x);
    
    • Input: Value in range: (−∞, 0)∪(0, +∞).
    • Output: Value in range: (−∞, -0)∪(0, +∞).

Extra functions

  1. DegreesToRadians

    Converts degrees to radians.

    double DegreesToRadians(double degrees);
    
    • Input: Angle in degrees (any real number).
    • Output: Angle in radians (any real number).
  2. RadiansToDegrees

    Converts radians to degrees.

    double RadiansToDegrees(double radians);
    
    • Input: Angle in radians (any real number).
    • Output: Angle in degrees (any real number).

How to use trigonometry in C#

Here are some examples of how to use the trigonometric functions in this library:

Basic Trigonometric Functions

using MathTrigonometric;

class Program
{
    static void Main()
    {
        double angle = Math.PI / 4; // 45 degrees in radians

        double sine = MathTrig.Sin(angle);
        double cosine = MathTrig.Cos(angle);
        double tangent = MathTrig.Tan(angle);
        double cotangent = MathTrig.Cot(angle);
        double secant = MathTrig.Sec(angle);
        double cosecant = MathTrig.Csc(angle);

        Console.WriteLine($"Sin({angle}) = {sine}");
        Console.WriteLine($"Cos({angle}) = {cosine}");
        Console.WriteLine($"Tan({angle}) = {tangent}");
        Console.WriteLine($"Cot({angle}) = {cotangent}");
        Console.WriteLine($"Sec({angle}) = {secant}");
        Console.WriteLine($"Csc({angle}) = {cosecant}");
    }
}

Inverse Trigonometric Functions

using MathTrigonometric;

class Program
{
    static void Main()
    {
        double value = 0.5;

        double angleAsin = MathTrig.Asin(value);
        double angleAcos = MathTrig.Acos(value);
        double angleAtan = MathTrig.Atan(value);
        double angleAcot = MathTrig.Acot(value);
        double angleAsec = MathTrig.Asec(2); // sec(π/3) = 2
        double angleAcsc = MathTrig.Acsc(2); // csc(π/6) = 2

        Console.WriteLine($"Asin({value}) = {angleAsin}");
        Console.WriteLine($"Acos({value}) = {angleAcos}");
        Console.WriteLine($"Atan({value}) = {angleAtan}");
        Console.WriteLine($"Acot({value}) = {angleAcot}");
        Console.WriteLine($"Asec(2) = {angleAsec}");
        Console.WriteLine($"Acsc(2) = {angleAcsc}");
    }
}

Hyperbolic Trigonometric Functions

using MathTrigonometric;

class Program
{
    static void Main()
    {
        double value = 1.0;

        double sinh = MathTrig.Sinh(value);
        double cosh = MathTrig.Cosh(value);
        double tanh = MathTrig.Tanh(value);
        double coth = MathTrig.Coth(value);
        double sech = MathTrig.Sech(value);
        double csch = MathTrig.Csch(value);

        Console.WriteLine($"Sinh({value}) = {sinh}");
        Console.WriteLine($"Cosh({value}) = {cosh}");
        Console.WriteLine($"Tanh({value}) = {tanh}");
        Console.WriteLine($"Coth({value}) = {coth}");
        Console.WriteLine($"Sech({value}) = {sech}");
        Console.WriteLine($"Csch({value}) = {csch}");
    }
}

Inverse Hyperbolic Trigonometric Functions

using MathTrigonometric;

class Program
{
    static void Main()
    {
        double value = 0.5;

        double asinh = MathTrig.Asinh(value);
        double acosh = MathTrig.Acosh(1.5);
        double atanh = MathTrig.Atanh(value);
        double acoth = MathTrig.Acoth(2);
        double asech = MathTrig.Asech(value);
        double acsch = MathTrig.Acsch(2);

        Console.WriteLine($"Asinh({value}) = {asinh}");
        Console.WriteLine($"Acosh(1.5) = {acosh}");
        Console.WriteLine($"Atanh({value}) = {atanh}");
        Console.WriteLine($"Acoth(2) = {acoth}");
        Console.WriteLine($"Asech({value}) = {asech}");
        Console.WriteLine($"Acsch(2) = {acsch}");
    }
}

Contributing

Contributions are welcome! Please fork the repository and submit pull requests for any enhancements or bug fixes. If you enjoy my work and find it valuable, please consider becoming my sponsor on GitHub. Your support will enable me to share more open-source code. Together, we can make a positive impact in the developer community!

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contact

If you have any questions or suggestions, feel free to open an issue or contact me directly.

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. 
.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.
  • .NETStandard 2.0

    • No dependencies.

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
1.0.7 69 6/19/2024
1.0.6 72 6/19/2024
1.0.5 80 6/15/2024
1.0.4 74 6/14/2024
1.0.3 71 6/14/2024
1.0.2 72 6/14/2024
1.0.1 71 6/14/2024
1.0.0 72 6/14/2024

It targets .NET Standard 2.0 and higner version.