The Algorithm
We measure social distance between borrower and lender using the Adamic-Adar Indexβa proven network science algorithm that weights selective connections higher.
The 4-Step Process
1. Find Mutual Connections
B = borrower's network (followers + following)
L = lender's network (followers + following)
M = mutual connections (B β© L)2. Adamic-Adar Weighting
Core insight: A mutual friend with 20 connections is a stronger signal than one with 20,000.
For each mutual connection:
weight = 1 / log(total_connections)
AA_score = Ξ£ weights for all mutualsExample:
Friend with 25 connections β weight = 0.31
Friend with 10,000 connections β weight = 0.11
Small network weighted 3Γ higher
The logarithm provides diminishing returns as networks grow, preventing influencer gaming while rewarding tight-knit communities.
3. Quality Adjustment
Filter spam/bots using Neynar quality scores:
Q_avg = (Q_borrower + Q_lender) / 2
AA_effective = AA_score Γ Q_avgQuality scores (0-1 scale):
Legitimate user: 0.9
Low activity: 0.5
Bot/spam: 0.1
4. Calculate Final Score (0-100)
Three components (initial thresholds):
A. Base Score (max 60 points)
β₯ 20
60
β₯ 10
50
β₯ 5
35
β₯ 2.5
20
β₯ 1
10
B. Overlap Bonus (max 30 points)
When significant portion of both networks overlap:
P_overlap = (M / min(|B|, |L|)) Γ 100
Bonus = min(P_overlap Γ 3, 30) if P_overlap > 10%C. Mutual Follow Bonus (max 10 points)
Both follow each other: +10
One-way follow: +5
No direct follow: +0
Final:
S_total = min(S_base + S_overlap + S_mutual, 100)Example
Given:
25 mutual connections
AA_score = 8.5
Q_borrower = 0.9, Q_lender = 0.85
Both follow each other
Result:
AA_effective = 8.5 Γ 0.875 = 7.44
Base = 35 points
Overlap = 0 (below 10% threshold)
Mutual follow = 10 points
Total = 45 (MEDIUM RISK)
Why This Works
Research shows:
Adamic-Adar improves link prediction accuracy by 82% over simple friend counting [7]
Social network ties on Prosper.com correlate with better repayment performance [8]
Consistently top-3 performing algorithm for network similarity measurement
Note: The algorithm was designed for link prediction, not loan defaults. We're testing whether it translates to repayment prediction in Phase 0.
Benefits:
Friends know you better than strangers (reduces information asymmetry)
Penalizes influencer gaming (following 10K people = minimal signal)
Rewards tight communities (close-knit groups score highest)
Sybil resistant (quality filtering + weighting)
Transparent (public social graph data)
Back to: Social Trust Scoring Β· Risk Scoring
Last updated