ACS6121 - Unit 02 (Network Robotics) Flashcards
(15 cards)
What is a graph in the context of networked robotics?
A mathematical structure representing robots as nodes and their communication links as edges.
Define a spanning tree.
A sub-graph that connects all nodes without forming cycles.
What does the Laplacian matrix πΏ represent?
L = D_out β A; it captures network structure and is used in consensus analysis.
What is consensus in multi-agent systems?
The process where agents adjust their states to agree on a common value over time.
How is consensus achieved in a network?
Using the control law
π’_π = β(π₯_π β π₯_π), which leads to π₯Λ = β πΏπ₯.
What is the significance of the second smallest eigenvalue π_2 of the Laplacian?
If π_2>0, the graph is connected, ensuring convergence to consensus.
What is a strongly connected digraph?
A directed graph where there is a path from any node to every other node.
What is the adjacency matrix used for?
To represent which nodes are connected and how (binary or weighted connections).
Give one real-world application of consensus protocols.
Autonomous vehicle platooning β keeping equal distances and same speed.
What kind of graph ensures each node is reachable by one unique directed path from a root?
A directed tree.
- Multiple Choice:
What does a Laplacian matrix help analyze in networked robotics?
A) Sensor accuracy
B) Communication speed
C) Graph connectivity and consensus
D) CPU usage
β Correct Answer: C) Graph connectivity and consensus
- True/False:
A graph is connected if π_2 = 0.
β False (connected if π_2>0)
- Fill in the Blank:
A spanning tree is a connected, acyclic subgraph that includes __________.
β All nodes of the original graph
- Short Answer:
Why is strong connectivity important in a directed graph?
β It ensures that each node can reach every other node, which is necessary for global coordination.
- Multiple Choice:
Which of the following matrices is diagonal?
A) Adjacency matrix
B) Laplacian matrix
C) Out-degree matrix
D) Weighted matrix
β Correct Answer: C) Out-degree matrix