分配型计数概率题,核心特征:将有色 / 有型物品分配给不同接收者,每人固定数量,求满足特定颜色全部归不同人的概率。
Q1
A set of
tokens —
red,
white,
blue, and
black — is to be distributed at random to
game players,
tokens per player. The probability that some player gets all the red tokens, another gets all the white tokens, and the remaining player gets the blue token can be written as
, where
and
are relatively prime positive integers. What is
?

Q2
When a certain unfair die is rolled, an even number is
times as likely to appear as an odd number. The die is rolled twice. What is the probability that the sum of the numbers rolled is even?

Q3
Each of
balls is randomly and independently painted either black or white with equal probability. What is the probability that every ball is different in color from more than half of the other
balls?

Q4
How many ways are there to split the integers
through
into
pairs such that in each pair, the greater number is at least
times the lesser number?

Q5
Suppose that
cards numbered
are arranged in a row. The task is to pick them up in numerically increasing order, working repeatedly from left to right. In the example below, cards
are picked up on the first pass,
and
on the second pass,
on the third pass,
on the fourth pass, and
on the fifth pass. For how many of the
possible orderings of the cards will the
cards be picked up in exactly two passes?
![[asy] size(11cm); draw((0,0)--(2,0)--(2,3)--(0,3)--cycle); label("7", (1,1.5)); draw((3,0)--(5,0)--(5,3)--(3,3)--cycle); label("11", (4,1.5)); draw((6,0)--(8,0)--(8,3)--(6,3)--cycle); label("8", (7,1.5)); draw((9,0)--(11,0)--(11,3)--(9,3)--cycle); label("6", (10,1.5)); draw((12,0)--(14,0)--(14,3)--(12,3)--cycle); label("4", (13,1.5)); draw((15,0)--(17,0)--(17,3)--(15,3)--cycle); label("5", (16,1.5)); draw((18,0)--(20,0)--(20,3)--(18,3)--cycle); label("9", (19,1.5)); draw((21,0)--(23,0)--(23,3)--(21,3)--cycle); label("12", (22,1.5)); draw((24,0)--(26,0)--(26,3)--(24,3)--cycle); label("1", (25,1.5)); draw((27,0)--(29,0)--(29,3)--(27,3)--cycle); label("13", (28,1.5)); draw((30,0)--(32,0)--(32,3)--(30,3)--cycle); label("10", (31,1.5)); draw((33,0)--(35,0)--(35,3)--(33,3)--cycle); label("2", (34,1.5)); draw((36,0)--(38,0)--(38,3)--(36,3)--cycle); label("3", (37,1.5)); [/asy]](https://latex.artofproblemsolving.com/6/e/9/6e932ec00fe0f762da98425d4ce220c09f53bc99.png)

Q6
How many strings of length
formed from the digits
,
,
,
,
are there such that for each
, at least
of the digits are less than
? (For example,
satisfies this condition because it contains at least
digit less than
, at least
digits less than
, at least
digits less than
, and at least
digits less than
. The string
does not satisfy the condition because it does not contain at least
digits less than
.)

Q7
Each square in a
grid is randomly filled with one of the
gray and white tiles shown below on the right.
What is the probability that the tiling will contain a large gray diamond in one of the smaller
grids? Below is an example of such tiling.![[asy] size(2cm); fill((1,0)--(0,1)--(0,2)--(1,1)--cycle,mediumgray); fill((2,0)--(3,1)--(2,2)--(1,1)--cycle,mediumgray); fill((1,2)--(1,3)--(0,3)--cycle,mediumgray); fill((1,2)--(2,2)--(2,3)--cycle,mediumgray); fill((3,2)--(3,3)--(2,3)--cycle,mediumgray); draw((0,0)--(3,0)--(3,3)--(0,3)--cycle,gray); draw((1,0)--(1,3)--(2,3)--(2,0),gray); draw((0,1)--(3,1)--(3,2)--(0,2),gray); [/asy]](https://latex.artofproblemsolving.com/8/d/9/8d9055c9c5a4feb6f71e870557f61ce1d6b5033a.png)

Q1 4/385 389
Q2 5/8
Q3 20/64 5/16
Q4 144
Q5 8178
Q6 1296
Q7 1/64
Leave a Reply
You must be logged in to post a comment.