networks
random
creates a random graph on a given number of vertices
Calling Sequence
Parameters
Description
Examples
G:=random(n)
G:=random(n, m)
G:=random(n, 'prob'=x)
G
-
graph or network
n
number of vertices required
m
number of edges (optional)
x
real number in [0,1] (optional, specify only if m not used)
Important: The networks package has been deprecated.Use the superseding command GraphTheory[RandomGraphs] instead.
This procedure generates a variety of different types of random graphs. If only one argument n is specified, this is taken to be the number of vertices, and each edge of the complete graph on n vertices is assumed to be present with a probability of 1/2.
Extra arguments can be used to specify the number of edges m or the specific independent probability x with which a given edges occurs.
If m is specified, a random n-vertex m-edge simple undirected graph is constructed.
If x is specified, each undirected edge is chosen for inclusion "independently" with probability x.
This routine is normally loaded by using the command with(networks), but it may also be referenced by using the full name networks[random](...).
with⁡networks:
G≔random⁡4:
ends⁡G
1,2,1,3,1,4,2,4
G≔random⁡4,prob=1:
1,2,1,3,1,4,2,3,2,4,3,4
G≔random⁡5,8:
1,2,1,3,1,4,1,5,2,4,2,5,3,4,3,5
See Also
GraphTheory
GraphTheory[RandomGraphs]
networks(deprecated)[addedge]
networks(deprecated)[new]
networks(deprecated)[petersen]
with
Download Help Document