I am extremely new to R, so the solution to this is probably relatively simple. I have the following function to calculate stopping distance for an average car:
distance <- function(mph){(2.0*(mph/60))+(0.062673*(mph^1.9862))}
And I'm plotting all stopping distances from 1 mph to 60 mph:
range = distance(1:60)
But I need to mark where the stopping distance is equal to 120 ft. I don't have any idea how this is done in R, but I'd like to write a function where, for a stoppingdistance(x), I get the maximum speed of the car in MPH. What function should I use, and is there an easy way to check if the value of distance(x) (as it's written above) is equal to a certain value?