Jak rozlišujete f (x) = sin (sqrt (arccosx ^ 2)) pomocí pravidla řetězce?

Jak rozlišujete f (x) = sin (sqrt (arccosx ^ 2)) pomocí pravidla řetězce?
Anonim

Odpovědět:

# - (xcos (sqrt (arccosx ^ 2))) / (sqrt (1-x ^ 4) * sqrt (arccosx ^ 2)) #

Vysvětlení:

Rozlišovat #f (x) # musíme jej rozložit na funkce a pak je rozlišit pomocí řetězového pravidla:

Nechat:

#u (x) = arccosx ^ 2 #

#g (x) = sqrt (x) #

Pak, #f (x) = sin (x) #

Derivace složené funkce pomocí řetězového pravidla je uvedena následovně:

#color (modrá) ((f (g (u (x)))) = f '(g (u (x))) * g' (u (x)) * u '(x)) #

Pojďme najít derivaci každé funkce výše:

#u '(x) = - 1 / sqrt (1- (x ^ 2) ^ 2) * 2x #

#color (modrá) (u '(x) = - 1 / (sqrt (1-x ^ 4)) * 2x #

#g '(x) = 1 / (2sqrt (x)) #

Subtituting #X# podle #u (x) # my máme:

#color (modrá) (g '(u (x)) = 1 / (2sqrt (arccosx ^ 2)) #

#f '(x) = cos (x) #

Nahrazení #X# podle #g (u (x)) # musíme najít #color (červená) (g (u (x))) #:

#color (červená) (g (u (x)) = sqrt (arccosx ^ 2)) #

Tak, #f '(g (u (x))) = cos (g (u (x)) #

#color (modrá) (f '(g (u (x))) = cos (sqrt (arccosx ^ 2)) #

Nahrazení vypočtených derivátů na výše uvedené pravidlo řetězu máme:

#color (modrá) ((f (g (u (x)))) = f '(g (u (x))) * g' (u (x)) * u '(x) #

# = (- 2xcos (sqrt (arccosx ^ 2))) / (2sqrt (1-x ^ 4) * sqrt (arccosx ^ 2)) #

#color (blue) (= - (xcos (sqrt (arccosx ^ 2))) / (sqrt (1-x ^ 4) * sqrt (arccosx ^ 2))) # #