Exam, complex brain networks Flashcards
If G=(V,E) is a connected graph, what do we know about E?
|E|>|V|-1
When is a directed graph G=(V,E) acyclic?
When there are no cycles in G
If G=(V,E) is represented by an adjacency list, what do that say about G, V and E?
After a first search of G the time is proportional to |V|+|E|
What would you use to evaluate the prestige of a vertex with respect to prestige of other vertices in a graph?
Eigenvecor centrality
What would you use to evaluate the influence of a vertex in the flow of information in a graph?
Betweenness centrality
If G=(V,E) is a directed and acyclic graph. What is the eigenvector?
The eigenvector centrality is 0 for all vertices
Similarities between neural networks and real networks?
- You cannot observe a binomial distribution for vertex degrees in neural networks
- Neural networks are better modelled as scale-free graphs
Let G=(V,E) be a scale-free network under a target attack starting with nodes with highest degree. How many nodes should we remove to destroy its giant component?
- Scale-free networks are being quite vulnerable to targeted attacks.
—> only to remove a small fraction of its the nodes to destroy its giant component
what is a giant component?
In network theory, a giant component is a connected component of a given random graph that contains a constant fraction of the entire graph’s vertices.
What is a small-world network?
A small-world network is a type of mathematical graph in which most nodes are not neighbors of one another, but the neighbors of any given node are likely to be neighbors of each other and most nodes can be reached from every other node by a small number of hops or steps.
Let G=(V,E) be a graph. What is the degree of a vertex v?
It is the number of edges connected to v.
A graph G=(V,E) is connected if?
There is a path between every pair of vertices.
If G=(V,E) is represented by an adjacency matrix, what do that say about G, V and E?
After a first search of G the time is proportional to |V|^2 independently of |E|
what is the adjacency matrix?
In graph theory and computer science, an adjacency matrix is a square matrix used to represent a finite graph. The elements of the matrix indicate whether pairs of vertices are adjacent or not in the graph.
what is the adjacency list?
In graph theory and computer science, an adjacency list is a collection of unordered lists used to represent a finite graph. Each list describes the set of neighbors of a vertex in the graph.