Concept:
Derivative-based algorithms designed for automated QRS complex detection leverage the mathematical fact that the ventricular depolarization phase (the R-wave) exhibits a significantly steeper slope and higher frequency content compared to other slower ECG features, such as atrial depolarization (P-wave), ventricular repolarization (T-wave), or baseline wander. Early biomedical engineers, including Balda et al. and later Ahlstrom and Tompkins, developed real-time detection systems that extract these high-rate-of-change features using combinations of the first and second mathematical derivatives. A popular composite technique forms a unified, robust decision metric $Y[n]$ by linearly combining the rectified or squared values of the first and second derivatives with fixed experimental weighting coefficients:
\[
Y[n] = A \cdot |y'_1[n]| + B \cdot |y'_2[n]|
\]
Step 1: Identifying the specific empirical weighting coefficients.
In standard, widely implemented derivative-based QRS detection algorithms (extensively detailed in biomedical instrumentation standards by Webster and Tompkins):
• The scaling multiplier assigned to amplify the absolute first derivative, $y'_1[n]$ (which highlights the maximum steepness of the upslope and downslope of the R-wave), is empirically optimized around $A = 1.3$.
• The scaling multiplier assigned to amplify the absolute second derivative, $y'_2[n]$ (which highlights high-frequency turning points, curvature change, and sharp peaks), is empirically optimized around $B = 1.1$.
This precise mathematical combination provides a highly balanced operational trade-off. The first derivative captures the primary slope of the QRS complex, while the second derivative highlights sharp directional changes at the R-wave peak and turning points. Together, they maximize detection accuracy while effectively suppressing muscle artifacts (electromyogram noise) and high-amplitude T-waves.
Step 2: Verification.
Matching these standard empirical biomedical constants to the options provided:
• Weighting factor for the first derivative $\approx 1.3$
• Weighting factor for the second derivative $\approx 1.1$
This corresponds exactly to Option (A).