Math Class

Definition

Provides constants and static methods for trigonometric, logarithmic, and other common mathematical functions.

public ref class Math abstract sealed
public ref class Math sealed
public static class Math
public sealed class Math
type Math = class
Public Class Math
Public NotInheritable Class Math
Inheritance
Math

Examples

The following example uses several mathematical and trigonometric functions from the Math class to calculate the inner angles of a trapezoid.

/// <summary>
/// The following class represents simple functionality of the trapezoid.
/// </summary>
using namespace System;

public ref class MathTrapezoidSample
{
private:
   double m_longBase;
   double m_shortBase;
   double m_leftLeg;
   double m_rightLeg;

public:
   MathTrapezoidSample( double longbase, double shortbase, double leftLeg, double rightLeg )
   {
      m_longBase = Math::Abs( longbase );
      m_shortBase = Math::Abs( shortbase );
      m_leftLeg = Math::Abs( leftLeg );
      m_rightLeg = Math::Abs( rightLeg );
   }


private:
   double GetRightSmallBase()
   {
      return (Math::Pow( m_rightLeg, 2.0 ) - Math::Pow( m_leftLeg, 2.0 ) + Math::Pow( m_longBase, 2.0 ) + Math::Pow( m_shortBase, 2.0 ) - 2 * m_shortBase * m_longBase) / (2 * (m_longBase - m_shortBase));
   }


public:
   double GetHeight()
   {
      double x = GetRightSmallBase();
      return Math::Sqrt( Math::Pow( m_rightLeg, 2.0 ) - Math::Pow( x, 2.0 ) );
   }

   double GetSquare()
   {
      return GetHeight() * m_longBase / 2.0;
   }

   double GetLeftBaseRadianAngle()
   {
      double sinX = GetHeight() / m_leftLeg;
      return Math::Round( Math::Asin( sinX ), 2 );
   }

   double GetRightBaseRadianAngle()
   {
      double x = GetRightSmallBase();
      double cosX = (Math::Pow( m_rightLeg, 2.0 ) + Math::Pow( x, 2.0 ) - Math::Pow( GetHeight(), 2.0 )) / (2 * x * m_rightLeg);
      return Math::Round( Math::Acos( cosX ), 2 );
   }

   double GetLeftBaseDegreeAngle()
   {
      double x = GetLeftBaseRadianAngle() * 180 / Math::PI;
      return Math::Round( x, 2 );
   }

   double GetRightBaseDegreeAngle()
   {
      double x = GetRightBaseRadianAngle() * 180 / Math::PI;
      return Math::Round( x, 2 );
   }

};

int main()
{
   MathTrapezoidSample^ trpz = gcnew MathTrapezoidSample( 20.0,10.0,8.0,6.0 );
   Console::WriteLine( "The trapezoid's bases are 20.0 and 10.0, the trapezoid's legs are 8.0 and 6.0" );
   double h = trpz->GetHeight();
   Console::WriteLine( "Trapezoid height is: {0}", h.ToString() );
   double dxR = trpz->GetLeftBaseRadianAngle();
   Console::WriteLine( "Trapezoid left base angle is: {0} Radians", dxR.ToString() );
   double dyR = trpz->GetRightBaseRadianAngle();
   Console::WriteLine( "Trapezoid right base angle is: {0} Radians", dyR.ToString() );
   double dxD = trpz->GetLeftBaseDegreeAngle();
   Console::WriteLine( "Trapezoid left base angle is: {0} Degrees", dxD.ToString() );
   double dyD = trpz->GetRightBaseDegreeAngle();
   Console::WriteLine( "Trapezoid left base angle is: {0} Degrees", dyD.ToString() );
}
/// <summary>
/// The following class represents simple functionality of the trapezoid.
/// </summary>
using System;

namespace MathClassCS
{
    class MathTrapezoidSample
    {
        private double m_longBase;
        private double m_shortBase;
        private double m_leftLeg;
        private double m_rightLeg;

        public MathTrapezoidSample(double longbase, double shortbase, double leftLeg, double rightLeg)
        {
            m_longBase = Math.Abs(longbase);
            m_shortBase = Math.Abs(shortbase);
            m_leftLeg = Math.Abs(leftLeg);
            m_rightLeg = Math.Abs(rightLeg);
        }

        private double GetRightSmallBase()
        {
            return (Math.Pow(m_rightLeg,2.0) - Math.Pow(m_leftLeg,2.0) + Math.Pow(m_longBase,2.0) + Math.Pow(m_shortBase,2.0) - 2* m_shortBase * m_longBase)/ (2*(m_longBase - m_shortBase));
        }

        public double GetHeight()
        {
            double x = GetRightSmallBase();
            return Math.Sqrt(Math.Pow(m_rightLeg,2.0) - Math.Pow(x,2.0));
        }

        public double GetSquare()
        {
            return GetHeight() * m_longBase / 2.0;
        }

        public double GetLeftBaseRadianAngle()
        {
            double sinX = GetHeight()/m_leftLeg;
            return Math.Round(Math.Asin(sinX),2);
        }

        public double GetRightBaseRadianAngle()
        {
            double x = GetRightSmallBase();
            double cosX = (Math.Pow(m_rightLeg,2.0) + Math.Pow(x,2.0) - Math.Pow(GetHeight(),2.0))/(2*x*m_rightLeg);
            return Math.Round(Math.Acos(cosX),2);
        }

        public double GetLeftBaseDegreeAngle()
        {
            double x = GetLeftBaseRadianAngle() * 180/ Math.PI;
            return Math.Round(x,2);
        }

        public double GetRightBaseDegreeAngle()
        {
            double x = GetRightBaseRadianAngle() * 180/ Math.PI;
            return Math.Round(x,2);
        }

        static void Main(string[] args)
        {
            MathTrapezoidSample trpz = new MathTrapezoidSample(20.0, 10.0, 8.0, 6.0);
            Console.WriteLine("The trapezoid's bases are 20.0 and 10.0, the trapezoid's legs are 8.0 and 6.0");
            double h = trpz.GetHeight();
            Console.WriteLine("Trapezoid height is: " + h.ToString());
            double dxR = trpz.GetLeftBaseRadianAngle();
            Console.WriteLine("Trapezoid left base angle is: " + dxR.ToString() + " Radians");
            double dyR = trpz.GetRightBaseRadianAngle();
            Console.WriteLine("Trapezoid right base angle is: " + dyR.ToString() + " Radians");
            double dxD = trpz.GetLeftBaseDegreeAngle();
            Console.WriteLine("Trapezoid left base angle is: " + dxD.ToString() + " Degrees");
            double dyD = trpz.GetRightBaseDegreeAngle();
            Console.WriteLine("Trapezoid left base angle is: " + dyD.ToString() + " Degrees");
        }
    }
}
open System

/// The following class represents simple functionality of the trapezoid.
type MathTrapezoidSample(longbase, shortbase, leftLeg, rightLeg) =
    member _.GetRightSmallBase() =
        (Math.Pow(rightLeg, 2.) - Math.Pow(leftLeg, 2.) + Math.Pow(longbase, 2.) + Math.Pow(shortbase, 2.) - 2. * shortbase * longbase) / (2. * (longbase - shortbase))

    member this.GetHeight() =
        let x = this.GetRightSmallBase()
        Math.Sqrt(Math.Pow(rightLeg, 2.) - Math.Pow(x, 2.))

    member this.GetSquare() =
        this.GetHeight() * longbase / 2.

    member this.GetLeftBaseRadianAngle() =
        let sinX = this.GetHeight() / leftLeg
        Math.Round(Math.Asin sinX,2)

    member this.GetRightBaseRadianAngle() =
        let x = this.GetRightSmallBase()
        let cosX = (Math.Pow(rightLeg, 2.) + Math.Pow(x, 2.) - Math.Pow(this.GetHeight(), 2.))/(2. * x * rightLeg)
        Math.Round(Math.Acos cosX, 2)

    member this.GetLeftBaseDegreeAngle() =
        let x = this.GetLeftBaseRadianAngle() * 180. / Math.PI
        Math.Round(x, 2)

    member this.GetRightBaseDegreeAngle() =
        let x = this.GetRightBaseRadianAngle() * 180. / Math.PI
        Math.Round(x, 2)

let trpz = MathTrapezoidSample(20., 10., 8., 6.)
printfn "The trapezoid's bases are 20.0 and 10.0, the trapezoid's legs are 8.0 and 6.0"
let h = trpz.GetHeight()
printfn $"Trapezoid height is: {h}"
let dxR = trpz.GetLeftBaseRadianAngle()
printfn $"Trapezoid left base angle is: {dxR} Radians"
let dyR = trpz.GetRightBaseRadianAngle()
printfn $"Trapezoid right base angle is: {dyR} Radians"
let dxD = trpz.GetLeftBaseDegreeAngle()
printfn $"Trapezoid left base angle is: {dxD} Degrees"
let dyD = trpz.GetRightBaseDegreeAngle()
printfn $"Trapezoid left base angle is: {dyD} Degrees"
'The following class represents simple functionality of the trapezoid.
Class MathTrapezoidSample

    Private m_longBase As Double
    Private m_shortBase As Double
    Private m_leftLeg As Double
    Private m_rightLeg As Double

    Public Sub New(ByVal longbase As Double, ByVal shortbase As Double, ByVal leftLeg As Double, ByVal rightLeg As Double)
        m_longBase = Math.Abs(longbase)
        m_shortBase = Math.Abs(shortbase)
        m_leftLeg = Math.Abs(leftLeg)
        m_rightLeg = Math.Abs(rightLeg)
    End Sub

    Private Function GetRightSmallBase() As Double
        GetRightSmallBase = (Math.Pow(m_rightLeg, 2) - Math.Pow(m_leftLeg, 2) + Math.Pow(m_longBase, 2) + Math.Pow(m_shortBase, 2) - 2 * m_shortBase * m_longBase) / (2 * (m_longBase - m_shortBase))
    End Function

    Public Function GetHeight() As Double
        Dim x As Double = GetRightSmallBase()
        GetHeight = Math.Sqrt(Math.Pow(m_rightLeg, 2) - Math.Pow(x, 2))
    End Function

    Public Function GetSquare() As Double
        GetSquare = GetHeight() * m_longBase / 2
    End Function

    Public Function GetLeftBaseRadianAngle() As Double
        Dim sinX As Double = GetHeight() / m_leftLeg
        GetLeftBaseRadianAngle = Math.Round(Math.Asin(sinX), 2)
    End Function

    Public Function GetRightBaseRadianAngle() As Double
        Dim x As Double = GetRightSmallBase()
        Dim cosX As Double = (Math.Pow(m_rightLeg, 2) + Math.Pow(x, 2) - Math.Pow(GetHeight(), 2)) / (2 * x * m_rightLeg)
        GetRightBaseRadianAngle = Math.Round(Math.Acos(cosX), 2)
    End Function

    Public Function GetLeftBaseDegreeAngle() As Double
        Dim x As Double = GetLeftBaseRadianAngle() * 180 / Math.PI
        GetLeftBaseDegreeAngle = Math.Round(x, 2)
    End Function

    Public Function GetRightBaseDegreeAngle() As Double
        Dim x As Double = GetRightBaseRadianAngle() * 180 / Math.PI
        GetRightBaseDegreeAngle = Math.Round(x, 2)
    End Function

    Public Shared Sub Main()
        Dim trpz As MathTrapezoidSample = New MathTrapezoidSample(20, 10, 8, 6)
        Console.WriteLine("The trapezoid's bases are 20.0 and 10.0, the trapezoid's legs are 8.0 and 6.0")
        Dim h As Double = trpz.GetHeight()
        Console.WriteLine("Trapezoid height is: " + h.ToString())
        Dim dxR As Double = trpz.GetLeftBaseRadianAngle()
        Console.WriteLine("Trapezoid left base angle is: " + dxR.ToString() + " Radians")
        Dim dyR As Double = trpz.GetRightBaseRadianAngle()
        Console.WriteLine("Trapezoid right base angle is: " + dyR.ToString() + " Radians")
        Dim dxD As Double = trpz.GetLeftBaseDegreeAngle()
        Console.WriteLine("Trapezoid left base angle is: " + dxD.ToString() + " Degrees")
        Dim dyD As Double = trpz.GetRightBaseDegreeAngle()
        Console.WriteLine("Trapezoid left base angle is: " + dyD.ToString() + " Degrees")
    End Sub
End Class

Fields

E

Represents the natural logarithmic base, specified by the constant, e.

PI

Represents the ratio of the circumference of a circle to its diameter, specified by the constant, π.

Tau

Represents the number of radians in one turn, specified by the constant, τ.

Methods

Abs(Decimal)

Returns the absolute value of a Decimal number.

Abs(Double)

Returns the absolute value of a double-precision floating-point number.

Abs(Int16)

Returns the absolute value of a 16-bit signed integer.

Abs(Int32)

Returns the absolute value of a 32-bit signed integer.

Abs(Int64)

Returns the absolute value of a 64-bit signed integer.

Abs(IntPtr)

Returns the absolute value of a native signed integer.

Abs(SByte)

Returns the absolute value of an 8-bit signed integer.

Abs(Single)

Returns the absolute value of a single-precision floating-point number.

Acos(Double)

Returns the angle whose cosine is the specified number.

Acosh(Double)

Returns the angle whose hyperbolic cosine is the specified number.

Asin(Double)

Returns the angle whose sine is the specified number.

Asinh(Double)

Returns the angle whose hyperbolic sine is the specified number.

Atan(Double)

Returns the angle whose tangent is the specified number.

Atan2(Double, Double)

Returns the angle whose tangent is the quotient of two specified numbers.

Atanh(Double)

Returns the angle whose hyperbolic tangent is the specified number.

BigMul(Int32, Int32)

Produces the full product of two 32-bit numbers.

BigMul(Int64, Int64, Int64)

Produces the full product of two 64-bit numbers.

BigMul(UInt64, UInt64, UInt64)

Produces the full product of two unsigned 64-bit numbers.

BitDecrement(Double)

Returns the largest value that compares less than a specified value.

BitIncrement(Double)

Returns the smallest value that compares greater than a specified value.

Cbrt(Double)

Returns the cube root of a specified number.

Ceiling(Decimal)

Returns the smallest integral value that is greater than or equal to the specified decimal number.

Ceiling(Double)

Returns the smallest integral value that is greater than or equal to the specified double-precision floating-point number.

Clamp(Byte, Byte, Byte)

Returns value clamped to the inclusive range of min and max.

Clamp(Decimal, Decimal, Decimal)

Returns value clamped to the inclusive range of min and max.

Clamp(Double, Double, Double)

Returns value clamped to the inclusive range of min and max.

Clamp(Int16, Int16, Int16)

Returns value clamped to the inclusive range of min and max.

Clamp(Int32, Int32, Int32)

Returns value clamped to the inclusive range of min and max.

Clamp(Int64, Int64, Int64)

Returns value clamped to the inclusive range of min and max.

Clamp(IntPtr, IntPtr, IntPtr)

Returns value clamped to the inclusive range of min and max.

Clamp(SByte, SByte, SByte)

Returns value clamped to the inclusive range of min and max.

Clamp(Single, Single, Single)

Returns value clamped to the inclusive range of min and max.

Clamp(UInt16, UInt16, UInt16)

Returns value clamped to the inclusive range of min and max.

Clamp(UInt32, UInt32, UInt32)

Returns value clamped to the inclusive range of min and max.

Clamp(UInt64, UInt64, UInt64)

Returns value clamped to the inclusive range of min and max.

Clamp(UIntPtr, UIntPtr, UIntPtr)

Returns value clamped to the inclusive range of min and max.

CopySign(Double, Double)

Returns a value with the magnitude of x and the sign of y.

Cos(Double)

Returns the cosine of the specified angle.

Cosh(Double)

Returns the hyperbolic cosine of the specified angle.

DivRem(Byte, Byte)

Produces the quotient and the remainder of two unsigned 8-bit numbers.

DivRem(Int16, Int16)

Produces the quotient and the remainder of two signed 16-bit numbers.

DivRem(Int32, Int32)

Produces the quotient and the remainder of two signed 32-bit numbers.

DivRem(Int32, Int32, Int32)

Calculates the quotient of two 32-bit signed integers and also returns the remainder in an output parameter.

DivRem(Int64, Int64)

Produces the quotient and the remainder of two signed 64-bit numbers.

DivRem(Int64, Int64, Int64)

Calculates the quotient of two 64-bit signed integers and also returns the remainder in an output parameter.

DivRem(IntPtr, IntPtr)

Produces the quotient and the remainder of two signed native-size numbers.

DivRem(SByte, SByte)

Produces the quotient and the remainder of two signed 8-bit numbers.

DivRem(UInt16, UInt16)

Produces the quotient and the remainder of two unsigned 16-bit numbers.

DivRem(UInt32, UInt32)

Produces the quotient and the remainder of two unsigned 32-bit numbers.

DivRem(UInt64, UInt64)

Produces the quotient and the remainder of two unsigned 64-bit numbers.

DivRem(UIntPtr, UIntPtr)

Produces the quotient and the remainder of two unsigned native-size numbers.

Exp(Double)

Returns e raised to the specified power.

Floor(Decimal)

Returns the largest integral value less than or equal to the specified decimal number.

Floor(Double)

Returns the largest integral value less than or equal to the specified double-precision floating-point number.

FusedMultiplyAdd(Double, Double, Double)

Returns (x * y) + z, rounded as one ternary operation.

IEEERemainder(Double, Double)

Returns the remainder resulting from the division of a specified number by another specified number.

ILogB(Double)

Returns the base 2 integer logarithm of a specified number.

Log(Double)

Returns the natural (base e) logarithm of a specified number.

Log(Double, Double)

Returns the logarithm of a specified number in a specified base.

Log10(Double)

Returns the base 10 logarithm of a specified number.

Log2(Double)

Returns the base 2 logarithm of a specified number.

Max(Byte, Byte)

Returns the larger of two 8-bit unsigned integers.

Max(Decimal, Decimal)

Returns the larger of two decimal numbers.

Max(Double, Double)

Returns the larger of two double-precision floating-point numbers.

Max(Int16, Int16)

Returns the larger of two 16-bit signed integers.

Max(Int32, Int32)

Returns the larger of two 32-bit signed integers.

Max(Int64, Int64)

Returns the larger of two 64-bit signed integers.

Max(IntPtr, IntPtr)

Returns the larger of two native signed integers.

Max(SByte, SByte)

Returns the larger of two 8-bit signed integers.

Max(Single, Single)

Returns the larger of two single-precision floating-point numbers.

Max(UInt16, UInt16)

Returns the larger of two 16-bit unsigned integers.

Max(UInt32, UInt32)

Returns the larger of two 32-bit unsigned integers.

Max(UInt64, UInt64)

Returns the larger of two 64-bit unsigned integers.

Max(UIntPtr, UIntPtr)

Returns the larger of two native unsigned integers.

MaxMagnitude(Double, Double)

Returns the larger magnitude of two double-precision floating-point numbers.

Min(Byte, Byte)

Returns the smaller of two 8-bit unsigned integers.

Min(Decimal, Decimal)

Returns the smaller of two decimal numbers.

Min(Double, Double)

Returns the smaller of two double-precision floating-point numbers.

Min(Int16, Int16)

Returns the smaller of two 16-bit signed integers.

Min(Int32, Int32)

Returns the smaller of two 32-bit signed integers.

Min(Int64, Int64)

Returns the smaller of two 64-bit signed integers.

Min(IntPtr, IntPtr)

Returns the smaller of two native signed integers.

Min(SByte, SByte)

Returns the smaller of two 8-bit signed integers.

Min(Single, Single)

Returns the smaller of two single-precision floating-point numbers.

Min(UInt16, UInt16)

Returns the smaller of two 16-bit unsigned integers.

Min(UInt32, UInt32)

Returns the smaller of two 32-bit unsigned integers.

Min(UInt64, UInt64)

Returns the smaller of two 64-bit unsigned integers.

Min(UIntPtr, UIntPtr)

Returns the smaller of two native unsigned integers.

MinMagnitude(Double, Double)

Returns the smaller magnitude of two double-precision floating-point numbers.

Pow(Double, Double)

Returns a specified number raised to the specified power.

ReciprocalEstimate(Double)

Returns an estimate of the reciprocal of a specified number.

ReciprocalSqrtEstimate(Double)

Returns an estimate of the reciprocal square root of a specified number.

Round(Decimal)

Rounds a decimal value to the nearest integral value, and rounds midpoint values to the nearest even number.

Round(Decimal, Int32)

Rounds a decimal value to a specified number of fractional digits, and rounds midpoint values to the nearest even number.

Round(Decimal, Int32, MidpointRounding)

Rounds a decimal value to a specified number of fractional digits using the specified rounding convention.

Round(Decimal, MidpointRounding)

Rounds a decimal value an integer using the specified rounding convention.

Round(Double)

Rounds a double-precision floating-point value to the nearest integral value, and rounds midpoint values to the nearest even number.

Round(Double, Int32)

Rounds a double-precision floating-point value to a specified number of fractional digits, and rounds midpoint values to the nearest even number.

Round(Double, Int32, MidpointRounding)

Rounds a double-precision floating-point value to a specified number of fractional digits using the specified rounding convention.

Round(Double, MidpointRounding)

Rounds a double-precision floating-point value to an integer using the specified rounding convention.

ScaleB(Double, Int32)

Returns x * 2^n computed efficiently.

Sign(Decimal)

Returns an integer that indicates the sign of a decimal number.

Sign(Double)

Returns an integer that indicates the sign of a double-precision floating-point number.

Sign(Int16)

Returns an integer that indicates the sign of a 16-bit signed integer.

Sign(Int32)

Returns an integer that indicates the sign of a 32-bit signed integer.

Sign(Int64)

Returns an integer that indicates the sign of a 64-bit signed integer.

Sign(IntPtr)

Returns an integer that indicates the sign of a native sized signed integer.

Sign(SByte)

Returns an integer that indicates the sign of an 8-bit signed integer.

Sign(Single)

Returns an integer that indicates the sign of a single-precision floating-point number.

Sin(Double)

Returns the sine of the specified angle.

SinCos(Double)

Returns the sine and cosine of the specified angle.

Sinh(Double)

Returns the hyperbolic sine of the specified angle.

Sqrt(Double)

Returns the square root of a specified number.

Tan(Double)

Returns the tangent of the specified angle.

Tanh(Double)

Returns the hyperbolic tangent of the specified angle.

Truncate(Decimal)

Calculates the integral part of a specified decimal number.

Truncate(Double)

Calculates the integral part of a specified double-precision floating-point number.

Applies to