Tell me more ×
Computational Science Stack Exchange is a question and answer site for scientists using computers to solve scientific problems. It's 100% free, no registration required.

I am reading a paper on stability of CG, and I came across the following statement:

\begin{equation} \frac{\|A\|\,\|p\|^2}{\langle p,Ap\rangle} \leq \kappa(A) \end{equation} where $\kappa(\cdot)$ is the condition number and $\langle \cdot, \cdot \rangle$ the inner product.

Can you, please, help me understand this bound? I cannot see how it was derived. The authors simply state this as a fact. What obvious fact am I missing? $p$ is the search direction vector, and $A$ is the SPD matrix.

Thank you!

share|improve this question

2 Answers

up vote 6 down vote accepted

The bound is a consequence of the following three facts:

  1. The condition number is defined as the ratio of the largest eigenvalue $\lambda_\textrm{max}$ and the smallest eigenvalue $\lambda_\textrm{min}$.

  2. The spectral norm $\|A\|_2$ of a symmetric positive definite matrix is $\lambda_\textrm{max}$ (since, as Arnold Neumaier pointed out, it is the square root of the largest singular value).

  3. By the Courant-Fischer theorem, the smallest eigenvalue of a symmetric matrix $A$ satisfies $$ \lambda_\textrm{min} = \min_{x\neq 0} \frac{\langle x,Ax\rangle}{\langle x,x\rangle}. $$

Putting this together, we have for any $p\neq 0$ that $$ \kappa(A) = \frac{\lambda_\textrm{max}}{\lambda_\textrm{min}} = \frac{\|A\|}{\min_x \frac{\langle x,Ax\rangle}{\|x\|^2}} \geq \frac{\|A\|}{\frac{\langle p,Ap\rangle}{\|p\|^2}} = \frac{\|A\|\|p\|^2}{\langle p,Ap\rangle} $$ since the fraction can only become smaller for any $p$ that is not the minimizer of the denominator.

share|improve this answer
great explanation! thank you! – Eli Sep 14 '12 at 16:22

This assumes that the matrix $A$ is symmetric. Transform it to diagonal form, and observe that the singular values are the absolute values of the eigenvalues. THen the derivation essentially reduces to the definition of the condition number as the quotient of the extreme singular values.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.