I'm trying to solve the following minimization problem: $$\underset{\lambda\in[a,b]}{\min}\|A(\lambda)X-X\|_2$$ for given $a<b$ in $\mathbb{R}$ and where $A(\lambda)$ is matrix of size $n\times n$ where entries depend on a parameter $\lambda$ and $X$ is a column vector of $\mathbb{R}^n$.
We have : $$\|A(\lambda)X-X\|_2=\|(A(\lambda)-I_n)X\|_2$$ And if $X$ is fixed during optimization and completely independant from $\lambda$, it turns out that solving : $$\underset{\lambda\in[a,b]}{\min}\|A(\lambda)X-X\|_2$$ is equivalent to solve : $$\underset{\lambda\in[a,b]}{\min}\|A(\lambda)-I_n\|_2$$ ?
With matrix norms, i can majorate with norm product of each terms involved and once done, the norm of $X$ is just a constant so i can remove it from the minimization process. What do you think about that , the same for "regular" norms?
Best !