Description: The Average Consensus is a consensus algorithm used in distributed systems to reach an agreement on a common value among multiple participants. This algorithm is based on the idea that each participant proposes a value, and through a communication process, the average of all proposed values is calculated. The main feature of this approach is its simplicity and efficiency, as it allows nodes to reach consensus without the need for a central leader. Average Consensus is particularly useful in environments where participants may have partial information or where communication may be intermittent. By calculating the average, the effects of outliers are mitigated, contributing to a more robust and representative decision. This algorithm is fundamental in applications that require collaborative decision-making, such as voting systems, sensor networks, and decentralized platforms, where data integrity and accuracy are crucial. Its implementation may vary, but generally involves data collection, average calculation, and dissemination of the final result among all participants, ensuring that everyone has access to the same information and can act accordingly.