跳到主要内容

九州大学 システム情報科学府 情報理工学専攻・電気電子工学専攻 2023年8月実施 確率・統計

Author

Casablanca, 祭音Myyura

Description

箱の中に N1N_1 個の白いボールと N2N_2 個の黒いボールがあり, その総数を N=N1+N2N = N_1 + N_2 とする。この箱から 22 つのボールをランダムに選び, 両方が白いボールである確率は 1/21/2 であるとする。

(1) N2N_2 が奇数のとき N1N_1 の最小値を求めよ。

(2) N2N_2 が偶数のとき N1N_1 の最小値を求めよ。

(3) NN を値の小さい順に 33 つ求めよ。


A box contains N1N_1 white and N2N_2 black balls, and the total number of balls is N=N1+N2N = N_1 + N_2. When two balls are randomly drawn from the box, the probability that both balls are white is 1/21/2.

(1) Find the minimum value of N1N_1 when N2N_2 is an odd number.

(2) Find the minimum value of N1N_1 when N2N_2 is an even number.

(3) Find the three smallest values of NN.

题目描述

盒中有 N1N_1 个白球和 N2N_2 个黑球,总数为 N=N1+N2N=N_1+N_2。从盒中随机抽取两个球,已知两球均为白球的概率为 1/21/2

  1. N2N_2 为奇数时,求 N1N_1 的最小值。
  2. N2N_2 为偶数时,求 N1N_1 的最小值。
  3. 按从小到大的顺序,求 NN 最小的三个可能值。

Kai

Let AA denote the event "both balls are white", then we have

P(A)=(N12)(N1+N22)=N1(N11)(N1+N2)(N1+N21)P(A) = \frac{\binom{N_1}{2}}{\binom{N_1+N_2}{2}} = \frac{N_1(N_1 - 1)}{(N_1 + N_2)(N_1 + N_2 - 1)}

Since P(A)=12P(A) = \frac{1}{2}, we have

N12N12N1N2N22+N2=0N_1^2 - N_1 - 2N_1N_2 - N_2^2 + N_2 = 0

(1)

Let N2=2k+1N_2 = 2k + 1. Then we have

N12(4k+3)N1+(2k+1)(2k+1)2=0N_1^2 - (4k + 3)N_1 + (2k + 1) - (2k + 1)^2 = 0

from which we have

N1=4k+3±8(2k+1)2+12(i)N_1 = \frac{4k + 3 \pm \sqrt{8(2k + 1)^2 + 1}}{2} \tag{i}

Only the plus sign gives a positive N1N_1. For k=0k=0 it gives N1=3N_1=3, while for k1k\geq1 it is greater than (4k+3)/27/2(4k+3)/2\geq7/2. Hence the minimum is 33.

(2)

Let N2=2kN_2 = 2k. Then we have

N12(4k+1)N1+2k4k2=0N_1^2 - (4k + 1)N_1 + 2k - 4k^2 = 0

from which we get

N1=4k+1±32k2+12(ii)N_1 = \frac{4k + 1 \pm \sqrt{32k^2 + 1}}{2} \tag{ii}

For an admissible solution k1k\geq1, and only the plus sign gives a positive N1N_1. For k=1,2k=1,2, the discriminants 33,12933,129 are not squares; for k=3k=3, it is 17217^2 and N1=15N_1=15. If k4k\geq4, then N1>4k+1/2>15N_1>4k+1/2>15. Hence the minimum is 1515.

(3)

By (i) and (ii), an integer solution requires 8N22+18N_2^2+1 to be a perfect square.

Let 8N22+1=K28N_2^2 + 1 = K^2, we have 8N22=(K1)(K+1)8N_2^2 = (K - 1)(K + 1), which implies that KK is odd.

Let K=2p+1K = 2p + 1. Then we have 2N22=p(p+1)2N_2^2 = p(p+1). The positive solutions of K28N22=1K^2-8N_2^2=1 are generated by

K+8N2=(3+8)m(m1).K+\sqrt{8}N_2=(3+\sqrt{8})^m \qquad (m\geq 1).

The first three are (K,N2)=(3,1),(17,6),(99,35)(K,N_2)=(3,1),(17,6),(99,35). Since

N1=2N2+1+K2,N_1=\frac{2N_2+1+K}{2},

the corresponding values of N=N1+N2N=N_1+N_2 are 4,21,1204,21,120. Both coordinates increase with mm, so these are the three smallest values.