From fbb755fcf2d16e8c761ccb7753e324152d99ed36 Mon Sep 17 00:00:00 2001 From: Simon Veitner Date: Tue, 9 Jul 2024 09:39:45 +0200 Subject: [PATCH] Changed title --- _posts/2024-07-08-combination-permutation.md | 4 +--- _posts/2024-07-08-introduction-probability.md | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/_posts/2024-07-08-combination-permutation.md b/_posts/2024-07-08-combination-permutation.md index b86123f..f0a2a76 100644 --- a/_posts/2024-07-08-combination-permutation.md +++ b/_posts/2024-07-08-combination-permutation.md @@ -1,12 +1,10 @@ --- -title: "Combinations and Probabilities." +title: "Permutations and Combinations." categories: - Basic Probability tags: - Probability --- -# Permutations and Combinations - An ordered set of elements in `[n]={1,2,...,n}` is called a *permutation*. If we consider an ordered subset with r elements in a set of n elements we call this an *r permutation*. diff --git a/_posts/2024-07-08-introduction-probability.md b/_posts/2024-07-08-introduction-probability.md index a707b01..56c7ce9 100644 --- a/_posts/2024-07-08-introduction-probability.md +++ b/_posts/2024-07-08-introduction-probability.md @@ -5,8 +5,6 @@ categories: tags: - Probability with Python --- -# Introduction - Let us start with the notion of a *sample space*. A sample space describes the set of all possible outcomes when performing an experiment. Let us consider a simple coin throw. The sample space is simply `{H, T}`. We can get either Heads or Tails as a result. @@ -117,6 +115,6 @@ Fraction(len(event), len(sample_space_dices)) ``` Fraction(1, 6) ``` -We see that the probability of these event to occur is 1/6. +We see that the probability of this event to occur is 1/6. If you want to see more about the topics discussed here you may find the corresponding lecture [by Harry Crane](https://www.youtube.com/watch?v=2Xwk6yNq9og) interesting. \ No newline at end of file