Home Login  |   Contact  |   About Us       Tuesday, April 23, 2024   

j0182084- Back to Home
   Skip Navigation LinksHOME ›  AREAS OF EXPERTISE  #1 ›   Complex Numbers ›  ~ Complex Functions



Skip Navigation Links.



"Complex Inverse Trigonometric Functions"
Complex Inverse Hyperbolic Methods
FCT =
ASINH(C) =
ACOSH(C) =
ATANH(C) =

Specify New Function Values = { , }



[ Initial Inverse Hyperbolic Values specified: {2,3} ]

INVERSE TRIGONOMETRIC HYPERBOLIC FUNCTIONS
Inverse Hyperbolic Sine Function

In general, the complex inverse hyperbolic functions can be expressed in terms of the complex square root and logarithmic function. The complex inverse Sinh function can be expressed in the following equation:

arcsin h(z) = log( z + √(1 + z)2)

This being the case, an Asinh method can be implemented and added to the KMP library as follows:

           public static Complex Asinh(Complex c)
           {
           return log(c + Sqrt(1.0 * c));

           }

Inverse Hyperbolic Cosine Function

Similar to the case of the complex Asinh function, a complex Acosh function can also be calculated using complex exponential functions. The complex inverse Cosh function can be represented by:

arcos h(z) = log( z + √(z)2 - 1)

Using the above equation we can add a new method to the "Complex class". (Note - Complex class is an integral part of our software library and is not shown in these examples):

           public static Complex Acosh(Complex c)
           {
           return log(c + Sqrt(c * c - 1.0));

           }

Inverse Hyperbolic Tangent Function

The complex inverse Tanh function has the following relation:

arctan h(z) = 1/2 [log(1 + z) - log(1 - z)]

The following complex Tangent method is added to the Complex class:

           public static Complex Atan(Complex c)
           {
             return 0.5 * [log(1 +c) - log(1 - c)];
           }

Testing the Inverse Hyperbolic Methods

In order to test the Inverse Hyperbolic methods as defined above, a new TestInverse Hyperbolic() static method has been added and executed. Supporting code and methods are not shown.

           static void TestInverseHyperbolic();
              {
                 ListBox1.Items.Clear();
                 ListBox2.Items.Clear();
                 ListBox3.Items.Clear();
                 ListBox4.Items.Clear();
                 ListBox1.Items.Add(" c = " + c);
                 ListBox2.Items.Add(" " + Complex.Asinh(c));
                 ListBox3.Items.Add(" " + Complex.Acosh(c));
                 ListBox4.Items.Add(" " + Complex.Atanh(c));
              }

We first defined a set of data points (2,3). The user can manipulate values and try variations on new points themselves.



Other Implementations...


Object-Oriented Implementation
Graphics and Animation
Sample Applications
Ore Extraction Optimization
Vectors and Matrices
Complex Numbers and Functions
Ordinary Differential Equations - Euler Method
Ordinary Differential Equations 2nd-Order Runge-Kutta
Ordinary Differential Equations 4th-Order Runge-Kutta
Higher Order Differential Equations
Nonlinear Systems
Numerical Integration
Numerical Differentiation
Function Evaluation


   Quotes

Consulting Services - Back to Home


Home

Home Math, Analysis,
  expertise..."

EIGENVALUE
SOLUTIONS...


> Rayleigh-Quotient Method

> Cubic Spline Method

 

Applied Mathematical Algorithms

Home

ComplexFunctions

Home

NonLinear
Home

Differentiation
Home

Integration
About Us


KMP Software Engineering is an independent multidisciplinary engineering consulting company specializing in mathematical algorithms.

      (About Us) →
Areas of
Expertise


SpecialFunctions
VectorsMatrices
OptimizationMethods
ComplexNumbers
Interpolation
CurveFitting
NonLinearSystems
LinearEquations
DistributionFunctions
NumericalDifferentiation
NumericalIntegration
DifferentialEquations
Smalltalk
FiniteBoundary
Eigenvalue
Graphics
Understanding
Mining


MiningMastery
MineralNews
MineralCommodities
MineralForum
Crystallography
Services


NumericalModeling
WebServices
MainframeServices
OutsourceServices

LINKED IN
MINE REVIEW(by G.Pacheco)
Brand





Home

Login

Contact
Since 2006 All Rights Reserved  © KMP Software Engineering LINKS | PRIVACY POLICY | LEGAL NOTICE