a <- 2
b <- 3
T <- 10
fun1 <- function(a,b,T) {
return(a*(log(b+T)))
}
Answer1 <- integrate(fun1,
lower = 0,
upper=T)
I'm trying to find the integral of a function () = ∙ ln( + ). It does, however, return an error no matter what I do. The error is "Error in f(x, ...) : argument "b" is missing, with no default"