Ask Question
19 July, 02:38

Assume that the set s has 8 elements. how many subsets of s have at most 2 elements?

+3
Answers (1)
  1. 19 July, 04:32
    0
    C (n, k) = n! / k! (n - k) ! = number of k-combinations from a set of n elements.

    The subsets of S that have 0, 1 or 2 elements include C (11,0) empty set, (C11,1) 1-element sets and (C11,2) 2-element sets.

    C (11,0) = 11! / 0! 11! = 11! / 1*11! = 1

    C (11,1) = 11! / 1! 10! = 10!*11 / 1*10! = 11

    C (11,2) = 11! / 2! 9! = 9!*10*11 / 2*9! = 10*11/2 = 55

    The total number of subsets of S that have at most 2 elements is

    1 + 11 + 55 = 67
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Assume that the set s has 8 elements. how many subsets of s have at most 2 elements? ...” in 📘 Mathematics if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers