Coupon Collector Problem - Two Coupons (Source Code)

c0, c1 = 0, 0
new_box = 1
boxes = 0
while new_box == 1:
    coupon = Bernoulli(1/2)
    if coupon == 0:
        c0 = 1
    else:
        c1 = 1
    end
    boxes = boxes + new_box
    new_box = 1 - c0*c1
end


Description

There are boxes of cereals offering inside special coupons of two different types. One needs to collect at least one coupon of each different type to win an award.

What is the expected number of boxes one needs to open in order to collect all different coupons at least one time ?

A description of the general Coupon Collector Problem is explained here.

Click here to see the Coupon Collector Problem with three coupons.
Click here to see the Coupon Collector Problem with four coupons.



Program features Value Dependency Graph
if statements Yes (L) Linear
(NL) nonlinear
Dependency Graph
State space Infinite, discrete
Circular Dependency Yes
Symbolic Constants No
Effective Variables Yes (all)
Defective Variables No


Solving the problem using POLAR:

The expected number of boxes can be calculated using POLAR as: \[\mathbb{E} (boxes) = 3 - \frac{4}{2^n} \]

python polar.py benchmarks/coupon_collector2.prob --goals "E(boxes)"

8888888b.   .d88888b.  888             d8888 8888888b.
888   Y88b d88P" "Y88b 888            d88888 888   Y88b
888    888 888     888 888           d88P888 888    888
888   d88P 888     888 888          d88P 888 888   d88P
8888888P"  888     888 888         d88P  888 8888888P"
888        888     888 888        d88P   888 888 T88b
888        Y88b. .d88P 888       d8888888888 888  T88b
888         "Y88888P"  88888888 d88P     888 888   T88b

By the ProbInG group



------------------
- Parsed program -
------------------
_t0 = 0
_t1 = 0
c0 = _t0
c1 = _t1
new_box = 1
boxes = 0
while new_box == 1:
    coupon = Bernoulli(1/2)
    if coupon == 0:
        c0 = 1
    else:
        c1 = 1
    boxes = boxes + new_box
    new_box = 1 - c0*c1
end

-----------------------
- Transformed program -
-----------------------
types
    c0 : Finite(0, 1)
    c1 : Finite(0, 1)
    new_box : Finite(0, 1)
    _old2 : Finite(0, 1)
    coupon : Finite(0, 1)
end
c0 = 0
c1 = 0
new_box = 1
boxes = 0
while true:
    _old2 = new_box
    coupon = Bernoulli(1/2)  |  _old2 == 1  :  coupon
    c0 = 1  |  (coupon == 0 ∧ _old2 == 1)  :  c0
    c1 = 1  |  (¬(coupon == 0) ∧ _old2 == 1)  :  c1
    boxes = boxes + new_box  |  _old2 == 1  :  boxes
    new_box = 1 - c0*c1  |  _old2 == 1  :  new_box
end

-------------------
- Analysis Result -
-------------------

E(boxes) = 0; 1; 2; 5/2; 3 - 4*2**(-n)
Solution is exact

Elapsed time: 0.4739878177642822 s


Comparison with Monte Carlo simulation:

Parameter Current Value Tuning
Number of program executions:
Number of loop iterations (n):
Exact E(boxes) Approx. E(boxes)