I have a known function:
eq = function(x){(4E-11*x^4)-(2E-8*x^3)-(1E-5*x^2)+(0.0132*x)+0.1801}
I want to get x values from known y values. However, because of floating point arithmetics, I cannot use which
as in this question: How to find the x-value given the y-value from a plot in R.
Is there a way to get the exact x values knowing y, or do I have to go the approx
way such as suggested in this example predict x values from simple fitting and annoting it in the plot ?