I have this equation in R.
f <- function(x) {first +second*x +third*x^2 +fourth*filter_factor - log(myBITRATE)}
where
first= -5.219078
second = 0.7613156
third = -0.01298033
fourth = -0.05218249
filter_factor = 1
myBITRATE = 184.47
Is there a way to find the roots of this equation?
I need a starting point for the newton-raphson method.