A pipeline has to solve for the same matrix but different right-hand sides .
Two standard cost facts you may use, counted in floating-point operations (flops) for an matrix:
| Operation | Cost |
|---|---|
| Gaussian elimination reducing to triangular form (equivalently, producing ) | |
| One forward substitution plus one back substitution, given and |
Plan A runs the full elimination from scratch for every right-hand side.
Plan B factors once, then reuses and for all solves.
Roughly how many times less work does Plan B do than Plan A?
Select all that apply.