This formula represents the derivative of a function that is sum of functions.
example: If we have two functions f(x) = x2 + x + 1 and
g(x) = x5 + 7 and y = f(x) + g(x) then y' = f'(x) + g'(x) =>
y' = (x2 + x + 1)' + (x5 + 7)' = 2x1 + 1 + 0 + 5x4 + 0 = 5x4 + 2x + 1
If a function is multiplication of two functions the derivate formula is:
y = f(x).g(x) => y' = f'(x)g(x) + f(x)g'(x)
If f(x) = C(C is a contstant), and y = f(x)g(x) y = Cg(x) y'=C'.g(x) + C.g'(x) = 0 + C.g'(x) = C.g'(x)
y = Cf(x) => y' = C.f'(x)
There are examples of the following formulas in the task section.
y =
f(x)
g(x)
y' =
f'(x)g(x) - f(x)g'(x)
g2(x)
y = ln x => y' = 1/x
y = ex => y' = ex
y = sin x => y' = cos x
y = cos x => y' = -sin x
y = tan x => y' = 1/cos2x
y = cot x => y' = -1/sin2x
y = arcsin x
=>
y' =
1
√1 - x.x
y = arccos x
=>
y' =
-1
√1 - x.x
y = arctan x
=>
y' =
1
1 + x2
y = arccot x
=>
y' =
-1
1 + x2
if a function is a function of function: u = u(x)
y = f(u) => y' = f'(u).u'
example: let's have function y = sin(x2)
in this situation u = x2, f(u) = sin(u), the derivatives are f'(u) = cos(u), u' = 2x
y' = (sin(u))'.u' = cos(x2).2x = 2.x.cos(x2)
Derivative Problems
1) f(x) = 10x + 4y, what will be the first derivative f'(x) = ? ANSWER: We can use the formula for the derivate of function that is sum of
functions
f(x) = f1(x) + f2(x), f1(x) = 10x, f2(x) = 4y
for the function f2(x) = 4y, y is a constant because the argument of f2(x) is x
so f'2(x) = (4y)' = 0. So the derivative function of f(x) is: f'(x) = 10 + 0 = 10.
2) Calculate the derivative of f(x) =
x10
4.15 + cosx
ANSWER:
we have two functions h(x) = x10 and g(x) = 4.15 + cos x
the function f(x) is h(x) divided by g(x). h'(x) = 10x9 g'(x) = 0 - sin x = -sin x
f'(x) =
h'(x).g(x) - h(x).g'(x)
(g(x))2
f'(x) =
10x9(4.15 + cos x) - x10(-sin x)
(4.15 + cosx)2
=
x10sin x + 10(60 + cos x)x9
(60 + cosx)2
3) f(x) = ln(sinx). what is the derivative of the function f(x)? ANSWER: To solve the task we have to use the last formula.
As we can see f(x) is a function of function of function
f(x) = h(g(x)) where h = ln, and g = sin x