将 k 种事物排列在 n 个地方的方法数
好的,问题是这样的: 我有 2 个位置和两种类型的卡片 A 和 B。我可以用多少种方式将它们排列在给定的两个位置。对于这种情况,答案是:
AA
AB
BA
BB
所以 4。
对于其他情况也类似,例如 3 个位置和 2 种类型的卡片或 4 个位置和 5 种类型的卡片。
这个的一般公式是什么?
ok the problem is this:
I have 2 places and two types of cards A and B. In how many ways can I arrange these at the given two places. For this scenario, answer is :
AA
AB
BA
BB
so 4.
similarly for other cases like 3 places and 2 types of cards or 4 places and 5 types of cards.
What is the general formula for this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有
p
个位置和k
种卡片,则公式为pow(k, p)
,即k
code> 的p
次方。If you have
p
places andk
types of cards, the formula ispow(k, p)
, that isk
to the powerp
.