efrei/analyse/main.tex

377 lines
14 KiB
TeX
Raw Normal View History

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
$y' = ay$ & $\lambda e^{ax}$ & $a, \lambda \in \mathbb{R}$ \\
2021-09-11 18:25:39 +02:00
\midrule
$y' = ay + b$ & $-\frac{b}{a} + \lambda e^{ax}$ & $a, b, \lambda \in \mathbb{R}$ \\
2021-09-11 18:25:39 +02:00
\midrule
$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}
\begin{align*}
\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*}
Cela nous donne~:
2021-09-09 10:14:22 +02:00
\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} \\
\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-16 10:10:14 +02:00
\subsection{Équations différentielles du 1er ordre}
2021-09-16 10:10:14 +02:00
Elles sont de la forme $\textcolor{red}{ay' + by = h(x)} (E), a \neq 0, a, b \in \mathbb{R}$, ou $y = y(x)$ est la fonction recherchée.
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-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~:
\begin{equation*}
2021-09-16 10:10:14 +02:00
ay_0' + by_0 = 0 (E_0)
\end{equation*}
2021-09-16 10:10:14 +02:00
Cela nous donne une équation caractéristique~:
2021-09-16 10:10:14 +02:00
\begin{align*}
ar_0 + b &= 0 \\
r_0 &= -\frac{b}{a}
\end{align*}
La solution de $E_0$ est alors $\textcolor{red}{y_0 = \lambda e^{r_0 x}}, \lambda\in\mathbb{R}$.
\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)$~:
\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*}
\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 \\
\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-16 10:10:14 +02:00
\item si $\lambda \neq r_0$~:
\begin{equation*}
\textcolor{red}{y_1(x) = Q_n(x) e^{\lambda x}}
\end{equation*}
\item si $\lambda = r_0$~:
\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*}
\end{itemize}
2021-09-16 10:10:14 +02:00
On applique alors l'équation de départ à $y_1$~:
\begin{equation*}
2021-09-16 10:10:14 +02:00
Ay_1' + By_1 = h(x)
\end{equation*}
2021-09-16 10:10:14 +02:00
Et on la résoud pour trouver $A, B, C, \dots$.
2021-09-16 10:10:14 +02:00
Cela nous donne $y_1$, solution particulière.
2021-09-16 10:10:14 +02:00
\subsubsection{Trouver la solution générale ($y_g$)}
2021-09-16 10:10:14 +02:00
La solution générale de $(E)$ s'écrit~:
2021-09-16 10:10:14 +02:00
\begin{equation*}
y_g = y_0 + y_1
\end{equation*}
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}