Update toy_document_fr.Rmd

parent 9bfcd663
......@@ -11,5 +11,21 @@ knitr::opts_chunk$set(echo = TRUE)
```
## En demandant à la lib maths
Mon ordinateur m’indique que $\pi$ vaut *approximativement*
Mon ordinateur m’indique que π vaut *approximativement*
\ No newline at end of file
```{r cars}
pi
```
## En utilisant la méthode des aiguilles de Buffon
Mais calculé avec la **méthode** des [aiguilles de Buffon](https://fr.wikipedia.org/wiki/Aiguille_de_Buffon), on obtiendrait comme **approximation** :
```{r cars}
set.seed(42)
N = 100000
x = runif(N)
theta = pi/2*runif(N)
2/(mean(x+sin(theta)>1))
```
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment