Loading [MathJax]/jax/output/HTML-CSS/jax.js

First time here? Check out the FAQ!

Ask Your Question
0

Consider the class of simple, connected unicyclic graphs on n vertices (a graph on n vertices is unicyclic, if it has n edges).

asked 3 years ago

anonymous user

Anonymous

updated 3 years ago

Consider the class of simple, connected unicyclic graphs on n vertices (a graph on n vertices is unicyclic, if it has n edges). Now from this collection, consider the collection S of all those graph for which the corresponding adjacency matrices are singular (i.e, having determinant is zero). Now from this collection S, can we find a graph that satisfies the following property: if λ is an non zero eigenvalue of the adjacency matrix iff 1λ is also an eigenvalue of the adjacency matrix.

Preview: (hide)

Comments

Please somebody help

rewi gravatar imagerewi ( 3 years ago )

1 Answer

Sort by » oldest newest most voted
2

answered 3 years ago

Max Alekseyev gravatar image

updated 3 years ago

Something like this will do the job:

def find_graphs(n):
  for g in graphs.nauty_geng(options=f'-c {n} {n}:{n}'):
    f = g.characteristic_polynomial()
    h = f.reverse()
    h /= h.leading_coefficient()
    if f == h:
      g.show()

find_graphs(8)

It finds 3 such graphs of size 8.

Preview: (hide)
link

Comments

Thank you for the answer. But I require those graphs only whose adjacency matrices are singular and the non zero eigenvalues satisfies the stated property. All the 3 graphs, obtained by you, are having non singular adjacecy matrices. I actually need the adjecency matrices should be singular while the corresponding non zero eigenvalues of the adjacency matrices satisfies the stated property above. Can we do this?

rewi gravatar imagerewi ( 3 years ago )

Yes - restricting to singular adjacency matrices and nonzero eigenvalues can be achieved by changing the if f == h: condition to

if f.ord()>0 and f.shift(-f.ord()) == h:
Max Alekseyev gravatar imageMax Alekseyev ( 3 years ago )

Thank you...Can we extend this code to any connected graph? That is, not only for unicyclic graphs

rewi gravatar imagerewi ( 3 years ago )

To remove restriction on the number of edges use for g in graphs.nauty_geng(options=f'-c {n}'):

Max Alekseyev gravatar imageMax Alekseyev ( 3 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 3 years ago

Seen: 291 times

Last updated: Oct 05 '21