Cs-Web

View on GitHub

examples of a non isomorphic graph

![isomorphicandNonIsomorphicGraphs][./img/isomorphicandNonIsomorphicGraphs.png]

Two isomorphic graphs must have

  1. the same number of vertices
  2. the same number of edges
  3. an equal number of vertices with a given degre.
  4. Same degree sequence.
These conditions are not sufficient There are non-isomorphic graphs which satisfy all these conditions.

nonIsoGraph

A graph H is said to be a subgraph of a graph G if all the vertices and all the edges of H are in G, and each edge of H has the same end vertices in H as in G. We denote it by

hIsSubgraphOfG

An open walk in which no vertex appears more than once is called its path.

imgsExp