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

Revision history [back]

click to hide/show revision 1
initial version

Here is a simple example: the vertices are elements of F5, and there is an edge from a to b if a2=b2.

sage: from itertools import product
sage: vertices = list(GF(5))
sage: edges = [(a,b) for (a,b) in product(vertices, vertices) if a**2 == b**2 and a != b]

In the previous line, product(vertices, vertices) is an iterator consisting of all pairs (v,w) of vertices. Now construct the graph:

sage: Graph([vertices, edges])
Graph on 5 vertices
click to hide/show revision 2
No.2 Revision

Here is a simple example: the vertices are elements of F5, and there is an edge from a to b if a2=b2.

sage: from itertools import product
sage: vertices = list(GF(5))
sage: edges = [(a,b) for (a,b) in product(vertices, vertices) if a**2 == b**2 and a != b]

In the previous line, product(vertices, vertices) is an iterator consisting of all pairs (v,w) of vertices. I impose the condition a != b to avoid loops in the graph. Now construct the graph:

sage: Graph([vertices, edges])
Graph on 5 vertices