Files
2025-2026/2nd/08_Geometrie_et_racine_carre/2B_geometrie.tex
Bertrand Benjamin 81c83c0b31
Some checks failed
Sync to mirror repository / sync (push) Failing after 50s
Publish content / push (push) Successful in 1m7s
Publish content / build (push) Successful in 2m22s
Publish content / deploy (push) Successful in 1m58s
feat(2nd): seq sur racine carré et géométrie
2025-12-05 11:29:26 +01:00

163 lines
4.8 KiB
TeX

\documentclass[a4paper,10pt]{article}
\usepackage{myXsim}
\author{Benjamin Bertrand}
\title{Géométrie et racine carrée - Cours}
\date{décembre 2025}
\pagestyle{empty}
\begin{document}
\maketitle
\afaire{compléter les pointillés}
\setcounter{section}{1}
\section{Géométrie}
\subsection*{Aire et périmètres}
\begin{propriete}[Formules du carré]
\begin{minipage}{0.7\textwidth}
On note $C$ le côté d'un carré, $P$ son périmètre et $A$ son aire
\begin{center}
\begin{tabular}{|c|p{5cm}|}
\hline
Description & Formule \\
\hline
Périmètre en fonction du côté & $\ldots$\\
\hline
Côté en fonction du périmètre & $\ldots$\\
\hline
Aire en fonction du côté & $\ldots$\\
\hline
Côté en fonction de l'aire & $\ldots$\\
\hline
\end{tabular}
\end{center}
\end{minipage}
\hfill
\begin{minipage}{0.3\textwidth}
\begin{tikzpicture}[scale=0.8]
\draw[thick] (0,0) rectangle (3,3);
\draw (1.5,1.5) node {Aire = $A$};
\draw[<->] (0,-0.5) -- (3,-0.5) node[midway, below] {Côté = $C$};
\end{tikzpicture}
\end{minipage}
\end{propriete}
\begin{propriete}[Formules du disque]
\begin{minipage}{0.7\textwidth}
On note $R$ le rayon d'un disque, $P$ son périmètre et $A$ son aire
\begin{center}
\begin{tabular}{|c|p{5cm}|}
\hline
Description & Formule \\
\hline
Périmètre en fonction du rayon & $\ldots$\\
\hline
Rayon en fonction du périmètre & $\ldots$\\
\hline
Aire en fonction du rayon & $\ldots$\\
\hline
Rayon en fonction de l'aire & $\ldots$\\
\hline
\end{tabular}
\end{center}
\end{minipage}
\hfill
\begin{minipage}{0.3\textwidth}
\begin{tikzpicture}[scale=0.8]
\draw[thick] (0,0) circle (1.5);
\draw (0,0) node [below]{Aire = $A$};
\draw[<->] (0,0) -- (1.5,0) node[midway, above] {$R$};
\end{tikzpicture}
\end{minipage}
\end{propriete}
\subsection*{Théorème de Géométrie}
\begin{propriete}[Théorème de Pythagore]
\begin{minipage}{0.7\textwidth}
Si un triangle est rectangle, alors le carré de l'hypoténuse est égal à la somme des carrés des deux autres côtés.
\vspace{0.5cm}
Si le triangle $ABC$ est rectangle en $A$, alors
\begin{center}
$\ldots$
\end{center}
\end{minipage}
\hfill
\begin{minipage}{0.3\textwidth}
\begin{tikzpicture}[scale=0.8]
\coordinate (A) at (0,0);
\coordinate (B) at (3,0);
\coordinate (C) at (0,2.5);
\draw[thick] (A) -- (B) -- (C) -- cycle;
\draw (A) rectangle (0.3,0.3);
\draw (A) node[below left] {$A$};
\draw (B) node[below right] {$B$};
\draw (C) node[above left] {$C$};
\draw (1.5,0) node[below] {$c$};
\draw (0,1.25) node[left] {$b$};
\draw (1.5,1.5) node[above right] {$a$};
\end{tikzpicture}
\end{minipage}
\end{propriete}
\begin{propriete}[Formules de trigonométrie]
\begin{minipage}{0.7\textwidth}
Dans un triangle rectangle, on définit pour un angle aigu :
\vspace{0.5cm}
\begin{itemize}
\item Le \textbf{cosinus} : $\cos(\widehat{ABC}) = \ldots$
\vspace{0.3cm}
\item Le \textbf{sinus} : $\sin(\widehat{ABC}) = \ldots$
\vspace{0.3cm}
\item La \textbf{tangente} : $\tan(\widehat{ABC}) = \ldots$
\end{itemize}
\end{minipage}
\hfill
\begin{minipage}{0.3\textwidth}
\begin{tikzpicture}[scale=0.8]
\coordinate (A) at (0,0);
\coordinate (B) at (3,0);
\coordinate (C) at (0,2.5);
\draw[thick] (A) -- (B) -- (C) -- cycle;
\draw (A) rectangle (0.3,0.3);
\draw (A) node[below left] {$A$};
\draw (B) node[below right] {$B$};
\draw (C) node[above left] {$C$};
\draw (1.5,0) node[below] {adjacent};
\draw (0,1.25) node[left] {opposé};
\draw (1.8,1.5) node[above right] {hypoténuse};
\draw[->] (2.5,0) arc (180:135:0.5);
\draw (2.2,0.3) node[above left] {$\widehat{ABC}$};
\end{tikzpicture}
\end{minipage}
\end{propriete}
\end{document}