What is a Random Graph
A random graph is a model network in which some specific set of parameters take
fixed values, but the network is random in other respects. One of the simplest
examples of a random graph is the G(n,p) network, studied by
Erdos-Renyi during the 1960's. This graphs are generated with 2
parameters: n the total number of vertices in the graph, p the
probability of edges between vertices.
In this networks the number of edges is not fixed but there are some
values of p that suppose some important changes in the network:
- if \(p = \frac{1}{n^2}\), the network has some links
- if \(p = \frac{1}{n^\frac{3}{2}}\), the network has a component with at least three links
- if \(p = \frac{1}{n}\), the network has a cycle
- if \(p = \frac{log(n)}{n}\), the network is connected (there are no isolated nodes)
Exploring Random Graphs shiny app, helps you test this characteristics of the Erdos-Renyi G(n,p) random graphs.