SMA

SMA Unimib

SMA Unimib


Kartei Details

Karten 287
Sprache Deutsch
Kategorie Technik
Stufe Universität
Erstellt / Aktualisiert 06.12.2023 / 15.01.2024
Weblink
https://card2brain.ch/box/20231206_sma
Einbinden
<iframe src="https://card2brain.ch/box/20231206_sma/embed" width="780" height="150" scrolling="no" frameborder="0"></iframe>

What are labeled and weighted graphs?

What are examples of labeled graphs?

What is a tree?

What is root, children, parent, sibling and leaf of a tree?

What is depth, level and tree hight?

Which one is a tree?

What is tree traversal?

Tree traversal, also known as tree search, is a process of visiting each node of a tree data structure. During tree traversal, you visit each node of a tree exactly once and perform an operation on the nodes like checking the node data (search) or updating the node.

Algorithms for doing tree traversal:

  • Depth-First Search (DFS)
    • Branches are visited, one after the other
    • Three variations
  • Breadth-First Search (BFS)
    • In layers, starting from the root 

What is graph traversal?

How is the adjacency matrix calculated?

Create the adjacency matrix for the following graphs?

How is the incidence matrix calculated?

Calculate the incidence matrix for the following graphs.

How is the adjacency list calculated?

Calculate the adjacency list for the following graphs.

What are interaction networks?

What are emerging behaviors?

What is meant by topology of network?

Which non-complex networks do we differntiate?

What are regular networks?

What is a linear network?

A linear network is a linear sequence �� of connected vertices.

What is the 

  1. order
  2. degree
  3. clustering coefficient
  4. size
  5. diameter

of the following linear network?

What is a ring network?

A ring network A is a network topology in which each node is connected to exactly two other nodes, forming a single continuous path, a ring. 

--> Biconnected: because we can delete a vertex or a node and the graph would still be connected

What is the 

  1. order
  2. degree
  3. clustering coefficient
  4. size
  5. diameter
  6. degree of connection

of the following ring network?

What is a star network?

A star network is a tree �� with a single vertex of maximum degree.

What is the 

  1. order
  2. degree
  3. clustering coefficient
  4. size
  5. diameter
  6. degree of connection

of the following star network?

How does the manhattan grid and full mesh grid look like and what are examples?

Grid --> Optical fiber

Mesh --> IP Routing

What are random networks?

  • Initially studied by Erdős and Rényi in 1959:
    • Pairs of nodes are randomly connected by a given number of connections;
    • Two nodes are connected by a certain probability p.
  • All nodes have approximately the same number of neighbors, which differs slightly from the average value.

What are complex networks?

  • Unlike regular and random networks, complex networks capable of reproducing the properties of real interaction networks 
  • Evolution of the classical graph theory into the modern theory of complex networks
  • Non-intuitive characteristics and can be made up of millions of units communicating with each other
  • Mathematical methods based on graph theory are therefore used to extract information from complex networks in a synthetic and objective way.
  • Example: social networks

What is the first order area and second order area?

The first-order network is generally called the ego-centric network (or ego-network) --> focuses on the network surrounding a specific node

Networks that move away from the first order are called socio-centric networks --> concerns the study of "complete" networks

What are the four charachteristics of complex networks?

Charachterisics of complex networks

What is meant by small-world (theory)?

  • Coined by Milgram who did experiment: sample of Americans were asked to deliver a message to a stranger of whom they only knew the name and a few other details but not the address only using network of acquaintances. Results: Average of only between 5 and 7 steps to reach the recipient.
  • Short paths exist between individuals in large social networks. These paths can be found by ordinary people. 
  • Examples of small world: WWW or e-mail exchange
  • Edors number: How distant are you in regards to collaboration with mathematician Paul Erdos
  • Bacon number: How distant are you in regards to collaboration with Kevin Bacon
  • This property makes networks very efficient in terms of information propagation speed (e.g. infectious deseases)

Charachterisics of complex networks

What is meant by clustering?

  • Tendency in social networks to create clusters --> communities of individuals all or almost all in relation to each other
  • Already know previously as transitivity --> has been quantified by clustering coefficient (cc) -->  cc is larger in complex networks than correspondig random network.

Charachterisics of complex networks

What is meant by strenght of weak ties?

  • The strength of a tie is given by the combination of the amount of time, emotional intensity, intimacy  and the exchange of services that characterizes the tie.
  • strong ties --> family, friends (primary network)
  • weak ties --> informal networks of people, which, in terms of social integration and increase in social capital, are often more important than strong ties (e.g. when looking for a job)
  • Tie strenght can be measured by different techniques:
    • Identifiying shortcut brdiges
    • Neighbourhood overlap assessment
    • Evaluation of user activities

Techniques to measure tie strenght

  1. What is meant by shortcut bridge?
  2. Which tie is waker in the following graph, 2,5 or 5,6?

 

A shortcdut bridge is a bridge, that once it is removed, it increases the distance between two nodes. 

Rare in social networks

The greater the distance, the "weaker" the type of tie.

You count how many edges you have to pass, if a bridge is removed. 

Techniques to measure tie strenght

  1. What is meant by neighbourhood overlap?
  2. Which tie is waker in the following graph, 2,5 or 5,6?

 

It measures how overlapping the neighbours are of two vertieces to measure strenght.

Calculation:

How many neighbours are shared between the two vertices divided by how many neighbours do the two vertices have in total (not counting double)

 

Techniques to measure tie strenght

What is meant by learning from user activities?

 

Charachterisics of complex networks

What is meant by scale invariance?

A Scale Free Network is one in which the distribution of links to nodes follows a power law. The power law means that the vast majority of nodes have very few connections, while a few important nodes (we call them Hubs) have a huge number of connections.

What is meant by preferential attachment in regards to scale free networks

What is meant by hubs in scale free networks?

Hubs are basis of small-world effect -->  function of connecting areas of the graph that would otherwise be separate. 

What kind of hubs exist?