Función math.Pow() en Golang con ejemplos

El lenguaje Go brinda soporte incorporado para constantes básicas y funciones matemáticas para realizar operaciones en los números con la ayuda del paquete matemático. Puede encontrar el exponencial base-a de b(a**b) con la ayuda de la función Pow() proporcionada por el paquete matemático. Por lo tanto, debe agregar un paquete matemático en su programa con la ayuda de la palabra clave de importación para acceder a la función Pow().

Sintaxis:

func Pow(a, b float64) float64
  • Si Pow(a, ±0), entonces este método devolverá 1 para cualquier a.
  • Si Pow(1, b), entonces este método devolverá 1 para cualquier b.
  • Si Pow(a, 1), entonces este método devolverá a para cualquier a.
  • Si Pow(NaN, b), entonces este método devolverá NaN.
  • Si Pow(a, NaN), entonces este método devolverá NaN.
  • Si Pow(±0, b), entonces este método devolverá ± Inf para b un entero impar < 0.
  • Si Pow(±0, -Inf), este método devolverá +Inf.
  • Si Pow(±0, +Inf), este método devolverá +0.
  • Si Pow(±0, b), entonces este método devolverá +Inf para b finito < 0 y no un entero impar.
  • Si Pow(±0, b), entonces este método devolverá ± 0 para b un entero impar > 0.
  • Si Pow(±0, b), entonces este método devolverá +0 para b finito > 0 y no un entero impar.
  • Si Pow(+1, ±Inf), este método devolverá 1.
  • Si Pow(a, +Inf), entonces este método devolverá +Inf para |a| > 1.
  • Si Pow(a, -Inf), entonces este método devolverá +0 para |a| > 1.
  • Si Pow(a, +Inf), entonces este método devolverá +0 para |a| < 1.
  • Si Pow(a, -Inf), entonces este método devolverá +Inf para |a| < 1.
  • Si Pow(+Inf, b), entonces este método devolverá +Inf para b > 0.
  • Si Pow(+Inf, b), entonces este método devolverá +0 para b < 0.
  • Si Pow(-Inf, b), entonces este método devolverá Pow(-0, -b).
  • Si Pow(a, b), entonces este método devolverá NaN para finito a < 0 y finito no entero b.

Ejemplo 1:

// Golang program to illustrate
// the use of math.Pow() function
  
package main
  
import (
    "fmt"
    "math"
)
  
// Main function
func main() {
  
    // Finding the base-a exponential of b
    // Using Pow() function
    res_1 := math.Pow(3, 5)
    res_2 := math.Pow(math.Inf(1), 3)
    res_3 := math.Pow(2, 0)
    res_4 := math.Pow(1, math.NaN())
    res_5 := math.Pow(-0, math.Inf(-1))
  
    // Displaying the result
    fmt.Printf("Result 1: %.1f", res_1)
    fmt.Printf("\nResult 2: %.1f", res_2)
    fmt.Printf("\nResult 3: %.1f", res_3)
    fmt.Printf("\nResult 4: %.1f", res_4)
    fmt.Printf("\nResult 5: %.1f", res_5)
}

Producción:

Result 1: 243.0
Result 2: +Inf
Result 3: 1.0
Result 4: 1.0
Result 5: +Inf

Ejemplo 2:

// Golang program to illustrate
// the use of math.Pow() function
  
package main
  
import (
    "fmt"
    "math"
)
  
// Main function
func main() {
   
    // Finding the base-a exponential of b
    // Using Pow() function
    nvalue_1 := math.Pow(3, 4)
    nvalue_2 := math.Pow(5, 6)
  
    // Sum of the given numbers
    res := nvalue_1 + nvalue_2
    fmt.Printf("%.3f + %.3f = %.3f",
            nvalue_1, nvalue_2, res)
  
}

Producción:

81.000 + 15625.000 = 15706.000

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 *