Advertisement
Guest User

Untitled

a guest
Jan 13th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.79 KB | None | 0 0
  1. \documentclass{beamer}
  2. \usetheme{Warsaw}
  3. \usefonttheme{serif}
  4. \usepackage[french]{babel}
  5. \usepackage[T1]{fontenc}
  6. \usepackage{amsmath, amssymb, tkz-tab}
  7. \usepackage{tkz-tab}
  8. % Raccourcis
  9. \newcommand{\R}{\mathbb R}
  10. \newcommand{\fonc}[5]{%
  11. #1:\!\!\!
  12. \begin{array}{rcl}
  13.  #2 & \to     & #3\\
  14.  #4 & \mapsto & #5
  15. \end{array}
  16. }
  17.  
  18. % pour appeler la fonction : soit par \fonc{f}{A}{B}{x}{2x}, soit par par \fonc fABx{2x} si il y a des des arguments avec un seul symbole
  19.  
  20. \begin{document}
  21.  
  22. \title{DM Recherche $n ^{\circ} 1$}
  23. \subtitle{Sujet B}
  24. \author[ELIS, MEUNIER, OLLAGNON, FLIN]{Simon ELIS\\Arthur MEUNIER\\Joannès OLLAGNON\\Evan FLIN}
  25. \date{\today}
  26.  
  27. \begin{frame}
  28.  \maketitle
  29. \end{frame}
  30.  
  31. \begin{frame}
  32.  \tableofcontents
  33. \end{frame}
  34.  
  35. \section{Problème 1}
  36.  
  37. \begin{frame}{Problème 1}
  38.  \begin{center}
  39.    Étude de la fonction $\fonc PABx{x^4-(a^2+1)x^2+a^2}$
  40.  \end{center}
  41. \end{frame}
  42.  
  43. \begin{frame}{Étude du signe de la fonction}
  44. On a :
  45. $$
  46. \begin{array}{rcl}
  47.  P(x) & = & x^4-(a^2+1)x^2+a^2\\
  48.       & = & x^4-a^2x^2-x^2+a^2\\
  49.       & = & x^2(x^2-1)-a^2(x^2-1)\\
  50.       & = & (x^2-1)(x^2-a^2)\\
  51.       & = & (x-1)(x+1)(x-a)(x+a)\\
  52.       & = & (x-1)(x+1)(x-|a|)(x+|a|)\\
  53. \end{array}
  54. $$
  55. D'où les tableaux de signes suivants :
  56. \end{frame}
  57. \begin{frame}{Pour $a \in \R \backslash \[-1 ; 1\]$ }
  58.  \begin{tikzpicture}
  59.    \tkzTabInit[lgt=3,espcl=4]{$x$ / 1 , $x-1$ / 1, $x+1$ / 1, $x-|a|$ / 1, $x+|a|$ / 1, $P(x)$ / 1}{$-\infty$, $-|a|$, $-1$, $1$, $|a|$, $+\infty$}
  60.    \tkzTabLine{, -, t, -, t, -, z, +, t, +,}
  61.    \tkzTabLine{, -, t, -, z, +, t, +, t, +,}
  62.    \tkzTabLine{, -, t, -, t, -, t, -, z, +,}
  63.    \tkzTabLine{, -, z, +, t, +, t, +, t, +,}
  64.    \tkzTabLine{, +, z, -, z, +, z, -, z, +,}
  65.  \end{tikzpicture}
  66.  
  67.  
  68. \end{frame}
  69.  
  70. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement