Skip to content

Instantly share code, notes, and snippets.

@kamalbanga
Last active March 1, 2020 17:22
Show Gist options
  • Save kamalbanga/e1026ad363c5e4c8e4a9f2fdf6da2079 to your computer and use it in GitHub Desktop.
Save kamalbanga/e1026ad363c5e4c8e4a9f2fdf6da2079 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [],
"source": [
"from random import choices, sample\n",
"from statistics import mean"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [],
"source": [
"# Simulates an experiment to generate k independent uniformly random birthdays \n",
"# and check if there are any repeat birthdays\n",
"\n",
"def common_birthday(k):\n",
" birthdays = choices(range(1, 366), k=k)\n",
" return len(set(birthdays)) != k"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0.4979"
]
},
"execution_count": 10,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"mean(common_birthday(23) for _ in range(10000))"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [],
"source": [
"def matching(k=52):\n",
" '''Simulates an experiment to permute 'k' cards and check if any jth card's value is j'''\n",
" idx_labels = enumerate(sample(range(k), k))\n",
" return any(idx == label for idx, label in idx_labels)"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0.6421"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"mean(matching() for _ in range(10000))"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.5"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment