El antilog o antilogaritmo es el proceso inverso de encontrar log o logaritmo. Si q es el valor de logb p, entonces p es el antilog de q en base b, es decir, q = log b p, entonces p = antilog b q
Ejemplos,
- antilog 2 3 = 8, ya que 2 3 da 8
- antilog 4 2 = 16, ya que 4 2 da 16
- antilog 10 4 = 10000, ya que 10 4 da 10000
Antilogaritmo:
El antilogaritmo o antilogaritmo de un número, número a base, la base se puede calcular como,
Sintaxis:
número básico
Aquí,
base: un entero positivo (base de antilog)
número: un entero cuyo antilogaritmo se va a calcular
Tipo de retorno:
un entero positivo: antilogaritmo de número a base
Ejemplo 1:
En este ejemplo, veremos cómo podemos calcular el antilogaritmo de los siguientes números positivos,
- antilogaritmo 2 (3)
- antilog 4 (2)
- antilog 10 (4)
- antilog e (4.60517018598809)
Dado que antilog 2 (3) es igual a 2 3 = 8, antilog 4 (2) es igual a 4 2 = 16 y antilog 10 (4) es igual a 10 4 = 10000, podemos calcular estos valores con la ayuda del operador de exponenciación (^) en R. También podemos calcular el antilogaritmo de un número en base e pasando un único parámetro a la función incorporada exp().
R
# R program to illustrate how we can # compute antilog # An integer whose antilog to be computed number = 3 # Initializing base base = 2 # Computing antilog value answer = base ^ number # Print the value of antilog print(paste("The value of antilog2(3) is equal to", answer)) # Initializing base base = 4 # An integer whose antilog to be computed number = 2 # Computing antilog value answer = base ^ number # Print the value of antilog print(paste("The value of antilog4(2) is equal to", answer)) # An integer whose antilog to be computed number = 4 # Initializing base base = 10 # Computing antilog value answer = base ^ number # Print the value of antilog print(paste("The value of antilog2(3) is equal to", answer)) # An integer whose antilog to be computed number = 4.60517018598809 # Print the value of antilog print(paste("The value of antiloge(4.60517018598809) is equal to", exp(number)))
Producción:
Ejemplo 2:
En este ejemplo, veremos cómo podemos calcular el antilogaritmo de los siguientes números negativos,
- antilogaritmo 2 (-3)
- antilogaritmo 4 (-2)
- antilogaritmo 10 (-4)
- antilog e (-4.60517018598809)
Como antilog 2 (-3) es igual a 2 -3 = 1/8, antilog 4 (-2) es igual a 4 -2 = 1/16 y antilog 10 (-4) es igual a 10 -4 = 1/ 10000 podemos calcular estos valores con la ayuda del operador de exponenciación (^) en R. También podemos calcular el antilogaritmo de un número en base e pasando un único parámetro a la función incorporada exp().
R
# R program to illustrate how we can compute antilog # An integer whose antilog to be computed number = -3 # Initializing base base = 2 # Computing antilog value answer = base ^ number # Print the value of antilog print(paste("The value of antilog2(-3) is equal to", answer)) # Initializing base base = 4 # An integer whose antilog to be computed number = -2 # Computing antilog value answer = base ^ number # Print the value of antilog print(paste("The value of antilog4(-2) is equal to", answer)) # An integer whose antilog to be computed number = -4 # Initializing base base = 10 # Computing antilog value answer = base ^ number # Print the value of antilog print(paste("The value of antilog10(-4) is equal to", answer)) # An integer whose antilog to be computed number = -4.60517018598809 # Print the value of antilog print(paste("The value of antiloge(-4.60517018598809) is equal to", exp(number)))
Producción: