graph
1
2
Sections
Graphs
Doc
Def
Graph(a:A -- > f(a;b) | b:B) == < vertices = A, edges = A
B, incidence =
< a,b > . < a,f(a;b) > >
is mentioned by
Thm*
f:(A
B
A). (
a:A, b1,b2:B. f(a,b1) = f(a,b2)
b1 = b2)
(
a,a':A. Dec(
b:B. a' = f(a,b)))
Graph(a:A -- > f(a,b) | b:B)
Graph(a,a':A.
b:B. a' = f(a,b))
[fun-graph-rel-graph]
Def
DivGraph_2 == Graph(i:
-- > i
n | n:
)
[divides-graph2]
Try larger context:
Graphs
graph
1
2
Sections
Graphs
Doc