From f795157f2e152f8fe85f5383c7b26c4259225445 Mon Sep 17 00:00:00 2001 From: Mark Date: Fri, 24 Jan 2025 22:49:49 -0800 Subject: [PATCH] Added "Tuesday" warm-up Reviewed-on: https://git.betalupi.com/Mark/handouts/pulls/8 Co-authored-by: Mark Co-committed-by: Mark --- src/Warm-Ups/Tuesday/main.typ | 26 ++++++++++++++++++++++++++ src/Warm-Ups/Tuesday/meta.toml | 6 ++++++ 2 files changed, 32 insertions(+) create mode 100644 src/Warm-Ups/Tuesday/main.typ create mode 100644 src/Warm-Ups/Tuesday/meta.toml diff --git a/src/Warm-Ups/Tuesday/main.typ b/src/Warm-Ups/Tuesday/main.typ new file mode 100644 index 0000000..11d379f --- /dev/null +++ b/src/Warm-Ups/Tuesday/main.typ @@ -0,0 +1,26 @@ +#import "@local/handout:0.1.0": * + +#show: handout.with( + title: [Warm-Up: Tuesday], + by: "Mark", +) + +#problem() +Charlie has two children. \ +One of them is a boy born on a Tuesday. \ +What is the probability that Charlie has two boys? + +#solution([ + $13 / 27$, which notably isn't $1/2$. + + #v(2mm) + + Draw a $14 times 14$ square, highlight the possible cases, and you'll see it. \ + + #v(2mm) + + Order is very important in this problem. \ + If we knew that the _first_ child was a boy born on Tuesday, + the probability of two boys would be $1/2$. \ + Also consider a smaller case where a week has two days. +]) diff --git a/src/Warm-Ups/Tuesday/meta.toml b/src/Warm-Ups/Tuesday/meta.toml new file mode 100644 index 0000000..a81be14 --- /dev/null +++ b/src/Warm-Ups/Tuesday/meta.toml @@ -0,0 +1,6 @@ +[metadata] +title = "Tuesday" + +[publish] +handout = true +solutions = true