Beyond Connectivity: Maximizing Influence via Trust and User Similarity in Social Networks

Influence Maximization with Trust Relationship in Social Networks

2018-12-01
Nan Wang, Jiansong Da, Jinbao Li, Yong Liu
Summary
Problem
Method
Results
Takeaways
Abstract

The paper introduces the Independent Cascade with Trust (ICT) model, which incorporates social relationships and user similarity into influence maximization. It proposes a Trust Relationship Select Greedy (RSG) algorithm combined with a Path Propagation finding Crucial Nodes (PPCN) algorithm to optimize influence spread estimation and node selection.

TL;DR

This research moves influence maximization (IM) from abstract graph theory into the realm of human psychology. By introducing the Independent Cascade with Trust (ICT) model, the authors prove that influence isn't just about "who you know" but "how much you trust them." They provide a high-efficiency algorithmic duo—RSG and PPCN—that maintains high accuracy even when the traditional mathematical safety nets of sub-modularity and monotonicity fail.

The Problem: The "Constant Probability" Fallacy

Most SOTA influence maximization research treats the probability of "node A activating node B" as a fixed constant or a simple degree-based ratio. In reality, your friend's recommendation carries more weight if you share similar tastes (User Similarity) and many mutual friends (Social Relationship).

Current methods like CELF fail here because they rely on sub-modularity (the law of diminishing returns). The authors demonstrate that once trust and intimacy are factored in, adding a new seed node can sometimes have a non-linear, unpredictable impact on the total spread, breaking the mathematical assumptions of previous greedy approaches.

Methodology: Engineering Trust into Algorithms

1. The ICT Model: Defining Trust

The authors define the propagation probability as a hybrid metric:

  • Social Relationship (): Based on the Jaccard similarity of mutual neighbors.
  • User Similarity (): Calculated via ranking behavior on products, using an exponential decay function to weights ranks.

2. RSG Algorithm: Pruning the Search Space

Because the ICT model is non-submodular, we cannot use traditional fast-greedy methods. The Relationship Select Greedy (RSG) algorithm uses:

  • Snapshots: Generating sub-graphs to predict spreads.
  • Dynamic Pruning: Utilizing "Ubound" techniques to skip nodes that mathematically cannot exceed the current maximum marginal gain.

3. PPCN: The Strategy of Path Propagation

The Path Propagation finding Crucial Nodes (PPCN) algorithm is the "secret sauce" for efficiency. Instead of expensive Monte Carlo simulations, it uses a BFS-like traversal to estimate activation probabilities based on propagation paths, capped at 6 hops (the "Six Degrees of Separation" theory).

Effective cutting edge network Fig 1: Identifying crucial bottleneck edges in a social network where information flow is restricted.

Experimental Insights: Performance vs. Reality

The researchers tested their approach against Benchmarks like CELF, Simulated Annealing (SA), and Simple Greedy on Epinions (a trust-based network) and Wikipedia (a voting network).

Key Findings:

  • Effectiveness: RSG+PPCN achieved influence spreads nearly identical to Brute-force Monte Carlo but at a fraction of the cost.
  • Robustness: In the ICT model, CELF and SA performed poorly because they couldn't adapt to the non-submodular nature of trust-based probabilities.
  • Efficiency: The time complexity is brought down to linear time relative to the number of nodes, .

Experimental Analysis Fig 2: Effectiveness of PPCN compared to Monte Carlo simulations across different seed counts.

Depth Insight: Why It Matters

The most striking takeaway is the discovery of Crucial Nodes. The PPCN algorithm identifies nodes that act as "terminal points" for paths where influence typically fails to pass. By focusing on these bottlenecks, the algorithm ensures that the selected seed set isn't just a cluster of popular users, but a strategic group capable of bridging "trust gaps" in the network.

Conclusion

The paper successfully bridges the gap between social psychology and combinatorial optimization. By acknowledging that propagation probability is dynamic and trust-dependent, the ICT model provides a more realistic framework for viral marketing and information dissemination. While the loss of sub-modularity makes the math "messier," the proposed RSG+PPCN framework proves that efficiency doesn't have to be sacrificed for accuracy.

Future Work: Integrating real-time temporal decay—how trust changes over time—could be the next frontier for this model.

Find Similar Papers

Try Our Examples

  • Search for recent papers on non-submodular influence maximization algorithms that do not rely on the Independent Cascade Model's standard properties.
  • What are the key theoretical foundations of the "Ubound" algorithm and how has it been improved for dynamic propagation probabilities in social networks?
  • Explore research that applies trust-based influence maximization to recommendation systems or targeted viral marketing in mobile commerce.
Contents
Beyond Connectivity: Maximizing Influence via Trust and User Similarity in Social Networks
1. TL;DR
2. The Problem: The "Constant Probability" Fallacy
3. Methodology: Engineering Trust into Algorithms
3.1. 1. The ICT Model: Defining Trust
3.2. 2. RSG Algorithm: Pruning the Search Space
3.3. 3. PPCN: The Strategy of Path Propagation
4. Experimental Insights: Performance vs. Reality
4.1. Key Findings:
5. Depth Insight: Why It Matters
6. Conclusion