Compact Householder-type Bidiagonal Updates
- Compact Householder-type bidiagonal updates are efficient algorithms that update matrix bidiagonal factorizations under low-rank modifications while preserving sparsity.
- They employ Householder reflectors and the compact WY representation to restore bidiagonality and maintain numerical stability in streaming data applications.
- This method significantly reduces memory usage and computational cost compared to full SVD recomputation, making it ideal for high-throughput scenarios.
A compact Householder-type bidiagonal update is an algorithmic technique for updating the bidiagonal factorization of a matrix under low-rank modifications, with particular emphasis on streaming data and high-throughput matrix applications. Such updates provide a memory-efficient and numerically stable alternative to full singular value decomposition (SVD) recomputation, decoupling a sparse component from the low-rank update and enabling efficient maintenance of bidiagonal structure even under frequent modifications (Brust et al., 2 Sep 2025).
1. Mathematical Formulation
Let be a matrix at step of a data stream with a known bidiagonal factorization:
where and are orthogonal, and is upper bidiagonal, .
Given a low-rank update with , (rank-0), one transforms the update into the framework of the existing factors:
1
with 2 and 3.
In the rank-1 case (4), 5 and the inner update to be bidiagonalized is 6, with 7, 8.
To restore bidiagonality, Householder reflectors 9 (left) and 0 (right) are constructed to zero out subdiagonal and superdiagonal elements as required. Each reflector takes the form 1 with scalar 2 and appropriate support. The compact WY representation accumulates these reflectors: for the left, 3, 4 with entries 5 for 6, 7 for 8 and 9 otherwise; 0.
Similarly, right reflectors 1, 2: 3.
Applying 4 pairs of reflectors to 5 yields the key factorization:
6
with 7 structured so that the corrections are rank-8. Because 9 is bidiagonal and the update is low-rank, fill-in is limited, maintaining sparsity of the factors.
2. Algorithmic Procedure
The compact Householder-type bidiagonal update algorithm (denoted in (Brust et al., 2 Sep 2025) as BHU) proceeds as follows for the rank-1 case:
- Initialization: Start with 0, 1, 2, and 3, 4 implicit via 5, 6.
- Transform Update Vectors: Set 7 (initially just 8), 9.
- Iterative Bidiagonalization: For 0 to 1:
- Compute the 2th transformed column 3.
- Form Householder 4 to annihilate 5, append to 6.
- Update left-block 7.
- Compute transformed row and corresponding Householder 8, append to 9.
- Grow 0 per the structured formula.
- Extraction: After 1, the updated bidiagonal 2 is the upper bidiagonal part of 3. Updated 4 and 5 can be stored implicitly via the compact reflectors.
This procedure circumvents dense intermediate matrices and internalizes the update in the Householder compact form. Each step updates the implicit 6 and 7 factors without materializing giant orthogonal arrays.
3. Complexity and Memory Analysis
Let 8. Each iteration involves:
- Forming the active column: 9 flops.
- Triangular solves with 0: 1.
- Householder operations: 2.
Summing over 3 to 4 yields a global computational cost of
5
This complexity is about 6 higher than standard dense Householder bidiagonalization (as in LAPACK’s dgebrd), which costs 7.
Memory usage: 8, 9, vectors 0, 1, and triangular factors 2, 3 packed into 4, 5. The total storage is approximately 6 words. This is about half of the extra storage required by blocked bidiagonalization and significantly less than that required by forming dense intermediate matrices in standard SVD updating approaches, such as Brand (2006).
4. Numerical Stability and Accuracy
Each Householder reflector is normwise backward-stable. The compact WY representation preserves orthogonality to working precision:
7
where 8 is machine epsilon. The error in the reconstructed matrix after update satisfies:
9
The truncation error is governed by the Eckart–Young theorem adapted for bidiagonal matrices:
0
where 1, 2 are the diagonal and subdiagonal elements of the updated 3.
Occasional re-orthogonalization of 4, 5 may be warranted for accumulated backward error. The cost of re-orthogonalization is 6.
5. Illustrative Example
For 7, let 8 be initially
9
and vectors 00, 01. Stepwise:
- First Householder (02):
03
Choose 04 to zero 05: 06, 07.
- First right Householder: Compute row 08; eliminate further entries via 09.
Continuing for 10 yields the full bidiagonalization with updated 11, 12 in 13. For the concrete choice 14, 15, 16, the update 17 increases 18 only: 19 is unchanged except 20.
6. Practical Context and Comparative Perspective
The compact Householder-type bidiagonal update as outlined in (Brust et al., 2 Sep 2025) is specifically effective for high-throughput scenarios such as recommendation systems and network analysis where rapid, low-memory, and accurate subspace tracking is critical. The approach is contrasted to LAPACK’s dense algorithms and incremental SVD updates, offering qualitatively similar accuracy with reduced intermediate memory requirements. A primary distinction is that the compact Householder approach trades some additional floating-point operations for dramatically reduced workspace, which is often the limiting resource in large-scale data settings.
Theoretical and empirical analysis establishes parity to SVD-based accuracy in practice, with the added benefit of explicit control of orthogonality, stable backward error, and efficient updating without dense matrix intermediates.
7. References
- J. J. Brust & M. A. Saunders, “Fast and Accurate SVD-Type Updating in Streaming Data,” SIAM J. Math. Data Sci., 2025 (Brust et al., 2 Sep 2025).