I Classify the isomorphism of a graph

AI Thread Summary
The discussion focuses on classifying the isomorphism of the graph G_{16,k} for positive integers k ranging from 1 to 15. Participants explore how to identify sets of k that yield isomorphic graphs, emphasizing the importance of congruences in defining edges. It is suggested to start with smaller graphs like G_{4,k} to visualize and identify isomorphic classes effectively. The concept of equivalence classes is introduced, with examples illustrating how certain k values relate to each other through modular arithmetic. Overall, the conversation aims to clarify the classification of isomorphic graphs based on the defined properties of G_{n,k}.
fiksx
Messages
77
Reaction score
1
TL;DR Summary
classify isomoprhism of graph
N and k are positive integers satisfying $$ 1<=k < n$$

An undirected graph $$G_{n,k}= (V_{n,k} ,E_{n,k})$$ is defined as follows.

$$V_{n,k}={1,2,3,...n}$$

$$E_{n,k}={\{\{u,v\}|u-v \equiv k \, (mod \, n) \, or \, u-v \equiv -k \, mod \, n}$$

However, $$x \equiv y \, (mod \, n) $$ indicates that x and y are congruent modulo n. For example, $$12 \equiv 5 \equiv -2 (mod 7)$$

i need to Classify graph G by all k that is isomorphism to each other for $$G_{16,k} (1<=k<=15) $$ Example {1,2},{3},{4,5,6}my attempt:
$$G_{16,k} (1<=k<=15) $$
Classify graph G by all k that is isomorphism
Example {1,2},{3},{4,5,6}

I see that by definition for example $$G_{5,1}$$
we can see that

$$V={1,2,3,4,5}$$

Since $$ 6 \equiv 1 \equiv -4 \, mod \, 5$$ we know that$$E=\{(1,5),(5,4),(4,3),(3,2),(2,1) \} $$

But how can i classify k that isomorphism to each other for $$G_{16,k}$$

I thought that $$\{2,4,6,8,10,12,14,16 \} $$ and $$\{1,3,5,7,9,11,13,15 \} $$ will be isomorphism to each other, am i right?

i.e $$G_{2,4} \& G_{4,6}$$ will have same vertex and degree(?)
 
Mathematics news on Phys.org
I think I follow you right up to this statement:
fiksx said:
I thought that ##\{2,4,6,8,10,12,14,16 \} ## and $$\{1,3,5,7,9,11,13,15 \} ## will be isomorphism to each other, am i right?
It is true, that these two sets of vertices would form isomorphic graphs if they were connected by edges in the same way, but neither one of the these seems to be a ##G_{n,k}## graph according to your definition. I suggest that you start with say 4 vertices and draw all of the ##G_{4,k}## graphs for ##k=-5, \dots , 6## according to this rule :
fiksx said:
$$E_{n,k}={\{\{u,v\}|u-v \equiv k \, (mod \, n) \, or \, u-v \equiv -k \, mod \, n}$$
That is, draw four vertices on a piece of paper, set k = -5, look at each vertex in turn and draw an edge from it to each vertex with a label that differs by ##\pm 5 \mod 4##. Then do it again for ##k=-4## and so on. Then eyeball your graphs to identify the sets of isomorphic graphs. That should give you feeling for how to write a general solution.
 
tnich said:
I think I follow you right up to this statement:

It is true, that these two sets of vertices would form isomorphic graphs if they were connected by edges in the same way, but neither one of the these seems to be a ##G_{n,k}## graph according to your definition. I suggest that you start with say 4 vertices and draw all of the ##G_{4,k}## graphs for ##k=-5, \dots , 6## according to this rule :

That is, draw four vertices on a piece of paper, set k = -5, look at each vertex in turn and draw an edge from it to each vertex with a label that differs by ##\pm 5 \mod 4##. Then do it again for ##k=-4## and so on. Then eyeball your graphs to identify the sets of isomorphic graphs. That should give you feeling for how to write a general solution.

thankyou for answering my questions! i think this has relation to equivalence class such as {8,16},{7,9},{6,10},{5,11},{4,12},{3,13},{14,2},{15,1} for example for k=1 $$ 1≡-15 mod 16$$ and k=15 $$15≡−1 mod16 $$ is in same class so it is isomorphism as it will have same edge and vertex , is my reasoning right?
 
  • Like
Likes tnich
fiksx said:
thankyou for answering my questions! i think this has relation to equivalence class such as {8,16},{7,9},{6,10},{5,11},{4,12},{3,13},{14,2},{15,1} for example for k=1 $$ 1≡-15 mod 16$$ and k=15 $$15≡−1 mod16 $$ is in same class so it is isomorphism as it will have same edge and vertex , is my reasoning right?
Yes (except that I don't understand why you include {8,16}).
Now look at ##G_{5,k}##. What are the isomorphism classes?
 
Seemingly by some mathematical coincidence, a hexagon of sides 2,2,7,7, 11, and 11 can be inscribed in a circle of radius 7. The other day I saw a math problem on line, which they said came from a Polish Olympiad, where you compute the length x of the 3rd side which is the same as the radius, so that the sides of length 2,x, and 11 are inscribed on the arc of a semi-circle. The law of cosines applied twice gives the answer for x of exactly 7, but the arithmetic is so complex that the...
Is it possible to arrange six pencils such that each one touches the other five? If so, how? This is an adaption of a Martin Gardner puzzle only I changed it from cigarettes to pencils and left out the clues because PF folks don’t need clues. From the book “My Best Mathematical and Logic Puzzles”. Dover, 1994.
Back
Top