Skip to main content

কীভাবে Combinations গণনা করবেন

Combinations কি?

Combinations count the number of ways to select k items from n items without regard to order. Written as C(n,k) or "n choose k", used in probability and statistics.

সূত্র

C(n,k) = n! / (k! × (n-k)!)

ধাপে ধাপে নির্দেশিকা

  1. 1Enter n (total items) and k (items to select)
  2. 2Calculate factorials n!, k!, and (n-k)!
  3. 3Divide n! by the product of k! and (n-k)!

সমাধান করা উদাহরণ

ইনপুট
C(5,2)
ফলাফল
10
5! / (2! × 3!) = 120 / 12 = 10

এড়ানোর সাধারণ ভুল

  • Confusing combinations with permutations
  • Incorrect factorial calculations

গণনা করতে প্রস্তুত? বিনামূল্যে Combinations ক্যালকুলেটর চেষ্টা করুন

নিজে চেষ্টা করে দেখুন →

সেটিংস