vault backup: 2025-07-22 16:59:59

This commit is contained in:
2025-07-22 16:59:59 -04:00
parent dcfb706425
commit 4e829fa06c
40 changed files with 900 additions and 282 deletions
+17
View File
@@ -0,0 +1,17 @@
# Monte Carlo Methods
> [!quote]
> [Monte Carlo methods](https://en.wikipedia.org/wiki/Monte_Carlo_method),
> or Monte Carlo experiments, are a broad class of computational algorithms
> that rely on repeated random sampling to obtain numerical results.
> The underlying concept is to use randomness to solve problems
> that might be deterministic in principle.
Popular examples of Monte Carlo methods include
estimating the area of an irregular shape
by randomly sampling points in a known area,
and estimating the value of pi
by tossing toothpicks onto a ruled surface.
[Professor Art Owen](https://artowen.su.domains/) at Stanford University
has several excellent resources on the subject.