Suppose that #f'(x) = 2x# for all #x#. What is #f(2)# if #f(1)=0#? What if #f(-2) = 3#?
1 Answer
Dec 28, 2016
Knowing the derivative, we should recognize that its definite integral generates an arbitrary constant:
#int 2xdx = x^2 + C#
Given the initial condition
#(1)^2 + C = 0#
#C = -1#
so that
#f(x) = x^2 - 1#
and
#color(blue)(f(2)) = (2)^2 - 1 = color(blue)(3)#
Or, given a different initial condition
#(-2)^2 + C = 3#
#C = -1#
so that again,
#f(x) = x^2 - 1#
and
#color(blue)(f(2)) = (2)^2 - 1 = color(blue)(3)#
It just means that both initial conditions are based on the same antiderivative (including its y-intercept).
What if