exp(x) log(x, base=exp(1)) log10(x) sqrt(x)
These are members of the Math group of generic functions.
See section 5.1.5 of Becker, Chambers and Wilks for details on domains and branch cuts in the case of complex arguments.
log(y, 2) # base 2 logarithms log(100, 10) == log10(100) #log10 computes the common logarithmlog(-3) # returns NA log(as.complex(-3)) # equals log(3) plus pi times i
acr <- seq(0, pi/2, len=50) exp((1i) * arc) # part of the unit circle in the complex plane
sqrt(2)