Encontrar la tangente hiperbólica inversa del número complejo en Golang

El lenguaje Go brinda soporte incorporado para constantes básicas y funciones matemáticas para números complejos con la ayuda del paquete cmplx. Puede encontrar la tangente hiperbólica inversa del número complejo especificado con la ayuda de la función Atanh() proporcionada por el paquete math/cmplx. Por lo tanto, debe agregar un paquete matemático/cmplx en su programa con la ayuda de la palabra clave de importación para acceder a la función Atanh().

Sintaxis:

func Atanh(x complex128) complex128

Discutamos este concepto con la ayuda de los ejemplos dados:

Ejemplo 1:

// Golang program to illustrate how to find the
// Inverse Hyperbolic Tangent of Complex Number
  
package main
  
import (
    "fmt"
    "math/cmplx"
)
  
// Main function
func main() {
  
    // Finding the inverse hyperbolic tangent 
    // of the specified complex number
    // Using Atanh() function
    res_1 := cmplx.Atanh(2 + 5i)
    res_2 := cmplx.Atanh(-9 + 8i)
    res_3 := cmplx.Atanh(-5 - 7i)
  
    // Displaying the result
    fmt.Println("Result 1:", res_1)
    fmt.Println("Result 2:", res_2)
    fmt.Println("Result 3:", res_3)
}

Producción:

Result 1: (0.06706599664866984+1.3992843565845448i)
Result 2: (-0.0619590409761453+1.5154677162079488i)
Result 3: (-0.06706599664866986-1.4760562478543229i)

Ejemplo 2:

// Golang program to illustrate how to find
// Inverse Hyperbolic Tangent of Complex Number
package main
  
import (
    "fmt"
    "math/cmplx"
)
  
// Main function
func main() {
  
    cnumber_1 := complex(5, 7)
    cnumber_2 := complex(6, 9)
  
    // Finding inverse hyperbolic tangent
    cvalue_1 := cmplx.Atanh(cnumber_1)
    cvalue_2 := cmplx.Atanh(cnumber_2)
  
    // Sum of two inverse hyperbolic tangent values
    res := cvalue_1 + cvalue_2
  
    // Displaying results
    fmt.Println("Complex Number 1: ", cnumber_1)
    fmt.Println("Inverse hyperbolic tangent 1: ", cvalue_1)
  
    fmt.Println("Complex Number 2: ", cnumber_2)
    fmt.Println("Inverse hyperbolic tangent 2: ", cvalue_2)
    fmt.Println("Sum of inverse hyperbolic tangents : ", res)
  
}

Producción:

Complex Number 1:  (5+7i)
Inverse hyperbolic tangent 1:  (0.06706599664866984+1.4760562478543229i)
Complex Number 2:  (6+9i)
Inverse hyperbolic tangent 2:  (0.051023839085878805+1.4938239945657217i)
Sum of inverse hyperbolic tangents :  (0.11808983573454865+2.969880242420045i)

Publicación traducida automáticamente

Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *