answersLogoWhite

0


Best Answer

64. You can use Pascal's triangle to figure out how many subsets have no elements, one element, two elements and so on. For this particular one, you will have 6 subsets with one element, 15 with two, 20 with three, 15 with four, 6 with five and only one each of all six and none at all.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

hiiiiibyeeee66

Lvl 3
2y ago

64

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

4

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How many subsets are in this set a b c d e f?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the subsets of a b c and d?

{a,b,c,d} {a,b} {a,c} {a,d} {b,c} {b,d} {c,d}


Is 6 the total number of subsets of A B C?

No


How do you list 3 element subsets of a 7 element set?

If your 7 element set is {a, b, c, d, e, f, g}, you would list a 3 element subset by taking any 3 elements of the set eg., {a, d, g} or {b, c, f}, etc. To count all of the subsets, the formula is 7C3, where 7C3 is 7!/(3!*4!), or 35 different unique 3 element subsets of a 7 element set.


How cardinality relates to the number of subsets of a set?

Cardinality is simply the number of elements of a given set. You can use the cardinality of a set to determine which elements will go into the subset. Every element in the subset must come from the cardinality of the original set. For example, a set may contain {a,b,c,d} which makes the cardinality 4. You can choose any of those elements to form a subset. Examples of subsets may be {a,c} {a, b, c} etc.


What is an example of a proper subset?

Let A be the set {1,2,3,4} B is {1,2} and B is a proper subset of A C is {1} and C is also a proper subset of A. B and C are proper subsets of the set A because they are strictly contained in A. necessarily excludes at least one member of A. The set A is NOT a proper subset of itself.


What represents the number of subsets of five elements can be formed from a set of six elements?

c(6,5)


How many subsets can be made from a set with 6 elements?

If a set has six elements, for example {A, B, C, D, E, F}, then it may have the following subsets: - the set itself - 6 sets of five elements - 15 sets of four elements - 20 sets of three elements - 15 sets of two elements - 6 sets of one element - 1 set with no elements (the null set), for a total of 64 sets, which is 2^6, or 2 to the 6th power.


What are examples of a proper subset?

The set {1, 3} is a proper subset of {1, 2, 3}.The set {a, b, c, d, e} is a proper subset of the set that contains all the letters in the alphabet.All subsets of a given set are proper subsets, except for the set itself. (Every set is a subset of itself, but not a proper subset.) The empty set is a proper subset of any non-empty set.This sounds like a school question. To answer it, first make up any set you like. Then, as examples of proper subsets, make sets that contain some, but not all, of the members of your original set.


How many subsets are in a Null set?

even though its carnality is 0 one of its properties says that the only subset of the null set is the empty set * * * * * Carnality refers to sexual desires and I would be greatly surprised if the null set had any of those! The number of subsets of a set whose cardinality is C(S) is 2C(S). The cardinality of the null set is, as the answer was trying to say, 0. So the number of its subsets is 2C(S) = 20 = 1. A null set has one subset - which is also a null set.


What is a proper subsets?

Proper subset definitionA proper subset of a set A is a subset of A that is not equal to A. In other words, if B is a proper subset of A, then all elements of B are in Abut A contains at least one element that is not in B.For example, if A={1,3,5} then B={1,5} is a proper subset of A. The set C={1,3,5} is a subset of A, but it is not a proper subset of A since C=A. The set D={1,4} is not even a subset of A, since 4 is not an element of A.


Write a procedure in TCL for Fibonacci series?

puts "0" set a 0 set b 1 set c 0 for {set i 1} {$i < 8} {incr i} { set a $b set b $c set c [expr $b + $a] puts $c } -------->by No Rule


Why does a set containing n element have 2n subsets?

I presume you meant 2^n (2 raised to the nth power), not 2*n (2 times n). That's answers.com's character set problem again (I trust, giving you the benefit of the doubt). The answer is that for each of the n elements, it is either in any particular subset or it isn't. Which elements are in and which are not in a subset defines the subset. So for example, if n is 3, say a, b, and c, there are 2 sub-collections of the set of all subsets: those containing a and those not containing a. In each of those sub-collections, there are 2 sub-collections based on whether they contain b, for a total of 4 (2*2) sub-collections. Finally, of each of these 4, there are 2 subsets: those containing c and those not containing c, for a total of 8 (2*2*2 or 2^3) subsets. Got it?