Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 7ebd25ac536d248d499a3ce2acda963a > files > 1769

Macaulay2-1.3.1-8.fc15.i686.rpm

-- -*- M2-comint -*- {* hash: -1579600186 *}

i1 : S = QQ[a..e];

i2 : G = graph {a*b,b*c,c*d,d*e,a*e} -- the 5-cycle (connected)

o2 = Graph{edges => {{a, b}, {b, c}, {c, d}, {a, e}, {d, e}}}
           ring => S
           vertices => {a, b, c, d, e}

o2 : Graph

i3 : H = graph {a*b,b*c,c*a,d*e} -- a 3-cycle and a disjoint edge (not connected)

o3 = Graph{edges => {{a, b}, {a, c}, {b, c}, {d, e}}}
           ring => S
           vertices => {a, b, c, d, e}

o3 : Graph

i4 : isConnected G

o4 = true

i5 : isConnected H

o5 = false

i6 : S = QQ[a,b,c,d];

i7 : G = graph {a*b,b*c}

o7 = Graph{edges => {{a, b}, {b, c}}}
           ring => S
           vertices => {a, b, c, d}

o7 : Graph

i8 : isolatedVertices G

o8 = {d}

o8 : List

i9 : isConnected G

o9 = true

i10 :