5 Calcule des primitives
📅 May 05, 2026 | 👁️ Views: 1
📄 What you'll find on this page:
• The Course PDF is embedded below — you can read and scroll through it directly without leaving the page.
• A direct download button is available at the bottom for offline access.
• You'll also discover related exams, courses, and exercises tailored to the same subject and level.
• The complete LaTeX source code is included below for learning or customization.
• Need your own materials professionally formatted? I offer a LaTeX typesetting service — send me your content and get a clean PDF + source file at a symbolic price.
📄 ماذا ستجد في هذه الصفحة:
• ملف الدرس بصيغة PDF معروض أدناه — يمكنك تصفحه والاطلاع عليه مباشرة دون الحاجة لتحميله.
• يتوفر زر تحميل مباشر في أسفل الصفحة للاحتفاظ بالملف على جهازك.
• ستجد أيضًا مجموعة من الامتحانات والدروس والتمارين المرتبطة بنفس الدرس لتعزيز فهمك.
• تم تضمين الكود الكامل بلغة LaTeX أسفل الصفحة لمن يرغب في التعديل عليه أو التعلم منه واستخدامه.
• هل تحتاج تنسيقًا احترافيًا لموادك الخاصة؟ أقدم خدمة تنضيد LaTeX — أرسل محتواك واحصل على PDF نظيف وملف مصدر بسعر رمزي.
This PDF covers maths course for 2-bac-science students. Designed to help you master the topic efficiently.
\documentclass[10pt,landscape,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage[margin=1cm]{geometry}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{multicol}
\usepackage{tikz}
\usepackage[many]{tcolorbox}
\usepackage{xcolor}
% Custom Colors
\definecolor{myyellow}{HTML}{FFF9C4}
\definecolor{mycyan}{HTML}{B2EBF2}
\definecolor{mygreen}{HTML}{DCEDC8}
\definecolor{mypink}{HTML}{F8BBD0}
\definecolor{myblue}{HTML}{BBDEFB}
\definecolor{myorange}{HTML}{FFE0B2}
% Custom Box Styles
\tcbset{
sectionbox/.style 2 args={
colback=#1!30,
colframe=#1!90!black,
fonttitle=\bfseries\sffamily,
title=#2,
boxrule=1pt,
arc=4pt,
left=1.5mm, right=1.5mm, top=1.5mm, bottom=1.5mm,
toptitle=1mm, bottomtitle=1mm,
enhanced,
drop shadow
},
examplebox/.style={
colback=white,
colframe=gray!50,
fonttitle=\bfseries\small,
coltitle=black,
title=Astuce / Application,
boxrule=0.5pt,
arc=2pt,
left=1mm, right=1mm, top=1mm, bottom=1mm,
toptitle=0.5mm, bottomtitle=0.5mm,
fontupper=\small
}
}
\begin{document}
% ==========================================
% EN-TÊTE
% ==========================================
\begin{center}
\begin{tcolorbox}[
enhanced,
colback=myblue!10,
colframe=myblue!90!black,
arc=6pt,
boxrule=1.5pt,
drop shadow,
width=0.85\textwidth,
halign=center
]
{\Huge \bfseries \textsf{\textcolor{myblue!90!black}{Résumé de Cours : Les Primitives}}} \\
\vspace{0.3cm}
{\LARGE \bfseries Prof : \textcolor{red!70!black}{SOUHAIL Mohamed} \quad \textcolor{gray}{\textbf{|}} \quad \textsf{Lycée Ibnou Batouta}}
\end{tcolorbox}
\end{center}
\begin{multicols}{3}
% ==========================================
% 1. DÉFINITION ET PROPRIÉTÉS
% ==========================================
\begin{tcolorbox}[sectionbox={myyellow}{{1. Définition et Propriétés}}]
Soit $f$ une fonction continue sur un intervalle $I$.\\
On appelle \textbf{fonction primitive} de $f$ sur $I$, toute fonction $F$ dérivable sur $I$ telle que :
$$ \forall x \in I, \quad F'(x) = f(x) $$
\textbf{Ensemble des primitives :}\\
Si $F$ est une primitive de $f$ sur $I$, alors toutes les primitives de $f$ sur $I$ sont de la forme :
$$ \mathbf{x \mapsto F(x) + c} \quad (c \in \mathbb{R}) $$
\textbf{Linéarité :}\\
Si $F$ et $G$ sont des primitives de $f$ et $g$, alors :\\
- $F+G$ est une primitive de $f+g$\\
- $kF$ est une primitive de $k f$ ($k \in \mathbb{R}$)
\end{tcolorbox}
% ==========================================
% 2. CONDITION INITIALE
% ==========================================
\begin{tcolorbox}[sectionbox={mycyan}{{2. Primitive vérifiant une condition}}]
Toute fonction continue sur un intervalle $I$ admet une infinité de primitives.\\
Cependant, pour tout $x_0 \in I$ et $y_0 \in \mathbb{R}$, il existe une \textbf{unique} primitive $F$ de $f$ sur $I$ qui vérifie la condition initiale :
$$ F(x_0) = y_0 $$
\begin{tcolorbox}[examplebox, title={Méthode : Trouver la constante $c$}]
Déterminer la primitive $F$ de $f(x) = 2x + 3$ telle que $F(1) = 5$.\\
1. \textbf{Forme générale :} $F(x) = x^2 + 3x + c$\\
2. \textbf{Utiliser la condition :} $F(1) = 5$\\
$1^2 + 3(1) + c = 5 \implies 4 + c = 5 \implies c = 1$\\
3. \textbf{Conclusion :} $F(x) = x^2 + 3x + 1$
\end{tcolorbox}
\end{tcolorbox}
% ==========================================
% 3. FONCTIONS USUELLES
% ==========================================
\begin{tcolorbox}[sectionbox={myorange}{{3. Primitives Usuelles}}]
Dans le tableau suivant, $c$ est une constante réelle.\\
\begin{center}
\renewcommand{\arraystretch}{1.5}
\begin{tabular}{|c|c|}
\hline
\textbf{Fonction $\mathbf{f(x)}$} & \textbf{Primitive $\mathbf{F(x)}$} \\
\hline
$a$ (constante) & $ax + c$ \\
\hline
$x$ & $\frac{1}{2}x^2 + c$ \\
\hline
$x^n \ (n \in \mathbb{N})$ & $\frac{1}{n+1}x^{n+1} + c$ \\
\hline
$x^r \ (r \in \mathbb{Q} \setminus \{-1\})$ & $\frac{1}{r+1}x^{r+1} + c$ \\
\hline
$\frac{1}{\sqrt{x}} \ (x > 0)$ & $2\sqrt{x} + c$ \\
\hline
\end{tabular}
\end{center}
\textit{Remarque :} La règle $x^r \to \frac{x^{r+1}}{r+1}$ fonctionne pour tous les exposants rationnels (puissances, fractions, négatifs) \textbf{sauf} pour $r = -1$ (c'est-à-dire $\frac{1}{x}$).
\end{tcolorbox}
% ==========================================
% 4. FONCTIONS TRIGONOMÉTRIQUES
% ==========================================
\begin{tcolorbox}[sectionbox={mygreen}{{4. Primitives Trigonométriques}}]
\begin{center}
\renewcommand{\arraystretch}{1.5}
\begin{tabular}{|c|c|}
\hline
\textbf{Fonction $\mathbf{f(x)}$} & \textbf{Primitive $\mathbf{F(x)}$} \\
\hline
$\cos(x)$ & $\sin(x) + c$ \\
\hline
$\sin(x)$ & $-\cos(x) + c$ \\
\hline
$\cos(ax+b) \ (a \neq 0)$ & $\frac{1}{a}\sin(ax+b) + c$ \\
\hline
$\sin(ax+b) \ (a \neq 0)$ & $-\frac{1}{a}\cos(ax+b) + c$ \\
\hline
$1 + \tan^2(x) = \frac{1}{\cos^2(x)}$ & $\tan(x) + c$ \\
\hline
\end{tabular}
\end{center}
\begin{tcolorbox}[examplebox]
Primitive de $f(x) = \sin(2x - \pi)$ :\\
Ici $a = 2$. Donc $F(x) = -\frac{1}{2}\cos(2x - \pi) + c$.
\end{tcolorbox}
\end{tcolorbox}
% ==========================================
% 5. OPÉRATIONS SUR LES PRIMITIVES
% ==========================================
\begin{tcolorbox}[sectionbox={mypink}{{5. Opérations (Fonctions Composées)}}]
Soit $u$ une fonction dérivable. Ces règles sont indispensables pour l'examen !
\begin{center}
\renewcommand{\arraystretch}{1.8}
\begin{tabular}{|c|c|}
\hline
\textbf{La fonction $\mathbf{f}$} & \textbf{La primitive $\mathbf{F}$} \\
\hline
$u'(x) \cdot u(x)$ & $\frac{1}{2}[u(x)]^2 + c$ \\
\hline
$u'(x) \cdot [u(x)]^n$ & $\frac{1}{n+1}[u(x)]^{n+1} + c$ \\
$(n \neq -1)$ & \\
\hline
$\frac{u'(x)}{\sqrt{u(x)}} \ (u > 0)$ & $2\sqrt{u(x)} + c$ \\
\hline
$u'(x) \cdot \cos(u(x))$ & $\sin(u(x)) + c$ \\
\hline
$u'(x) \cdot \sin(u(x))$ & $-\cos(u(x)) + c$ \\
\hline
\end{tabular}
\end{center}
\end{tcolorbox}
% ==========================================
% 6. ASTUCES DE CALCUL
% ==========================================
\begin{tcolorbox}[sectionbox={myblue}{{6. Méthodologie et Astuces}}]
\textbf{Apparition de la dérivée :}\\
Très souvent, $f(x)$ ne ressemble pas directement à $u' \cdot u^n$. Il faut multiplier et diviser par une constante pour faire apparaître $u'(x)$.
\begin{tcolorbox}[examplebox, title={Exemple classique}]
Trouver les primitives de $f(x) = x \sqrt{x^2 + 1}$.\\
On pose $u(x) = x^2 + 1 \implies u'(x) = 2x$.\\
On remarque qu'il manque un "$2$" dans $f(x)$.\\
On réécrit $f$ :
$ f(x) = \frac{1}{2} \cdot \mathbf{2x} \cdot (x^2+1)^{\frac{1}{2}}
= \frac{1}{2} \cdot u'(x) \cdot [u(x)]^{\frac{1}{2}} $\\
En appliquant la règle $u' \cdot u^r \to \frac{u^{r+1}}{r+1}$ (avec $r = \frac{1}{2}$) :\\
$F(x) = \frac{1}{2} \cdot \frac{(x^2+1)^{\frac{3}{2}}}{\frac{3}{2}} + c = \frac{1}{3} \sqrt{(x^2+1)^3} + c$
\end{tcolorbox}
\end{tcolorbox}
\end{multicols}
\end{document}
✨ Get your own materials formatted with LaTeX
Explore more maths content for 2-bac-science:
Related Courses, Exams, and Exercises
Frequently Asked Questions
What will I learn by the end of this course?
You will gain a solid understanding of Résumés de cours de Pr: SOUHAIL Mohamed and be able to apply it in exams and real‑world problems.
What topics are covered in this course?
The course "Résumés de cours de Pr: SOUHAIL Mohamed" covers key concepts of maths for 2-bac-science. Designed to help students master the curriculum.
Is this course suitable for beginners?
Yes, the material is structured to be accessible while providing depth for advanced learners.
Are there exercises or practice problems?
Exercises are included to help you practice.
Does this course include solutions?
Solutions are available separately.