Reciprocal Rank Fusion (RRF) is a rank aggregation algorithm that combines multiple ranked lists of search results (e.g., from vector and keyword search) into a single unified list by summing the reciprocal of each document's rank from each input list. The core formula is score = sum(1 / (k + rank)), where k is a constant (typically 60) that stabilizes the impact of high ranks. This method is parameter-free, computationally trivial, and remarkably effective at improving recall and result diversity without requiring complex score normalization.
