Geometric Probability

1. The Bus Stop (Length)

A bus arrives randomly between 0 and {{ s1.T }} minutes. You wait at the stop for {{ s1.W }} minutes.

Drag the zone

No matter where you place the wait time, its length is the favorable outcome.
Build the probability fraction:

{{ opt }}
{{ s1.numDrop !== null ? s1.numDrop : '?' }}
{{ s1.denDrop !== null ? s1.denDrop : '?' }}

2. Target Practice (Area)

Throw darts at the board! The total radius is R = {{ s2.R }}. The inner circle radius is r = {{ s2.r }}.

Tap to throw ({{ 5 - s2.darts.length }} left)
Hits: {{ s2.hits }}
Throws: {{ s2.darts.length }}

Empirical probability is ~{{ (s2.hits/5).toFixed(2) }}.
Calculate the exact theoretical probability:

Correct! Area is proportional to radius squared.

3. The Meeting Problem

Alice and Bob arrive randomly between 12:00 and 1:00 (60 mins). They meet if they arrive within {{ s3.W }} minutes of each other. The green band is the "meeting" region.

Drag top-left triangle to bottom-right
Formed a square!

The unshaded triangles form a square of side 60 - {{ s3.W }} = {{ 60 - s3.W }}.
So, unshaded area = {{ (60-s3.W)**2 }}.

4. Final Challenge

A square dartboard of side 2R has an inscribed circle of radius R. What is the probability of landing in the corners?

Tap all 4 corners

Favorable Area = Area(Square) - Area(Circle)

Build the final simplified fraction:

{{ opt }}
{{ s4.numDrop !== null ? s4.numDrop : '?' }}
{{ s4.denDrop !== null ? s4.denDrop : '?' }}