2021-09-11 13:48:29 +02:00
\documentclass [a4paper,french] { article}
2021-09-02 23:31:53 +02:00
\title { Analyse}
2021-09-17 14:12:59 +02:00
\author { }
2021-09-02 23:31:53 +02:00
\date { Dernière compilation~: \today { } à \currenttime }
2021-09-02 18:06:51 +02:00
\usepackage { ../cours}
2021-09-02 23:31:53 +02:00
2021-09-02 15:53:13 +02:00
\begin { document}
2021-09-02 23:31:53 +02:00
\maketitle
\tableofcontents
2021-09-11 13:48:29 +02:00
2021-09-03 22:04:15 +02:00
\clearpage
2021-09-11 13:48:29 +02:00
\section { Coin par c\oe { } ur}
\subsection { Trigonométrie}
\begin { tabularx} { \linewidth } { c|YYYYY}
\toprule
x & 0 & $ \frac { \pi } { 6 } $ & $ \frac { \pi } { 4 } $ & $ \frac { \pi } { 3 } $ & $ \frac { \pi } { 2 } $ \\
\midrule
$ \sin { x } $ & 0 & $ \frac { 1 } { 2 } $ & $ \frac { \sqrt { 2 } } { 2 } $ & $ \frac { \sqrt { 3 } } { 2 } $ & 1 \\
\midrule
$ \cos { x } $ & 1 & $ \frac { \sqrt { 3 } } { 2 } $ & $ \frac { \sqrt { 2 } } { 2 } $ & $ \frac { 1 } { 2 } $ & 0 \\
\midrule
$ \frac { \sin { x } } { \cos { x } } = \tan { x } $ & 0 & $ \frac { 1 } { \sqrt { 3 } } = \frac { \sqrt { 3 } } { 3 } $ & 1 & $ \sqrt { 3 } $ & impossible \\
\bottomrule
\end { tabularx}
2021-09-02 23:31:53 +02:00
2021-09-11 13:48:29 +02:00
\subsection { Exponentielle et Logarithme}
2021-09-09 10:31:39 +02:00
2021-09-11 13:48:29 +02:00
\begin { multicols} { 2}
2021-09-09 10:31:39 +02:00
2021-09-11 13:48:29 +02:00
$ e ^ 0 = 1 ; e ^ 1 = e $
2021-09-09 10:31:39 +02:00
2021-09-11 13:48:29 +02:00
$ \ln { 0 } = \text { impossible~; } \ln { 1 } = 0 \text { ~; } \ln { e } = 1 $
\end { multicols}
\subsection { Dérivées et Primitives}
\subsubsection { Usuelles}
\begin { tabularx} { \linewidth } { YY}
\toprule
Primitive --- $ f ( x ) $ & Dérivée --- $ f' ( x ) $ \\
\toprule
\textcolor { red} { $ a $ } & 0 \\
\midrule
\textcolor { red} { $ ax $ } & \textcolor { red} { $ a $ } \\
\midrule
$ \frac { 1 } { 2 } x ^ 2 $ & \textcolor { red} { $ x $ } \\
\midrule
\textcolor { red} { $ x ^ n $ } & \textcolor { red} { $ nx ^ { n - 1 } $ } \\
\midrule
\textcolor { red} { $ \sqrt { x } $ } & $ \frac { 1 } { 2 \sqrt { x } } $ \\
\midrule
$ \frac { 2 } { 3 } x \sqrt { x } $ & \textcolor { red} { $ \sqrt { x } $ } \\
\midrule
\textcolor { red} { $ e ^ { ax } $ } & \textcolor { red} { $ ae ^ { ax } $ } \\
\midrule
\textcolor { red} { $ a ^ x $ } & $ a ^ x \ln { a } $ \\
\midrule
\textcolor { red} { $ \ln { |x| } $ } & \textcolor { red} { $ \frac { 1 } { x } $ } \\
\midrule
2021-09-13 16:28:50 +02:00
\textcolor { red} { $ - \frac { 1 } { x } $ } & \textcolor { red} { $ \frac { 1 } { x ^ 2 } $ } \\
\midrule
2021-09-11 13:48:29 +02:00
\textcolor { red} { $ \cos { x } $ } & \textcolor { red} { $ - \sin { x } $ } \\
\midrule
\textcolor { red} { $ \sin { x } $ } & \textcolor { red} { $ \cos { x } $ } \\
\midrule
\textcolor { red} { $ \tan { x } $ } & $ 1 + \tan ^ 2 { x } = \frac { 1 } { \cos ^ 2 { x } } $ \\
\midrule
$ \cot { x } $ & $ - 1 - \cot ^ 2 { x } = \frac { - 1 } { \sin ^ 2 { x } } $ \\
\midrule
$ \arccos { x } $ & $ \frac { - 1 } { \sqrt { 1 - x ^ 2 } } $ \\
\midrule
$ \arcsin { x } $ & $ \frac { 1 } { \sqrt { 1 - x ^ 2 } } $ \\
\midrule
\textcolor { red} { $ \arctan { x } $ } & \textcolor { red} { $ \frac { 1 } { 1 + x ^ 2 } $ } \\
\bottomrule
\end { tabularx}
\subsubsection { Composées}
\begin { multicols} { 2}
\begin { tabularx} { \linewidth } { lY}
\toprule
\multirow { 2} { *} { Linéarité} & $ ( u + v ) ' = u' + v' $ \\
& $ ( au ) ' = au' $ \\
\midrule
Produit & $ ( uv ) ' = u'v + uv' $ \\
\midrule
Inverse & $ \left ( \frac { 1 } { v } \right ) ' = - \frac { v' } { v ^ 2 } $ \\
\midrule
Quotient & $ \left ( \frac { u } { v } \right ) ' = \frac { u'v - uv' } { v ^ 2 } $ \\
\midrule
Composée & $ ( f ( u ) ) ' = u'f' ( u ) $ \\
\bottomrule
\end { tabularx}
2021-09-09 10:31:39 +02:00
2021-09-11 13:48:29 +02:00
\begin { tabularx} { \linewidth } { YY}
\toprule
Fonction & Primitive \\
\toprule
$ u'u ^ n $ & $ \frac { u ^ { n + 1 } } { n + 1 } $ \\
\midrule
$ \frac { u' } { u ^ 2 } $ & $ - \frac { 1 } { u } $ \\
\midrule
$ \frac { u' } { \sqrt { u } } $ & $ 2 \sqrt { u } $ \\
\midrule
$ u' \cos { u } $ & $ \sin { u } $ \\
\midrule
$ u' \sin { u } $ & $ - \cos { u } $ \\
\midrule
$ \frac { u' } { u } $ & $ \ln { |u| } $ \\
\midrule
$ u'e ^ u $ & $ e ^ u $ \\
\midrule
$ \frac { u' } { 1 + u ^ 2 } $ & $ \arctan { u } $ \\
\bottomrule
\end { tabularx}
\end { multicols}
\subsection { Intégrales}
\begin { equation*}
\int _ a^ b f(x)\, \mathrm { d} x = [F(x)]_ a^ b = F(b) - F(a)
\end { equation*}
\subsubsection { Intégration par parties}
\begin { equation*}
\int _ a^ b uv'\, \mathrm { d} x = [uv]_ a^ b - \int _ a^ b u'v\, \mathrm { d} x
\end { equation*}
\subsubsection { Intégration par changement de variables}
\begin { equation*}
\int _ a^ b f(x)\, \mathrm { d} x = \int _ { u(a)} ^ { u(b)} f(u)\, \frac { \mathrm { d} u} { u}
\end { equation*}
2021-09-11 18:25:39 +02:00
\subsection { Équations différentielles}
2021-09-19 13:24:38 +02:00
\begin { tabularx} { \linewidth } { lllc}
2021-09-11 18:25:39 +02:00
\toprule
2021-09-19 13:24:38 +02:00
\multicolumn { 2} { l} { Type d'E.D.} & Solutions & \\
2021-09-11 18:25:39 +02:00
\toprule
2021-09-19 13:24:38 +02:00
\multicolumn { 2} { l} { $ ay' + by = 0 $ } & $ \lambda e ^ { rx } \quad \text { avec } r = \frac { - b } { a } $ & $ a, b, \lambda \in \mathbb { R } $ \\
2021-09-11 18:25:39 +02:00
\midrule
2021-09-19 13:24:38 +02:00
\multicolumn { 2} { l} { $ ay' + by = f ( x ) $ } & $ y _ 0 + \lambda e ^ { rx } \quad \text { avec } r = \frac { - b } { a } $ & \makecell { $ y _ 0 $ solution particulière de $ ay' + by = f ( x ) $ \\ $ f $ une fonction et $ a, b, \lambda \in \mathbb { R } $ } \\
\midrule
\multirow { 3} { *} { $ ay'' + by' + cy = 0 $ } & $ \Delta > 0 $ & $ \lambda e ^ { r _ 1 x } + \mu e ^ { r _ 2 x } $ & \multirow { 3} { *} { $ \lambda , \mu \in \mathbb { R } $ } \\
\cline { 2-3}
& $ \Delta = 0 $ & $ ( \lambda + \mu x ) e ^ { r _ 0 x } $ & \\
\cline { 2-3}
& $ \Delta < 0 $ & $ e ^ { \alpha x } ( \lambda \cos { ( \beta x ) } + \mu \sin { ( \beta x ) } ) $ & \\
2021-09-11 18:25:39 +02:00
\bottomrule
\end { tabularx}
2021-09-11 13:48:29 +02:00
\clearpage
2021-09-02 15:53:13 +02:00
\section { Rappel sur les dérivées}
\subsection { Définition}
Soit une fonction $ f $ définie au voisinage d'un réel $ a $ .
On dit que $ f $ est dérivable en $ a $ s'il existe un réel $ l $ (appelé nombre dérivé de $ f $ en $ a $ ), tel que l'on ait une des deux propriétés suivantes~:
2021-09-03 23:01:52 +02:00
\begin { multicols} { 2}
2021-09-02 15:53:13 +02:00
2021-09-03 23:01:52 +02:00
\begin { enumerate}
2021-09-02 15:53:13 +02:00
2021-09-03 23:01:52 +02:00
\item $ \lim \limits _ { x \to a } \frac { f ( x ) - f ( a ) } { x - a } = l $
2021-09-02 15:53:13 +02:00
2021-09-03 23:01:52 +02:00
\item $ \lim \limits _ { h \to 0 } \frac { f ( a + h ) - f ( a ) } { h } = l $
\end { enumerate}
\end { multicols}
2021-09-02 15:53:13 +02:00
Alors $ f' ( a ) = l $ .
\subsection { Interprétation graphique}
2021-09-03 23:01:52 +02:00
\begin { multicols} { 2}
\includegraphics [width=0.4\textwidth] { ./img/rappel-deriv-int-graph.png}
Au point $ A = ( a, y _ a = f ( a ) ) $ , la droite $ \Delta $ est la tangente de $ f ( x ) $ en $ A $ .
2021-09-02 15:53:13 +02:00
2021-09-03 23:01:52 +02:00
\begin { displaymath}
\Delta : y = px + m
\end { displaymath}
2021-09-02 15:53:13 +02:00
2021-09-03 23:01:52 +02:00
La dérivée donne la pente de la droite $ \Delta $ .
\begin { displaymath}
p = f'(a)
\end { displaymath}
\end { multicols}
2021-09-02 15:53:13 +02:00
Ainsi~:
\begin { itemize}
2021-09-03 23:01:52 +02:00
\item si $ f' ( a ) < 0 $ alors $ f $ est décroissante
2021-09-02 15:53:13 +02:00
2021-09-03 23:01:52 +02:00
\item si $ f' ( a ) > 0 $ alors $ f $ est croissante
2021-09-02 15:53:13 +02:00
2021-09-03 23:01:52 +02:00
\item si $ f' ( a ) = 0 $ alors $ f $ passe par un extremum (max, min, ou point d'inflexion)
2021-09-02 15:53:13 +02:00
\end { itemize}
2021-09-11 13:48:29 +02:00
\clearpage
\section { Techniques d'intégration}
2021-09-05 15:43:53 +02:00
2021-09-11 13:48:29 +02:00
\subsection { Intégration par identification}
2021-09-05 15:43:53 +02:00
2021-09-11 13:48:29 +02:00
Il s'agit d'essayer de reconnaître une des formes de primitives composées, pour éviter de calculer des expressions complexes à la main.
2021-09-02 15:53:13 +02:00
2021-09-11 13:48:29 +02:00
\subsection { Intégration par parties}
2021-09-02 15:53:13 +02:00
2021-09-11 13:48:29 +02:00
\paragraph { Mnémotechnique}
2021-09-02 15:53:13 +02:00
2021-09-11 13:48:29 +02:00
Il s'agit de trouver quelle expression attribuer à $ u $ et quelle expression attribuer à $ v' $ .
Un moyen mnémotechnique est~:
\begin { tabularx} { \linewidth } { XXX}
\multirow { 6} { *} { dérivation} & ALPES & \multirow { 6} { *} { intégration} \\
& A~: $ \arctan $ & \\
& L~: $ \ln $ & \\
& P~: polynômes & \\
& E~: $ e $ & \\
& S~: $ \sin \text { et } \cos $ & \\
\end { tabularx}
2021-09-02 15:53:13 +02:00
2021-09-11 13:48:29 +02:00
\paragraph { Exemple}
2021-09-02 15:53:13 +02:00
2021-09-05 15:43:53 +02:00
\begin { align*}
2021-09-11 13:48:29 +02:00
I = \int _ 0^ 1 xe^ { 2x} \, \mathrm { d} x \\
u & = x & u' & = 1 \\
v' & = e^ { 2x} & v & = \frac { 1} { 2} e^ { 2x} \\
2021-09-05 15:43:53 +02:00
\end { align*}
2021-09-02 15:53:13 +02:00
2021-09-11 13:48:29 +02:00
La formule $ \int _ 0 ^ 1 uv' \, \mathrm { d } x = [ uv ] _ 0 ^ 1 - \int _ 0 ^ 1 u'v \, \mathrm { d } x $ devient~:
2021-09-02 15:53:13 +02:00
2021-09-05 15:43:53 +02:00
\begin { align*}
2021-09-11 13:48:29 +02:00
I & = [\frac { x} { 2} e^ { 2x} ]_ 0^ 1 - \int _ 0^ 1 \frac { 1} { 2} e^ { 2x} \, \mathrm { d} x \\
& = [\frac { x} { 2} e^ { 2x} ]_ 0^ 1 - \frac { 1} { 2} [\frac { 1} { 2} e^ { 2x} ]_ 0^ 1 \\
& = [\frac { x} { 2} e^ { 2x} ]_ 0^ 1 - \frac { 1} { 4} [e^ { 2x} ]_ 0^ 1 \\
& = \frac { e^ 2} { 2} - \frac { 1} { 4} (e^ 2 - e^ 0) \\
& = \frac { e^ 2} { 2} - \frac { e^ 2 - 1} { 4} \\
& = \frac { e^ 2 + 1} { 4} \\
2021-09-05 15:43:53 +02:00
\end { align*}
2021-09-02 15:53:13 +02:00
2021-09-11 13:48:29 +02:00
\subsection { Intégration par changement de variables}
2021-09-05 15:43:53 +02:00
2021-09-11 13:48:29 +02:00
\paragraph { Exemple}
2021-09-08 19:42:22 +02:00
\begin { align*}
2021-09-16 10:25:32 +02:00
\int _ 0^ { \ln { \sqrt { 3} } } \frac { 1} { e^ x + e^ { -x} } \, \mathrm { d} x\text { ,\quad on pose } u& =e^ x \\
u' & = e^ x = \frac { \mathrm { d} u} { \mathrm { d} x} \\
\mathrm { d} x & = \frac { \mathrm { d} u} { e^ x} = \frac { \mathrm { d} u} { u}
2021-09-09 10:14:22 +02:00
\end { align*}
2021-09-16 10:25:32 +02:00
Cela nous donne~:
2021-09-09 10:14:22 +02:00
\begin { align*}
2021-09-16 10:25:32 +02:00
\int _ { e^ 0} ^ { e^ { \ln { \sqrt { 3} } } } \frac { 1} { u + \frac { 1} { u} } \, \frac { \mathrm { d} u} { u} \\
& = \int _ 1^ { \sqrt { 3} } \frac { 1} { u^ 2 + 1} \, \mathrm { d} u \\
& = [\arctan { u} ]_ 1^ { \sqrt { 3} } \\
& = \arctan { \sqrt { 3} } - \arctan { 1} \\
& = \frac { \pi } { 3} - \frac { \pi } { 4} = \frac { \pi } { 12} \\
2021-09-08 19:42:22 +02:00
\end { align*}
2021-09-11 13:48:29 +02:00
\clearpage
2021-09-11 18:25:39 +02:00
\section { Équations différentielles}
2021-09-02 15:53:13 +02:00
2021-09-16 10:10:14 +02:00
On étudie ici les équations différentielles \emph { linéaires} et à \emph { coefficients constants} .
2021-09-12 18:59:59 +02:00
2021-09-19 13:10:52 +02:00
\subsection { Équations différentielles du 1\up { er} ordre}
2021-09-12 18:59:59 +02:00
2021-09-19 13:10:52 +02:00
Elles sont de la forme $ \textcolor { red } { ay' + by = h ( x ) } \quad ( E ) $ \quad où $ a, b \in \mathbb { R } ^ * $ et où $ y = y ( x ) $ est la fonction recherchée.
2021-09-12 18:59:59 +02:00
2021-09-16 10:10:14 +02:00
$ ( E ) $ est linéaire car $ y $ intervient de manière linéaire~: il n'y a pas de terme du type $ y ^ 3 , y ^ 2 , \sin { y } $ , etc\ldots
2021-09-12 18:59:59 +02:00
2021-09-16 10:10:14 +02:00
Résoudre une telle équation différentielle se fait en 3 étapes.
\subsubsection { Trouver la solution homogène ($ y _ 0 $ )}
On commence par résoudre l'équation homogène (c'est à dire sans la fonction $ h ( x ) $ ) associée~:
2021-09-12 18:59:59 +02:00
\begin { equation*}
2021-09-19 13:10:52 +02:00
ay_ 0' + by_ 0 = 0 \quad (E_ 0)
2021-09-12 18:59:59 +02:00
\end { equation*}
2021-09-16 10:10:14 +02:00
Cela nous donne une équation caractéristique~:
2021-09-12 18:59:59 +02:00
2021-09-16 10:10:14 +02:00
\begin { align*}
2021-09-19 13:10:52 +02:00
ar + b & = 0 \\
r & = -\frac { b} { a}
2021-09-16 10:10:14 +02:00
\end { align*}
2021-09-19 13:10:52 +02:00
La solution de $ ( E _ 0 ) $ est alors $ \textcolor { red } { y _ 0 = \lambda e ^ { rx } } \quad \text { où } \lambda \in \mathbb { R } $ .
2021-09-16 10:10:14 +02:00
\subsubsection { Trouver la solution particulière ($ y _ 1 $ )}
On cherche maintenant une solution particulière de $ ( E ) $ ($ ay' + by = h ( x ) $ ).
Pour cela, on va passer par une fonction $ y _ 1 $ de même type que la fonction $ h ( x ) $ ~:
2021-09-12 18:59:59 +02:00
\begin { itemize}
2021-09-16 10:10:14 +02:00
\item Pour $ h ( x ) = P _ n ( x ) $ , polynôme de degré $ n $
\begin { equation*}
\textcolor { red} { y_ 1 = Q_ n(x)} \text { , polynôme de même degré $ n $ }
\end { equation*}
2021-09-12 18:59:59 +02:00
\begin { align*}
2021-09-16 10:10:14 +02:00
x & \rightarrow Ax + B \\
x^ 2 & \rightarrow Ax^ 2 + Bx + C \\
x^ 3 & \rightarrow Ax^ 3 + Bx^ 2 + Cx + D \\
2021-09-12 18:59:59 +02:00
\dots
\end { align*}
2021-09-16 10:10:14 +02:00
\item Pour $ h ( x ) = P _ n ( x ) e ^ { \lambda x } $
\begin { enumerate}
2021-09-12 18:59:59 +02:00
2021-09-19 13:10:52 +02:00
\item si $ \lambda \neq r $ ~:
2021-09-16 10:10:14 +02:00
\begin { equation*}
\textcolor { red} { y_ 1(x) = Q_ n(x) e^ { \lambda x} }
\end { equation*}
2021-09-19 13:10:52 +02:00
\item si $ \lambda = r $ ~:
2021-09-16 10:10:14 +02:00
\begin { equation*}
\textcolor { red} { y_ 1(x) = x Q_ n(x) e^ { \lambda x} }
\end { equation*}
\end { enumerate}
\item Pour $ h ( x ) = \alpha \cos { px } + \beta \sin { px } $
\begin { equation*}
\textcolor { red} { y_ 1(x) = A\cos { px} + B\sin { px} }
\end { equation*}
2021-09-12 18:59:59 +02:00
\end { itemize}
2021-09-16 10:10:14 +02:00
On applique alors l'équation de départ à $ y _ 1 $ ~:
2021-09-12 18:59:59 +02:00
\begin { equation*}
2021-09-16 10:10:14 +02:00
Ay_ 1' + By_ 1 = h(x)
2021-09-12 18:59:59 +02:00
\end { equation*}
2021-09-16 10:10:14 +02:00
Et on la résoud pour trouver $ A, B, C, \dots $ .
2021-09-12 18:59:59 +02:00
2021-09-16 10:10:14 +02:00
Cela nous donne $ y _ 1 $ , solution particulière.
2021-09-12 18:59:59 +02:00
2021-09-19 13:10:52 +02:00
\subsubsection { Trouver la solution générale ($ y $ )}
2021-09-12 18:59:59 +02:00
2021-09-16 10:10:14 +02:00
La solution générale de $ ( E ) $ s'écrit~:
2021-09-12 18:59:59 +02:00
2021-09-16 10:10:14 +02:00
\begin { equation*}
2021-09-19 13:10:52 +02:00
y = y_ 0 + y_ 1
2021-09-16 10:10:14 +02:00
\end { equation*}
2021-09-12 18:59:59 +02:00
2021-09-19 13:10:52 +02:00
\subsection { Équations différentielles du 2\up { nd} ordre}
Elles sont de la forme $ \textcolor { red } { ay'' + by' + cy = g ( x ) } \quad ( E ) \quad \text { où } a, b, c \in \mathbb { R } $
Là encore, on passe par les 3 mêmes étapes que pour les équations différentielles du 1\up { er} ordre.
\subsubsection { Trouver la solution homogène ($ y _ 0 $ )}
L'équation homogène associée est~:
\begin { equation*}
ay'' + by' +cy = 0 \quad (E_ 0)
\end { equation*}
Cela nous donne une équation caractéristique~:
\begin { align*}
& ar^ 2 + br + c = 0 \\
& \Delta = b^ 2 - 4ac \quad \text { (le discriminant)}
\end { align*}
\begin { itemize}
\item si $ \Delta > 0 $ , l'équation caractéristique possède deux racines réelles distinctes $
\left \{
\begin { array} { c}
r_ 1 = \frac { -b - \sqrt { \Delta } } { 2a} \\
r_ 2 = \frac { -b + \sqrt { \Delta } } { 2a} \\
\end { array}
\right .$
Les solutions de $ ( E _ 0 ) $ sont alors~:
\begin { equation*}
\textcolor { red} { y_ 0 = \lambda e^ { r_ 1 x} + \mu e^ { r_ 2 x} } \quad \text { où } \lambda , \mu \in \mathbb { R}
\end { equation*}
\item si $ \Delta = 0 $ , l'équation caractéristique possède une racine double $ r _ 0 $
Les solutions de $ ( E _ 0 ) $ sont alors~:
\begin { equation*}
\textcolor { red} { y_ 0 = (\lambda + \mu x) e^ { r_ 0 x} } \quad \text { où } \lambda , \mu \in \mathbb { R}
\end { equation*}
\item si $ \Delta < 0 $ , l'équation caractéristique possède deux racines complexes $
\left \{
\begin { array} { c}
r_ 1 = \alpha + i\beta \\
r_ 2 = \alpha - i\beta \\
\end { array}
\right .$
Les solutions de $ ( E _ 0 ) $ sont alors~:
\begin { equation*}
\textcolor { red} { y_ 0 = e^ { \alpha x} (\lambda \cos { (\beta x)} + \mu \sin { (\beta x)} )} \quad \text { où } \lambda , \mu \in \mathbb { R}
\end { equation*}
\end { itemize}
2021-09-11 13:48:29 +02:00
\clearpage
2021-09-02 15:53:13 +02:00
\section { Intégrales généralisées}
2021-09-11 13:48:29 +02:00
\clearpage
2021-09-02 15:53:13 +02:00
\section { Séries de Fourier}
\end { document}