Chase Combining
Understanding Chase Combining
Chase combining is named after David Chase, who introduced the concept of using soft-decision reliability information from multiple receptions to improve decoding performance. Unlike hard-combining (simple majority voting on bits), Chase combining preserves the analog reliability of each received symbol. When the receiver gets a second copy of the same codeword, it adds the LLR values element-by-element, effectively doubling the signal energy while the noise adds incoherently. The combined LLR vector is then passed to the turbo, LDPC, or polar decoder as if it came from a single reception at a higher SNR.
The simplicity of Chase combining is its primary advantage: the transmitter needs no additional coding machinery because it simply repeats the same encoded packet. The receiver maintains a soft buffer storing LLRs from prior attempts and adds new LLRs upon each retransmission. This contrasts with incremental redundancy (IR), where the transmitter must store and select different redundancy versions (puncturing patterns) and the receiver must correctly de-rate-match and combine bits from different code positions. Chase combining therefore requires less transmitter complexity and smaller rate-matching tables, at the cost of lower throughput efficiency compared to IR.
Combining Gain Analysis
LLRcombined(k) = Σn=1..N LLRn(k)
Effective SNR After N Transmissions (AWGN):
SNReff = N × SNRsingle
SNReff,dB = SNRsingle,dB + 10·log10(N)
Throughput:
η = R / E[N] [bits/s/Hz]
Where R = code rate, E[N] = expected number of transmissions to successful decode, k = bit index within the codeword. Under Rayleigh fading with sufficient time diversity between retransmissions, the gain approaches the AWGN bound.
Chase Combining vs. Incremental Redundancy
| Feature | Chase Combining (Type I) | Incremental Redundancy (Type II/III) |
|---|---|---|
| Retransmitted bits | Identical copy | New parity bits (different RV) |
| Effective code rate | Fixed at original R | Decreases with each retx |
| SNR gain per retx | ~3 dB (doubling) | 3+ dB (code rate reduction) |
| Throughput efficiency | Lower (fixed rate) | Higher (rate-adaptive) |
| Tx buffer requirement | 1 RV stored | Multiple RVs stored |
| 5G NR usage | Broadcast (PBCH, SIB) | Primary mode (RV 0-2-3-1) |
Frequently Asked Questions
How does Chase combining differ from incremental redundancy?
Chase combining retransmits the exact same coded bits every time, and the receiver averages the LLRs. Incremental redundancy sends different redundancy versions on each retransmission, providing new parity bits that lower the effective code rate. IR achieves higher throughput because it approaches capacity by adapting the code rate to the channel, while Chase combining is limited to the original rate. However, Chase combining is simpler because the transmitter buffer stores only one version of the coded packet.
What SNR gain does Chase combining provide per retransmission?
Under independent fading, combining N identical transmissions produces an effective SNR gain of 10·log10(N) dB. The first retransmission (N=2) yields 3 dB, the second (N=3) yields 4.77 dB cumulative. In practice, correlated fading reduces this because consecutive transmissions may experience similar channel conditions. LTE and 5G NR schedule retransmissions with a minimum 8 ms round-trip time to decorrelate fading, restoring most of the theoretical gain.
Where is Chase combining used in modern wireless standards?
In LTE and 5G NR, Chase combining occurs when the same redundancy version (RV0) is retransmitted. The primary HARQ mode uses incremental redundancy with RV sequence 0-2-3-1, but Chase combining is used for broadcast channels (PBCH, SIB) and when the scheduler explicitly requests the same RV. DVB-S2X satellite systems use Chase combining for ACM/VCM return links. Wi-Fi (802.11ax/be) does not use HARQ at the PHY layer, relying on MAC-layer retransmissions without soft combining.