Bopytex/example/1_example.tex

114 lines
2.6 KiB
TeX
Raw Normal View History

2015-02-08 16:04:05 +00:00
\documentclass[a4paper,10pt]{article}
\RequirePackage[utf8x]{inputenc}
\RequirePackage[francais]{babel}
\RequirePackage{amssymb}
\RequirePackage{amsmath}
\RequirePackage{amsfonts}
\RequirePackage{subfig}
\RequirePackage{graphicx}
\RequirePackage{color}
2015-01-06 08:22:52 +00:00
% Title Page
2015-02-08 16:04:05 +00:00
\title{Calcul littéral et statistiques}
\date{\today}
2015-01-06 08:22:52 +00:00
\begin{document}
\maketitle
2015-02-08 16:04:05 +00:00
\section{Polynômes}
2015-01-06 08:22:52 +00:00
2015-02-08 16:04:05 +00:00
Résoudre l'équation suivante
\begin{eqnarray*}
2015-03-19 21:05:00 +00:00
- 3 x^{ 2 } + 6 x - 3 & = & 0
2015-02-08 16:04:05 +00:00
\end{eqnarray*}
Solution:
2015-01-06 08:22:52 +00:00
2015-02-08 16:04:05 +00:00
On commence par calculer le discriminant
\begin{eqnarray*}
\Delta & = & b^2-4ac \\
2015-03-19 21:05:00 +00:00
\Delta & = & 6^{ 2 } - 4 \times ( -3 ) \times ( -3 ) \\
\Delta & = & 36 - ( -12 ) \times ( -3 ) \\
\Delta & = & 36 - 36 \\
2015-02-08 16:04:05 +00:00
\Delta & = & 0
\end{eqnarray*}
2015-01-06 08:22:52 +00:00
2015-02-08 16:04:05 +00:00
Alors $\Delta = 0 = 0$ donc il y a une solution
2015-01-06 08:22:52 +00:00
2015-02-08 16:04:05 +00:00
2015-01-06 08:22:52 +00:00
2015-02-08 16:04:05 +00:00
\begin{eqnarray*}
2015-03-19 21:05:00 +00:00
x_1 = \frac{-b}{2a} = \frac{ -6 }{ 2 \times ( -3 ) } = \frac{ -6 }{ -6 } = \frac{ 6 }{ 6 } = 1 = \frac{ -6 }{ -6 }
2015-02-08 16:04:05 +00:00
\end{eqnarray*}
2015-01-06 08:22:52 +00:00
2015-03-19 21:05:00 +00:00
Les solutions sont donc $\mathcal{S} = \left\{ \frac{ -6 }{ -6 }\right\}$
2015-01-06 08:22:52 +00:00
2015-02-08 16:04:05 +00:00
\bigskip
~\dotfill
\bigskip
2015-01-06 08:22:52 +00:00
Résoudre l'équation suivante
\begin{eqnarray*}
2015-03-19 21:05:00 +00:00
- 7 x^{ 2 } - 7 x + 9 & = & - 2 x^{ 2 } + x - 9
2015-01-06 08:22:52 +00:00
\end{eqnarray*}
Solution:
2015-02-08 16:04:05 +00:00
On commence par se ramener à une équation de la forme $ax^2+bx+c = 0$.
2015-01-06 08:22:52 +00:00
\begin{eqnarray*}
2015-03-19 21:05:00 +00:00
- 7 x^{ 2 } - 7 x + 9 = - 2 x^{ 2 } + x - 9 & \Leftrightarrow & - 7 x^{ 2 } - 7 x + 9 - (- 2 x^{ 2 } + x - 9) = 0 \\
& \Leftrightarrow & - 7 x^{ 2 } + 2 x^{ 2 } - 7 x - x + 9 + 9= 0 \\
& \Leftrightarrow & ( ( -7 ) + 2 ) x^{ 2 } + ( ( -7 ) + ( -1 ) ) x + 9 + 9= 0 \\
& \Leftrightarrow & - 5 x^{ 2 } - 8 x + 18= 0
2015-01-06 08:22:52 +00:00
\end{eqnarray*}
2015-02-08 16:04:05 +00:00
2015-03-19 21:05:00 +00:00
On cherche maintenant à résoudre l'équation $- 5 x^{ 2 } - 8 x + 18 = 0$.
2015-02-08 16:04:05 +00:00
On commence par calculer le discriminant
2015-01-06 08:22:52 +00:00
\begin{eqnarray*}
2015-02-08 16:04:05 +00:00
\Delta & = & b^2-4ac \\
2015-03-19 21:05:00 +00:00
\Delta & = & ( -8 )^{ 2 } - 4 \times ( -5 ) \times 18 \\
\Delta & = & 64 - ( -20 ) \times 18 \\
\Delta & = & 64 - ( -360 ) \\
\Delta & = & 424
2015-02-08 16:04:05 +00:00
\end{eqnarray*}
2015-01-06 08:22:52 +00:00
2015-03-19 21:05:00 +00:00
Alors $\Delta = 424 > 0$ donc il y a deux solutions
2015-02-08 16:04:05 +00:00
2015-01-06 08:22:52 +00:00
2015-02-08 16:04:05 +00:00
\begin{eqnarray*}
2015-03-19 21:05:00 +00:00
x_1 & = & \frac{-b - \sqrt{\Delta}}{2a} = \frac{-8 - \sqrt{424}}{2 \times -5} = 1.26 \\
x_2 & = & \frac{-b + \sqrt{\Delta}}{2a} = \frac{-8 + \sqrt{424}}{2 \times -5} = -2.86
2015-02-08 16:04:05 +00:00
\end{eqnarray*}
2015-03-19 21:05:00 +00:00
Les solutions sont donc $\mathcal{S} = \left\{ 1.26; -2.86 \right\}$
2015-02-08 16:04:05 +00:00
2015-01-06 08:22:52 +00:00
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: "master"
%%% End: