1
0
mirror of https://github.com/Didnelpsun/Math.git synced 2026-02-06 12:05:17 +08:00
This commit is contained in:
Didnelpsun
2022-10-01 23:45:14 +08:00
parent 3e9b739bdc
commit 06a89feb6c
2 changed files with 32 additions and 4 deletions

View File

@@ -176,10 +176,6 @@ $f(x)=\left\{\begin{array}{lcl}
\end{array}
\right.$
\subsubsection{复合函数导数}
如果题目中让直接求复合函数在某点的导数,那么可以直接变形式子求,如果要先判断是否在该点存在导数,则最好使用定义来求。\medskip
\textbf{例题:}设函数$f(x)=\left\{\begin{array}{ll}
\ln\sqrt{x}, & x\geqslant1\\
2x-1, &x<1
@@ -216,6 +212,38 @@ $f(f(x))=\left\{\begin{array}{ll}
$\therefore x=e^2$处导数不存在。
\subsubsection{复合函数导数}
一种方法是链式求导法,另一种如果函数表达式存在指数对数函数需要对其化简再使用链式求导。
\paragraph{指数函数} \leavevmode \medskip
即形如$y=f(x)^{g(x)}$
\begin{enumerate}
\item 取对数$\ln y =g(x)\ln(f(x))$
\item 两边对$x$求导$\dfrac{y'}{y}=g'(x)\ln(f(x))+g(x)\dfrac{f'(x)}{f(x)}$
\item $y'=[g'(x)\ln(f(x))+g(x)\dfrac{f'(x)}{f(x)}]y=[g'(x)\ln(f(x))+g(x)\dfrac{f'(x)}{f(x)}]f(x)^{g(x)}$
\end{enumerate}
\paragraph{对数函数} \leavevmode \medskip
即形如$y=\log_{e}f(x)$
\begin{enumerate}
\item 取指数$e^y=f(x)$
\item 两边对$x$求导$e^yy'=f'(x)$
\item $y=\dfrac{f'(x)}{e^y}=\dfrac{f'(x)}{f(x)}$
\end{enumerate}
\subsubsection{绝对值导数}
当遇到绝对值函数$\vert f(x)\vert$时,一般都需要进行分段讨论。实际上也可以不用分段,利用平方和根号形式就能解决绝对值问题:$\vert f(x)\vert=\sqrt{f^2(x)}$
并注意$\ln\vert x\vert=\dfrac{1}{x}$,不用加绝对值,这是根据上面的方法推理而来。
\textbf{例题:}
\subsection{导数与极限}
导数的定义由极限产生,所以其之间是可以互相转换的,当求一个导数时可以寻找是否能求出其极限。