BigInteger.Log Method Returns the natural (base e) logarithm of a specified number.
Imports System.Numerics
Module Example Public Sub Main() Dim values() As BigInteger = { BigInteger.Pow(1000, 100), BigInteger.Pow(2, 64) }
For Each value In values
Console.WriteLine("The square root of {0} is {1}", value, Math.Exp(BigInteger.Log(value) / 2))
Next End Sub End Module