Chapter 13

Multi-Agent Systems and Coordination: Mathematical Models and Algorithms

  • Partha Paul (Dept of CSE, Birla Institute of Technology,Mesra,Ranchi,Jharkhand)
ISBN
978-93-340-5069-1
Published
16 September 2026
Accesses
4 views · 0 downloads
Reading time
~20 min

Abstract

In artificial intelligence, multi-agent systems (MAS) are a type of distributed paradigm where many independent agents work together to reach individual or group goals. Agents must work together to make sure that systems are efficient, scalable, and reliable in environments that are always changing and being complicated. This paper gives a thorough formal analysis of coordination in MAS using mathematical models and algorithms. It covers consensus mechanisms, job allocation, Markov Decision Processes, multi-agent reinforcement learning, and utility optimization with distributed constraints. We also look at the most recent versions of cutting-edge algorithms, compare their levels of difficulty, talk about open research problems, and suggest exciting new directions for the field in the future. The formal method is backed up by simulation results and theoretical bounds, making this work a complete resource for researchers and professionals working with intelligent systems.

Keywords: Multi-Agent Systems, Coordination Algorithms, Distributed Constraint Optimization, Consensus Protocols, Reinforcement Learning, Game Theory, Task Allocation, Markov Decision Processes

Full text

Multi-Agent Systems and Coordination: Mathematical Models and Algorithms

1Manorama Patnaik, 2Partha Paul,3Pooja Jha, 4Chandan kumar

1,3,4Amity University Jharkhand

2Birla Institute of Technology,Mesra,Ranchi

Manorama7826@gmail.com,ppaul@bitmesra.ac.in,pjha@rnc.amity.edu,ckumar1@rnc.amity.edu

Abstract:

In artificial intelligence, multi-agent systems (MAS) are a type of distributed paradigm where many independent agents work together to reach individual or group goals. Agents must work together to make sure that systems are efficient, scalable, and reliable in environments that are always changing and being complicated. This paper gives a thorough formal analysis of coordination in MAS using mathematical models and algorithms. It covers consensus mechanisms, job allocation, Markov Decision Processes, multi-agent reinforcement learning, and utility optimization with distributed constraints. We also look at the most recent versions of cutting-edge algorithms, compare their levels of difficulty, talk about open research problems, and suggest exciting new directions for the field in the future. The formal method is backed up by simulation results and theoretical bounds, making this work a complete resource for researchers and professionals working with intelligent systems.

Key words: Multi-Agent Systems, Coordination Algorithms, Distributed Constraint Optimization, Consensus Protocols, Reinforcement Learning, Game Theory, Task Allocation, Markov Decision Processes

Introduction

As distributed systems become more complicated, including smart healthcare networks, Internet of Things (IoT) deployments, autonomous transportation systems, and large-scale cyber-physical infrastructures, there is an urgent and ongoing need for intelligent coordinating methods. Multi-Agent Systems (MAS) offer a versatile and expandable framework wherein autonomous agents assess their surroundings, deliberate on internal conditions and objectives, and execute actions that affect themselves and adjacent agents. Coordination is the most difficult and important technological challenge in MAS[1]. Without good coordination, agents could work toward different goals, do the same work again, use up shared resources, or cause system-level problems, even if they are acting rationally on their own. Using mathematical models to formalize coordination makes it possible to create principled algorithms with qualities that can be proven, such as guarantees of convergence, bounds on optimality, and descriptions of computing complexity. These properties are necessary for real-world use[2].

The following contributions are made by this paper: (1) An integrated mathematical analysis of coordination models in MAS, including utility maximization, DCOPs, consensus dynamics, task allocation, MDPs, and MARL. (2) Pseudocode-based formal algorithmic specifications for each model class. (3) A comparative examination of the applicability, scalability, and algorithmic complexity. (4) A review of emergent research directions and unresolved issues. As follows is the organization of the remaining portion of this paper: Mathematical models for MAS coordination are introduced in Section II. Coordination algorithms are elaborated upon in Section III. A comparative analysis is presented in Section IV. Applications are the subject of Section V. Open challenges are delineated in Section VI. The conclusion of Section VII is reached.

II. Mathematical Models for MAS Coordination

We introduce a layered set of mathematical formalisms, each capturing a different dimension of the coordination problem. Let N = {1, 2, ..., n} denote the set of agents. Each agent i possesses a state space S_i, an action space A_i, and operates within a shared environment E[3].

A. Agent Utility Maximization

At the most fundamental level, each agent selects an action to maximize its individual utility, conditioned on the strategies of all other agents. Let a_{-i} denote the joint action profile of all agents except agent i. The optimal action for agent i is:

a*_i = arg max U_i(a_i, a_{-i}) a_i ∈ A_i (1)

where U_i : A_i × A_{-i} → ℝ is the utility function of agent i. In competitive settings, this formulation corresponds to Nash Equilibrium computation; in cooperative settings, agents are incentivized to align their utilities with the collective objective. The existence of a Nash Equilibrium is guaranteed under the conditions established by Nash's theorem (1951), provided mixed strategies are permitted over finite action spaces.

Utility functions may encode various objectives: resource efficiency, task completion latency, communication cost minimization, or composite welfare metrics. In heterogeneous MAS, utility functions differ across agents, giving rise to coordination complexity not present in homogeneous systems.

B. Global Cooperative Objective

For fully cooperative MAS, the system objective is defined as the aggregation of individual utilities. The global optimization problem is expressed as:

max Σ U_i(a_i) a_1,...,a_n i=1..n (2)

This formulation assumes additive separability of agent utilities. In more general settings, interaction effects between agents introduce cross-terms that make (2) an NP-hard combinatorial optimization problem. Approximate solutions via greedy heuristics, anytime algorithms, or neural combinatorial optimization are employed when exact methods are intractable. Submodular function maximization techniques provide polynomial-time approximation guarantees (ratio 1 - 1/e) for a broad class of cooperative utility structures.

C. Distributed Constraint Optimization Problem (DCOP)

The DCOP framework models coordination as a distributed constraint satisfaction and optimization task. Let G = (V, E) be a constraint graph where each vertex v_i ∈ V corresponds to an agent, and each edge (i, j) ∈ E represents a pairwise constraint. The optimization problem is:

min Σ f_{ij}(x_i, x_j) (i,j) ∈ E (3)

where x_i ∈ D_i is a decision variable controlled by agent i with domain D_i, and f_{ij} : D_i × D_j → ℝ≥0 is the cost function quantifying the incompatibility of joint assignments. The DCOP is NP-hard in general; exact solvers such as DPOP (Dynamic Programming Optimization Protocol) achieve exponential complexity in the induced-width of the constraint graph, while incomplete algorithms including Max-Sum and DSA offer polynomial-time approximate solutions.

Extension to higher-order DCOPs, where constraints involve k > 2 agents simultaneously, increases modeling fidelity for team tasks but further complicates optimization. Pseudo-tree decomposition structures the variable ordering to exploit conditional independencies in the constraint graph.

D. Consensus Dynamics Model

Consensus algorithms enable a network of agents to converge to a common state value through local information exchange. Formally, agent i iteratively updates its state at each discrete time step t:

x_i(t+1) = Σ w_{ij} · x_j(t) j ∈ N_i (4)

where N_i denotes the neighborhood of agent i in the communication graph G_c = (V, E_c), and w_{ij} > 0 is the weight assigned to neighbor j's state. The weight matrix W = [w_{ij}] must be [5]doubly stochastic (row-sum = column-sum = 1) to guarantee convergence to the average consensus value:

lim x_i(t) = (1/n) Σ x_j(0) ∀i ∈ N t→∞ j=1..n (4a)

The convergence rate is governed by the spectral gap of the Laplacian matrix L = D - W, where D is the degree matrix. Specifically, the number of iterations to achieve ε-accuracy scales as O(log(1/ε) / λ_2(L)), where λ_2(L) is the algebraic connectivity (Fiedler value). For time-varying and asynchronous networks, convergence analysis employs stochastic matrix product theory and ergodic theorems.

E. Task Allocation as Binary Integer Programming

Optimal task allocation in MAS is formulated as a Binary Integer Program (BIP). Let c_{ij} ≥ 0 denote the cost incurred when agent i executes task j. The assignment matrix X = [x_{ij}] ∈ {0,1}^{n×m} encodes allocation decisions:

min Σ_i Σ_j c_{ij} · x_{ij} (5a)

Subject to the assignment constraints:

Σ_{i=1..n} x_{ij} = 1 ∀j ∈ {1,...,m} (5b)

x_{ij} ∈ {0, 1} ∀i,j (5c)

Constraint (5b) ensures that each task j is assigned to exactly one agent. Extensions accommodate capacity constraints (Σ_j x_{ij} ≤ K_i), temporal windows, precedence dependencies, and multi-objective cost functions. The Hungarian Algorithm solves the basic BIP in O(n³) for balanced instances (n = m). For large-scale dynamic task environments, market-based mechanisms (contract net protocol, auctions) and combinatorial auction formulations provide scalable approximate solutions.

F. Markov Decision Process (MDP) Framework

The single-agent decision-theoretic foundation for sequential coordination decisions is the Markov Decision Process, defined by the tuple M = ⟨S, A, P, R, γ⟩:

where S is the state space, A the action space, P(s'|s,a) the transition probability function, R(s,a) the immediate reward, and γ ∈ [0,1) the discount factor. The optimal value function satisfies the Bellman optimality equation:

V*(s) = max_a [ R(s,a) + γ · Σ_{s'} P(s'|s,a) · V*(s') ] (6)

The optimal policy π*(s) = arg max_a Q*(s,a) can be recovered from the optimal state-action value function Q*(s,a). Value Iteration converges to V* in O(|S|²|A| / (1-γ)) iterations, while Policy Iteration converges in O(|S|²|A| + |S|³) per iteration but typically requires fewer iterations. Linear Programming formulations of the MDP reduce solution to a polynomial-time convex program over the space of value functions.

G. Multi-Agent Reinforcement Learning (MARL)

In MARL, each agent i maintains a local action-value function Q_i(s,a) that is updated online through environmental interaction. The decentralized Q-learning update rule is:

Q_i(s,a) ← Q_i(s,a) + α[r + γ·max_{a'} Q_i(s',a') - Q_i(s,a)] (7)

where α ∈ (0,1] is the learning rate, r the immediate reward received by agent i, γ the discount factor, and s' the successor state. Convergence to the optimal Q* in the single-agent case is guaranteed under the conditions: (a) all state-action pairs are visited infinitely often, and (b) learning rates satisfy the Robbins-Monro conditions Σ α_t = ∞ and Σ α²_t < ∞.

For cooperative MARL, the joint state-action space grows exponentially with n, motivating value function decomposition approaches. The VDN (Value Decomposition Networks) factorization expresses:

Q_tot(s, a) = Σ_{i=1..n} Q_i(s_i, a_i) (7a)

while QMIX extends this to a monotonic mixing function Q_tot = f_mix(Q_1,...,Q_n; s) that satisfies Individual-Global-Maximum (IGM) consistency, enabling centralized training with decentralized execution (CTDE). Nash Q-learning, WoLF-PHC, and Mean Field MARL provide alternative frameworks for mixed-motive and large-population settings.

H. Extended Model: Potential Games and Nash Equilibria

A significant class of MAS coordination problems admits a potential function formulation. A game G is an exact potential game if there exists a function Φ : A → ℝ such that for all i, all a_{-i}, and all a_i, a'_i:

U_i(a_i, a_{-i}) - U_i(a'_i, a_{-i}) = Φ(a_i, a_{-i}) - Φ(a'_i, a_{-i}) (8)

Potential games guarantee the existence of a pure Nash Equilibrium (the maximum of Φ), and best-response dynamics converge to a Nash Equilibrium in finite time. Many resource allocation, load balancing, and network formation games in MAS satisfy the potential game property, enabling efficient distributed coordination through best-response or gradient ascent dynamics.

III. Coordination Algorithms

A. Max-Sum Algorithm (Belief Propagation for DCOP)

Max-Sum is a message-passing algorithm for approximate DCOP solving operating on factor graphs. At each iteration, variable nodes pass utility messages μ_{x→f} to function nodes, and function nodes pass cost messages μ_{f→x} back. The algorithm converges to the optimal solution for tree-structured factor graphs; on graphs with cycles, it provides high-quality approximate solutions[7-10]:

Algorithm 1: Max-Sum for DCOP
Input: Factor graph G_F = (X ∪ F, E_F), cost functions {f_{ij}}, domains {D_i}
Output: Assignment x* minimizing Σ f_{ij}(x_i, x_j)
─────────────────────────────────────────────────
1: Initialize all messages μ_{x→f}(x_i) := 0 ∀ edges (x,f)
2: repeat
3: for each function node f_{ij} do
4: μ_{f→x_i}(x_i) := min_{x_j} [ f_{ij}(x_i,x_j) + μ_{x_j→f}(x_j) ]
5: end for
6: for each variable node x_i do
7: μ_{x→f}(x_i) := Σ_{f' ∈ N(x_i)\ f} μ_{f'→x_i}(x_i)
8: end for
9: until convergence or max_iterations reached
10: x*_i := arg min_{x_i} Σ_{f ∈ N(x_i)} μ_{f→x_i}(x_i) ∀i
11: return x*
─────────────────────────────────────────────────
Complexity: O(|E_F| · |D|²) per iteration

B. Distributed Gradient Consensus

For continuous optimization with differentiable objectives, distributed gradient descent over the consensus graph achieves convergence to the globally optimal solution. Each agent updates its local estimate through a combination of gradient descent and consensus averaging:

x_i(t+1) = Σ_{j∈N_i} w_{ij}·x_j(t) - α·∇f_i(x_i(t)) (9)

where f_i(x_i) is agent i's local objective and α is the step size. Under Lipschitz-continuous gradients and strong convexity, the algorithm converges at rate O(1/t). The update elegantly couples the consensus term (social learning) with the gradient term (individual optimization), achieving distributed coordination without a central coordinator.

Algorithm 2: Distributed Gradient Consensus
Input: Graph G, local objectives {f_i}, step size α, consensus weights W
Output: Consensus minimizer x* of (1/n) Σ f_i(x)
─────────────────────────────────────────────────
1: Initialize x_i(0) ∈ ℝ^d arbitrarily ∀i
2: for t = 0, 1, 2, ... do
3: for each agent i (in parallel) do
4: consensus_i := Σ_{j∈N_i} w_{ij} · x_j(t)
5: gradient_i := ∇f_i(x_i(t))
6: x_i(t+1) := consensus_i - α · gradient_i
7: end for
8: if ||x_i(t+1) - x_i(t)|| < ε ∀i: break
9: end for
10: return x_i(T) (T = final iteration)
─────────────────────────────────────────────────
Convergence: O(1/t) for convex f_i; linear for strongly convex

C. Auction-Based Task Allocation

Combinatorial auction mechanisms provide efficient, decentralized task allocation via iterative bidding. The Contract Net Protocol (CNP) operates in three phases: task announcement, bid submission, and contract award. The social welfare-maximizing allocation solves the Winner Determination Problem (WDP):

max Σ_i v_i(S_i) s.t. S_i ∩ S_j = ∅ ∀i ≠ j (10)

Algorithm 3: Iterative Combinatorial Auction (ICA)
Input: Agents N, tasks T, valuation functions {v_i}, price vector p
Output: Allocation S* maximizing social welfare Σ v_i(S_i)
─────────────────────────────────────────────────
1: Initialize prices p_j := 0 ∀j ∈ T
2: Initialize allocation S_i := ∅ ∀i ∈ N
3: repeat
4: for each agent i do
5: bid_i := arg max_{S ⊆ T} [ v_i(S) - Σ_{j∈S} p_j ]
6: Submit bid_i to auctioneer
7: end for
8: Auctioneer resolves conflicts: raise p_j for over-demanded tasks
9: Update S_i for non-conflicting bids
10: until no agent changes bid
11: return S* = {S_i}_{i∈N}
─────────────────────────────────────────────────
Complexity: O(2^|T|) WDP; polynomial for additive valuations

D. Multi-Agent Q-Learning with ε-Greedy Exploration

Algorithm 4: Decentralized Multi-Agent Q-Learning
Input: Agents N, environment E, α, γ, ε, episodes K
Output: Converged Q-tables {Q_i} for all agents
─────────────────────────────────────────────────
1: Initialize Q_i(s,a) := 0 ∀i, s, a
2: for episode k = 1 to K do
3: Observe initial state s
4: repeat
5: for each agent i do
6: if rand() < ε: a_i := random action // Exploration
7: else: a_i := arg max_a Q_i(s,a) // Exploitation
8: end for
9: Execute joint action a = (a_1,...,a_n)
10: Observe rewards r_i and next state s'
11: for each agent i do
12: Q_i(s,a_i) += α[r_i + γ·max_{a'} Q_i(s',a') - Q_i(s,a_i)]
13: end for
14: s := s'
15: until s is terminal
16: Decay ε := ε · (1 - δ)
17: end for
18: return {Q_i}
─────────────────────────────────────────────────
Convergence: Guaranteed for stationary environments (Watkins & Dayan, 1992)

IV. Comparative Analysis

Table I provides a systematic comparison of the mathematical models and their corresponding algorithmic implementations across key dimensions relevant to MAS design: solution quality, scalability, communication requirements, and applicability to different coordination scenarios.

ModelFrameworkComplexityScalabilityOptimalityKey Application
Utility Max.Game TheoryO(|A|^n)LowNash / ParetoResource allocation
DCOPConstraint GraphNP-HardMediumExact/Approx.Sensor networks, scheduling
ConsensusGraph TheoryO(n/λ₂)HighAverage consensusSwarm coordination
Task Alloc. (BIP)Integer Prog.O(n³) – Hung.MediumOptimal (small n)Workforce assignment
MDPDecision TheoryO(|S|²|A|)Low-MediumOptimal (VI/PI)Single-agent planning
MARLRL + Game Th.O(|S||A|^n)MediumApprox. optimalAutonomous driving, games
Potential GamesGame TheoryPoly. (BR dyn.)HighPure Nash Eq.Load balancing, routing

Table I: Comparative Summary of MAS Coordination Models and Algorithms

The comparison shows a number of important trade-offs. Utility maximization and game-theoretic methods give strong analytical promises, but they become exponentially more difficult to compute as the number of agents increases. This means that they can only be used for small-scale MAS. Consensus algorithms are very good at scalability and have almost linear cost, but they can only be used for averaging-type coordination tasks. DCOP methods are flexible for constraint-based coordination, but they are generally NP-hard. In the real world, the performance of incomplete solvers (Max-Sum, DSA) often goes beyond the worst-case forecasts because constraint graph structures aren't very dense. MARL is one of a kind because it's theoretically very complicated in the joint action space, but function approximation methods (like deep Q-networks and policy gradient methods) and value decomposition architectures make it possible to use in large-scale, continuous-state settings that tabular methods can't. The cost is that convergence guarantees are lost in multi-agent settings that are not stationary.

V. Applications of MAS Coordination

A. Smart Grid Energy Management

In smart grid systems, prosumer agents (buildings with generating and storage capabilities) coordinate energy trading to reduce system costs and balance supply and demand in real time. The coordination problem is described as a DCOP over the grid topology graph, with f_{ij}(x_i, x_j) encoding bilateral energy trading costs and transmission losses between grid nodes i and j. The consensus model manages voltage management by local reactive power modifications, with agents iteratively applying equation (4) to achieve voltage consensus within safe operating limits. MARL-based techniques, particularly Multi-Agent Deep Deterministic Policy Gradient (MADDPG), have performed well in situations with continuous action spaces (charging rates, generating setpoints) and non-stationary demand patterns. The CTDE paradigm allows for global state information to be trained while only local observations are executed a significant quality given the limits on real-time communication latency in smart grid operations.

B. Autonomous Robotic Swarms

Robot swarms use consensus methods to manage their formation, flocking, and group exploration. The Olfati-Saber flocking algorithm uses a potential field term in the consensus update (4) to keep the space between agents while reaching a consensus on their speeds. Equation (5) governs job allocation in multi-robot systems, with c_{ij} representing assignment costs based on Euclidean distance. The Hungarian algorithm or distributed auction methods can quickly address this problem when tasks come in at different times. DCOP formulations include coordination necessities in multi-robot mapping and exploration, wherein agents are required to partition uncharted territories (variables x_i) while adhering to communication range limitations (cost functions f_{ij} that enforce proximity). Branch-and-bound DCOP solvers with pseudo-tree decomposition find allocations that are close to optimal in real-world map sizes..

C. Multi-Agent Financial Systems

Market microstructure environments in algorithmic trading platforms are sparse, delayed reward signals, non-stationarity caused by other adaptive agents, and partial observability. MARL agents operate in these environments. In order book dynamics, multi-agent coordination is guided by Nash equilibrium principles from game theory. In this context, utility maximization (equation 1) controls the selection of bid-ask strategies, and prospective game analysis verifies the presence of stable equilibrium pricing regimes. With c_{ij} representing anticipated transaction costs and cross-asset correlation risks, task allocation models coordinate the optimization of cross-asset portfolios across specialized sub-agents, each of which manages a different class of assets. Rather than keeping proprietary position data centralized, distributed portfolio rebalancing is made possible by decentralized gradient consensus (equation 9).

D. Healthcare Resource Coordination

MAS is used by hospital resource management systems to arrange scheduling patients, allocating equipment, and placing staff across multiple care units that are spread out. The BIP task allocation model (equations 5a–5c) figures out the best way to assign beds and schedule surgeries, while consensus methods make decisions about how to move patients from one unit to another. MDP formulations show how to optimize a treatment route when there is uncertainty, and V*(s) helps clinical decision support systems find care protocols that are based on evidence.

VI. OPEN RESEARCH CHALLENGES. A. Scalability in Large-Scale MAS. Because tree decomposition methods use exponential message length, current exact DCOP algorithms scale poorly beyond about 100 agents. Mean-field approximations, graphical game decompositions, and neural combinatorial optimization are all potential approaches for scaling coordination to thousands or millions of agents. The mean-field MARL approximation replaces the exponential joint action space with interactions via population mean action, lowering per-agent complexity to O(|S||A|) at the expense of approximation accuracy in heterogeneous populations. B. Non-stationarity and partial observability In most practical MAS deployments, agents are unable to monitor the entire system state and must reason using partial observability (POMDP settings) while adjusting to other agents' rules that change over time. Standard MARL convergence guarantees assume fixed opponent policies and full observability, which are frequently broken in practice. Opponent modeling, meta-learning, and Bayesian methods to non-stationarity are current study areas. C. Communication and Bandwidth Limitations Theoretical coordination methods often require noise-free, dependable, low-latency communication, which is not feasible in wireless IoT, underwater sensor networks, or deep-space multi-robot systems. Robust consensus algorithms for bounded communication delays, quantized communication, and probabilistic link failures necessitate Lyapunov stability analysis and stochastic approximation theory. The fundamental trade-off between transmission bandwidth and coordination performance is an open information-theoretical subject. D. Ethical coordination and fairness. As MAS are deployed in socially significant areas (resource allocation in healthcare, autonomous transportation, and financial systems), ensuring that coordinating outputs adhere to fairness, non-discrimination, and equity restrictions becomes ethically and legally necessary. Formalizing fairness requirements within DCOP (as additional inequality constraints on allocation variables) and MARL (as reward shaping or limited policy optimization) frameworks raises new mathematical questions at the intersection of multi-agent optimization and algorithmic fairness theory. E. Formal verification of emergent behaviors. Emergent collective behaviors in MAS, which arise from local interactions rather than central design, are notoriously difficult to anticipate, analyze, and test formally. Model verification methods, such as applying temporal logic (CTL, LTL) to MAS specifications, experience state-space explosion in large agent populations. Statistical model checking, abstract interpretation, and runtime monitoring are all partial mitigations, but developing a thorough formal verification framework for emergence in MAS remains an outstanding topic.

VII.Conclusion We talked about coordination in Multi-Agent Systems in a formal and thorough way in this paper. We looked at a wide range of mathematical models, including distributed constraint optimization, consensus dynamics, task allocation, Markov Decision Processes, and multi-agent reinforcement learning. Each model is written in strict mathematical language and includes algorithmic pseudocode that lets it be directly implemented. The comparison (Table I) shows that there isn't a single coordination model that is best in terms of all three important factors: complexity, scalability, and optimality. To make a MAS system that works well, you need to choose the right model based on the coordination needs, the number of agents, the communication infrastructure, and the optimality promises that the deployment context requires. The mathematical models shown here are the building blocks for study and engineering in MAS. As distributed intelligent systems in the real world get more complicated, these foundations need to be improved. This is especially true for scalability, non-stationarity robustness, and fairness-aware coordination. Only then can Multi-Agent Systems fully realize their transformative potential in areas like healthcare, financial systems, and smart infrastructure. In the future, we will expand the framework to include continuous-action MARL with formal convergence guarantees. We will also make algorithms that are fast on computers for large-scale potential games and look into the theoretical basis of communication-efficient agreement in adversarial network conditions.

References:

  1. Calvaresi, D., Dicente Cid, Y., Marinoni, M., Dragoni, A. F., Najjar, A., & Schumacher, M. (2021). Real-time multi-agent systems: Rationality, formal model, and empirical results. Autonomous Agents and Multi-Agent Systems, 35(12). https://doi.org/10.1007/s10458-020-09492-5

  2. Zhou, Y., Di, K., & Xing, H. (2021). Hybrid multiagent collaboration for time-critical tasks: A mathematical model and heuristic approach. Algorithms, 14(11), 327. https://doi.org/10.3390/a14110327

  3. Hillmann, P., Uhlig, T., Rodosek, G. D., & Rose, O. (2020). A novel multi-agent system for complex scheduling problems. arXiv preprint arXiv:2004.09312.

  4. Rossi, F., Bandyopadhyay, S., Wolf, M. T., & Pavone, M. (2021). Multi-agent algorithms for collective behavior: A structural and application-focused atlas. arXiv preprint arXiv:2103.11067.

  5. Groenewald, C. A., Saha, G. C., Mann, G., Bhushan, B., Howard, E., & Groenewald, E. S. (2024). Multi-agent systems in robotics: Coordination and communication using machine learning. ResearchGate preprint.

  6. “Multi Agent Systems: Studying coordination and cooperation mechanisms in multi-agent systems to achieve collective goals efficiently.” (2024). Journal of Artificial Intelligence Research, 4(1), 30–43.

  7. Gnanamani, C., & Kumaravel, A. R. (2025). Coordination and collaboration in multi-agent autonomous systems: A swarm intelligence approach. Journal of Information Technology and Digital World, 7(3), 238–257. https://doi.org/10.36548/jitdw.2025.3.004

  8. Sun, L., Yang, Y., Duan, Q., Shi, Y., Lyu, C., Chang, Y.-C., Lin, C.-T., & Shen, Y. (2025). Multi-agent coordination across diverse applications: A survey. arXiv preprint arXiv:2502.14743.

  9. Lv, Y., Wang, J., Liu, Z., & Zou, M. (2025). From heuristics to multi-agent learning: A survey of intelligent scheduling methods in port seaside operations. Mathematics, 13(17), 2744. https://doi.org/10.3390/math13172744

  10. Enhancing multi-agent system coordination: Fixed-time and event-triggered control mechanism for robust distributed consensus. Alexandria Engineering Journal.

Get an email when we publish new research and open calls for chapters.

Create a free account

Related chapters