Derived Math Functions

Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Derived Math Functions

Visual Studio .NET 2003

The following is a list of non-intrinsic math functions that can be derived from the intrinsic math functions:

Function
Sec ant (Sec (x)) Cosec ant (Csc(x)) Cotangent (Ctan(x)) Inverse sine (Asin(x)) Inverse c osine (Acos(x)) Inverse sec ant (Asec (x)) Inverse c osec ant (Acsc(x)) Inverse c otangent (Acot(x)) Hyperbolic sine (Sinh(x)) Hyperbolic cosine (Cosh(x)) Hyperbolic tangent (Tanh(x)) Hyperbolic sec ant (Sec h(x)) Hyperbolic cosecant (Csc h(x))

Derived equivalents
1 / Cos(x) 1 / Sin(x) 1 / Tan(x) Atan(x / Sqrt(-x * x + 1)) Atan(-x / Sqrt(-x * x + 1)) + 2 * Atan(1) 2 * Atan(1) Atan(Sign(x) / Sqrt(x * x 1)) Atan(Sign(x) / Sqrt(x * x 1)) 2 * Atan(1) - Atan(x) (Exp(x) Exp(-x)) / 2 (Exp(x) + Exp(-x)) / 2 (Exp(x) Exp(-x)) / (Exp(x) + Exp(-x)) 2 / (Exp(x) + Exp(-x)) 2 / (Exp(x) Exp(-x))

Hyperbolic cotangent (Coth(x)) (Exp(x) + Exp(-x)) / (Exp(x) Exp(-x)) Inverse hyperbolic sine (Asinh(x)) Inverse hyperbolic cosine (Acosh(x)) Inverse hyperbolic tangent (Atanh(x)) Inverse hyperbolic secant (AsecH(x)) Inverse hyperbolic cosecant (Acsch(x)) Inverse hyperbolic cotangent (Acoth(x)) Requirements Namespace: System.Math Log(x + Sqrt(x * x + 1)) Log(x + Sqrt(x * x 1)) Log((1 + x) / (1 x)) / 2 Log((Sqrt(-x * x + 1) + 1) / x) Log((Sign(x) * Sqrt(x * x + 1) + 1) / x) Log((x + 1) / (x 1)) / 2

Assembly: msc orlib (in mscorlib.dll) See Also Math Func tions

2011 Mic rosoft. All rights reserved.

You might also like