비트 오차율 (Bit Error Rate / BER)

데이터 전송 정확도 지표.

BER is influenced by several factors, including signal-to-noise ratio (SNR), interference, distortion, and bit synchronization issues. In high-speed data transmission, a BER of $10^{-9}$ or better is typically required. To combat bit errors, systems use techniques like Forward Error Correction (FEC) and complex modulation schemes. In the context of hardware, BER is also used to measure the reliability of storage devices like SSDs (Raw Bit Error Rate - RBER).

        graph LR
  Center["비트 오차율 (Bit Error Rate / BER)"]:::main
  classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
  classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
  classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
  classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
  linkStyle default stroke:#4b5563,stroke-width:2px;

      

🧒 5살도 이해할 수 있게 설명

친구에게 공 100개를 던졌는데 친구가 5개를 놓쳤다면, 에러율은 5%예요. 디지털 정보를 주고받을 때도 얼마나 많은 정보(비트)가 중간에 바뀌거나 사라졌는지를 나타내는 값입니다.

🤓 Expert Deep Dive

Mathematically, the BER is the probability of bit error ($P_e$). For BPSK (Binary Phase Shift Keying) modulation in an AWGN (Additive White Gaussian Noise) channel, BER is expressed as $Q(\sqrt{2E_b/N_0})$, where $Q$ is the Q-function and $E_b/N_0$ is the energy per bit to noise power spectral density ratio. Beyond simple bit errors, engineers also monitor 'Burst Errors', where multiple consecutive bits are corrupted, requiring specialized interleaving and Reed-Solomon or LDPC codes to recover the data.

📚 출처