asked 230k views
0 votes
Given that B=(1,2,3,4) how many subsets have exactly two elements?

asked
User Kokulan
by
7.9k points

2 Answers

2 votes
The followings are the subset of {1,2,3,4}
a) {1,2,3,4} = 4 subsets
b) {12,13,14} = 3 subsets
c) {23,24} = 2 subsets
d) {34} = 1 subsets
e) {123,124,134,234} = 4 subsets
f) {1234} = 1 subsets.
g) AND DON'T FORGET THE EMPTY ELEMENT {} or {φ) = 1

In total you have 16 subsets.
Another way to calculate it quickly:
You count the number of initial elements {1234} = 4

Then you raise 2 to the power of 4: →→ 2⁴ = 16
So if you have n elements in a set you will get 2ⁿ subelements


answered
User Melicent
by
7.5k points
2 votes
Given that B=(1,2,3,4) how many subsets have exactly two elements?

4C2 =
4! 4! 4 x 3
------------ = -------------- = --------------- = 6
2! (4-2)! 2! 2! 2 x 1

answer is 6
answered
User Dmitry Papka
by
7.6k points

No related questions found

Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.