reopened by
501 views
0 votes
0 votes

Consider the following set : {1,2,3,.....n}. Now consider all possible subset. Two subset S1 and S2 are having edge between them only if their intersection has two common elements.

Find:
a) Number of isolated vertices.
b) Number of components
c) Highest degree possible.



Answers:
a) n+1
b) n+2
c) 3*2n-3

I have problem in c) part answer.
My answer is 2n - n - 2
My Approach:
I believe Highest degree should be of subset: {1,2,3....n} itself.
as it will be connected to every other vertices across.
It only not connected with single element set, phi and itself.
So its degree is 2n - n - 2 which must be highest.
Please suggest suitable approach to it.

reopened by

1 Answer

0 votes
0 votes
Your solution seems correct. But

"intersection has two common elements"

Is it exactly two or at least two?

Related questions

2 votes
2 votes
2 answers
2
shivani2010 asked Jun 12, 2016
4,373 views
An undirected graph is Eulerian if and only if all vertices of G are of the sum of the degrees of all nodes isA. Same degreeB. ODD degreeC. Need not be ODDD. ...
2 votes
2 votes
2 answers
4