1. What is the Laplacian matrix of a directed graph?
The Laplacian matrix of a directed graph is defined as L = D - T, where D represents the in-degree of the graph and T is the adjacency matrix. It is a square matrix with diagonal elements representing the in-degree of each node and off-diagonal elements as 0. The Laplacian matrix is used to analyze the connectivity and properties of the graph. It has an eigenvector [1, 1, ..., 1]^T with a non-negative eigenvalue, and the smallest non-zero eigenvalue is called the algebraic connectivity. This matrix plays a crucial role in understanding the network's behavior and achieving consensus among agents in the network.
read more
2. What is a Directed Acyclic Graph (DAG) and its topological ordering?
A Directed Acyclic Graph (DAG) is a directed graph without directed cycles. It consists of nodes and edges, where each edge connects one node to another, ensuring no node can loop back to itself. DAGs always have a topological ordering, a sequence of nodes where the starting node of each edge comes before its ending node. This ordering is unique for DAGs but not for general graphs. Examples of DAGs include singly linked chains, grids, trees, and mushrooms. A local DAG structure called stem, with a singly linked network structure, is used for local quantitative analysis and reduces the workload of analyzing large networks. The topological ordering of a DAG ensures that for each edge, the start node always precedes the end node. For example, one topological ordering of a graph could be (A, C, E, B, D).
read more
3. What is the length of a stem in a DAG?
The length of a stem in a Directed Acyclic Graph (DAG) is defined as the number of nodes between the start node and the end node, excluding the start and end nodes themselves. It is calculated by subtracting the start node from the end node and adding 1. For example, in a stem structure with start node h = 5 and end node = 8, the length of the stem would be 8 - 5 + 1 = 4. This length represents the number of nodes that are part of the stem structure, connecting the start and end nodes in the topological ordering of the DAG. The length of a stem is an important characteristic in analyzing the structure and properties of a DAG, as it provides insights into the connectivity and relationships between nodes within the graph.
read more
4. What are the roles in formation containment tracking tasks?
In formation containment tracking tasks, there are three roles: tracking leader, formation leader, and followers. The tracking leader determines the macroscopic motion trajectory of the entire system. The formation leader tracks the tracking leader according to the formation set by the motion control protocol. Followers converge into the convex hull formed by the formation leader based on the motion control protocol. These roles are essential for coordinating the multi-agent system's movement and achieving the desired formation and tracking objectives.
read more