TIC & FairInf: Balancing Dominance and Equity in Competitive Social Networks

Fair Multi-influence Maximization in Competitive Social Networks

2017-01-01
Ying Yu, Jinglan Jia, Deying Li, Yuqing Zhu
Summary
Problem
Method
Results
Takeaways
Abstract

The paper introduces the Timeliness Independent Cascade (TIC) model for multi-influence competition and defines the FairInf problem to achieve fair influence distribution among competing companies. It proves that influence spread remains monotone and submodular under fixed competitor seeds, enabling a Myopic Greedy (MG) algorithm to achieve a (1 - 1/e) approximation for general influence maximization while optimizing fairness.

TL;DR

In the world of viral marketing, social media platforms (the "agencies") face a dilemma: how to help multiple competing companies maximize their reach while ensuring that no one is unfairly suppressed. This paper introduces the Timeliness Independent Cascade (TIC) model and the FairInf problem. By exploiting the submodularity of influence spread, the authors develop the Myopic Greedy (MG) algorithm, which ensures a fair distribution of influence (Earning-to-Budget Ratio) across competitors with near-optimal efficiency.

Background & Motivation

Most influence maximization (IM) research focuses on a single entity trying to dominate a network. However, real social networks are battlegrounds for multiple "cascades"—think Coca-Cola vs. Pepsi or competing political narratives.

Prior work often assumes:

  1. Binary outcomes: A node is either influenced by A or B.
  2. Global knowledge: Each company knows the entire network structure.

The authors argue these assumptions are unrealistic. Instead, they propose a model from the agency's perspective (e.g., Meta or ByteDance), where the platform owner must allocate seeds to various clients fairly based on their budgets.

The TIC Model: Capturing Timeliness and Competition

The Timeliness Independent Cascade (TIC) model introduces a critical realistic constraint: the Decision Deadline ().

In TIC, if a node receives successful activations from various influences () before its deadline , it doesn't just pick the first one. Instead, it "remembers" all successful attempts. At time , it decides to adopt color with a probability: where is the number of times it was successfully activated by influence . This captures the "word-of-mouth" frequency effect.

Methodology: The FairInf Problem

The FairInf problem is split into two distinct challenges:

  1. Max-Spread: Maximize the total number of influenced nodes regardless of their color.
  2. Max-Fairness: Ensure the Earning-to-Budget Ratio (EBR) is balanced across all companies.

The "Individual Spread" Insight

A key theoretical contribution is the proof that a company's influence is monotone and submodular even in TIC. Furthermore, the authors define Individual Spread ()—the expected contribution of a seed to the total spread. Crucially, they prove that this value is constant regardless of which color is assigned to .

Fairness performance on different datasets

The Myopic Greedy (MG) Algorithm

The MG algorithm operates on a simple but proven logic:

  1. Sort all chosen seeds by their individual spread.
  2. Iterate through the seeds and assign each to the company currently suffering from the lowest EBR.

This "greedy balancing" is mathematically proven to be the optimal strategy for maximizing the fairness metric .

Experimental Validation

The authors tested MG against OPT (Optimal via enumeration) and RAN (Random) on datasets like Douban (1.7M edges).

  • Fairness: MG consistently achieved a fairness score near 1.0, almost identical to the computationally expensive OPT.
  • Efficiency: While OPT is intractable for large seed sets, MG runs in milliseconds ().

Comparison of MG vs RAN vs OPT

Deep Insight & Conclusion

The genius of this paper lies in its agency-centric view. By proving that individual seed contributions can be localized/quantified (), the authors turned a complex competitive game into a manageable resource allocation problem.

Takeaway: For modern social platforms, fairness isn't just an ethical choice—it's a computational one. The TIC model provides a robust framework for managing multi-client viral marketing campaigns where timeliness and frequency of exposure are the primary drivers of adoption.

Limitations: The model assumes the agency chooses all seeds. In reality, companies might select their own seeds without coordination, which would shift the problem back toward a non-cooperative game theory landscape.

Find Similar Papers

Try Our Examples

  • Search for recent papers dealing with fairness in influence maximization, specifically focusing on group fairness or individual influence equity among multiple stakeholders.
  • Which paper first formally introduced the "Deadline" or "Timeliness" constraint in Independent Cascade models, and how does the TIC model's decision logic differ from it?
  • Find research that applies competitive influence maximization algorithms to real-time rumor mitigation or multi-brand viral marketing in Large Language Model (LLM) based social simulations.
Contents
TIC & FairInf: Balancing Dominance and Equity in Competitive Social Networks
1. TL;DR
2. Background & Motivation
3. The TIC Model: Capturing Timeliness and Competition
4. Methodology: The FairInf Problem
4.1. The "Individual Spread" Insight
4.2. The Myopic Greedy (MG) Algorithm
5. Experimental Validation
6. Deep Insight & Conclusion