2021-09-11 13:48:29 +02:00
\documentclass [a4paper,french] { article}
2021-09-02 23:31:53 +02:00
\title { Analyse}
\author { Alain OSTER --- \href { mailto:alain.oster@intervenants.efrei.fr} { \nolinkurl { alain.oster@intervenants.efrei.fr} } }
\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}
\begin { tabularx} { \linewidth } { YYc}
\toprule
Type d'E.D. & Solutions & \\
\toprule
2021-09-12 18:59:59 +02:00
$ y' = ay $ & $ \lambda e ^ { ax } $ & $ a, \lambda \in \mathbb { R } $ \\
2021-09-11 18:25:39 +02:00
\midrule
2021-09-12 18:59:59 +02:00
$ y' = ay + b $ & $ - \frac { b } { a } + \lambda e ^ { ax } $ & $ a, b, \lambda \in \mathbb { R } $ \\
2021-09-11 18:25:39 +02:00
\midrule
2021-09-12 18:59:59 +02:00
$ y' = ay + f $ & $ y _ 0 + \lambda e ^ { ax } $ & \makecell { $ y _ 0 $ solution particulière de $ y' = ay + f $ \\ $ f $ une fonction et $ a, \lambda \in \mathbb { R } $ } \\
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-09 10:14:22 +02:00
\int _ 0^ { \ln { \sqrt { 3} } } \frac { 1} { e^ x + e^ { -x} } \, \mathrm { d} x\text { ,\quad on pose } u=e^ x
\end { align*}
\begin { align*}
& = \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-12 18:59:59 +02:00
\subsection { Équation de type $ y' + ay = f $ }
Pour une équation de type $ y' + ay = f $ ($ f $ étant une fonction), la résolution se fait en 3 étapes.
\subsubsection { Solution homogène ($ y _ h $ )}
On commence par résoudre l'équation homogène en enlevant la partie fonction ($ f $ ).
\begin { equation*}
y' + ay = 0
\end { equation*}
Cela nous donne la première forme~: $ y' = - ay $ , dont on connaît la solution~:
\begin { equation*}
y_ h = \lambda e^ { -ax} , \lambda \in \mathbb { R}
\end { equation*}
\subsubsection { Solution particulière ($ y _ 0 $ )}
On essaie ensuite de trouve une solution particulière de l'équation de départ.
Pour cela, on va passer par une fonction $ y _ 0 $ de même ordre que la fonction $ f $ ~:
\begin { itemize}
\item Pour $ f $ polynôme, un polynôme de même ordre~:
\begin { align*}
x & \rightarrow ax +b \\
x^ 2 & \rightarrow ax^ 2 + bx + c \\
x^ 3 & \rightarrow ax^ 3 + bx^ 2 + cx + d \\
\dots
\end { align*}
\item Pour $ f $ trigonométrique, $ a \cos { x } + b \sin { x } $
\item Pour $ f $ exponentielle, $ P ( x ) e ^ x $ , avec $ P $ de même ordre que le polynôme produit de $ e $ dans $ f $ si ce $ e $ est différent de celui trouvé dans la solution homogène.
Si l'exponentielle est identique, $ P $ doit être de l'ordre du polynôme + 1.
\end { itemize}
On applique alors l'équation de départ à $ y _ 0 $ ~:
\begin { equation*}
y_ 0' + ay_ 0 = f
\end { equation*}
Et on la résoud pour trouver $ a, b, c, \dots $ .
Cela nous donne $ y _ 0 $ , solution particulière.
\subsubsection { Solution générale ($ y $ )}
On applique maintenant la formule~:
\begin { align*}
y & = y_ 0 + y_ h \\
& = y_ 0 + \lambda e^ { -ax} , \lambda \in \mathbb { R} \\
\end { align*}
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}