I want to solve the linear system, $$(\mathbf{A}+\alpha \mathbf{B}) \mathbf{x} = \mathbf{b},$$ where $\mathbf{A,B}\in\mathbb{R}^{n\times n}$, $\mathbf{x,b}\in\mathbb{R}^{n\times 1}$ and $\alpha\in\mathbb{R}$.
Let say that I want to solve that linear system for different $\alpha$ values. Is there any $\mathbf{A}+\alpha \mathbf{B}$ decomposition that could be easily updated for different $\alpha$ values so I could solve fast each system? If not, is there any way to solve this set of systems fast?
PD: I do not need a full answer but just some hints in case it can be solved fast.
Suppose that
$$(A+\alpha B)x = b$$ $A,B \in \mathbb{R}^{n \times n} , x ,b \in \mathbb{R}^{n} , \alpha \in \mathbb{R} $
I'm not sure how to preserve the original matrices if you just want the solution
Let $C= A+\alpha B$
now $C =U \Sigma V^{T} $
$$ Cx=b \implies U\Sigma V^{T}x =b$$ $$ C^{+} = V \Sigma^{-1} U^{T} $$ $$ x = V \Sigma^{-1}U^{T} b $$
You should understand that even slight changes in $\alpha$ could change the condition number $(A+\alpha B)$ for some matrices which would destroy your precision. The computational time for solving this is very little to update it.