87 lines
2.2 KiB
TeX
87 lines
2.2 KiB
TeX
\documentclass[a4paper,10pt]{article}
|
|
\usepackage{myXsim}
|
|
\usepackage{minted}
|
|
|
|
\author{Benjamin Bertrand}
|
|
\title{Introduction Probabilités - Cours}
|
|
\date{janvier 2023}
|
|
|
|
\pagestyle{empty}
|
|
|
|
\begin{document}
|
|
|
|
\section{Python et l'aléatoire}
|
|
|
|
Par défaut, Python ne sait pas faire d'aléatoire. Il faut donc importer quelques fonctions depuis \mintinline{python}{random} (aléatoire en anglais).
|
|
|
|
\begin{center}
|
|
\begin{minipage}{0.5\linewidth}
|
|
\begin{minted}[bgcolor=base3,linenos]{python}
|
|
from random import random, randint, choice
|
|
\end{minted}
|
|
\end{minipage}
|
|
\end{center}
|
|
|
|
La commande précédente a importé 3 fonctions qui permettent de faire de l'aléatoire :
|
|
|
|
\begin{itemize}
|
|
\item \mintinline{python}{random()}: cette fonction donne un nombre aléatoire entre 0 et 1
|
|
\begin{center}
|
|
\begin{minipage}{0.5\linewidth}
|
|
\begin{minted}[bgcolor=base3,linenos]{python}
|
|
>>> random()
|
|
0.9689733689484863
|
|
\end{minted}
|
|
\end{minipage}
|
|
\end{center}
|
|
|
|
\item \mintinline{python}{randint(a, b)}: cette fonction donne un nombre entier aléatoire entre a et b
|
|
\begin{center}
|
|
\begin{minipage}{0.5\linewidth}
|
|
\begin{minted}[bgcolor=base3,linenos]{python}
|
|
>>> randint(3, 13)
|
|
11
|
|
\end{minted}
|
|
\end{minipage}
|
|
\end{center}
|
|
|
|
\item \mintinline{python}{choice()}: cette fonction choisi aléatoirement un element dans une liste
|
|
\begin{center}
|
|
\begin{minipage}{0.5\linewidth}
|
|
\begin{minted}[bgcolor=base3,linenos]{python}
|
|
>>> matieres = ["math", "français", "Histoire"]
|
|
>>> choice(matieres)
|
|
"math"
|
|
\end{minted}
|
|
\end{minipage}
|
|
\end{center}
|
|
|
|
\end{itemize}
|
|
|
|
\paragraph{Exemple}
|
|
\begin{itemize}
|
|
\item On veut simuler l'expérience aléatoire qui consiste à lancer trois dés à 100 faces et de faire la somme des résultats
|
|
\begin{center}
|
|
\begin{minipage}{0.5\linewidth}
|
|
\begin{minted}[bgcolor=base3]{python}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
\end{minted}
|
|
\end{minipage}
|
|
\end{center}
|
|
\end{itemize}
|
|
\afaire{Écrire ce programme qui réalise cette simulation}
|
|
|
|
|
|
\end{document}
|