next up previous
Next: Conjugate Gradient Method Up: Lecture 8 Previous: Inexact Line Search

Conjugate Direction Methods

We now look at another type of methods that only use gradient information. Remember that the Steepest Descent Method had problems with ill-conditioned problems.

We start by examining the quadratic problem

\begin{displaymath}
\min_x \frac{1}{2} x^T Q x - b^T x, \end{displaymath}

with the solution Q x* = b.

Conjugate Directions Definition. Two vectors, d1 and d2, are Q-orthogonal (or conjugate with respect to Q) if d1T Q d2 = 0.

Proposition. If Q is positive definite, and a set of nonzero vectors, $d_0, d_1, \ldots , d_k$, are Q-orthogonal, then these vectors are linearly independent.

Proof. By contradiction. If linearly dependent, then there exists \(\alpha_i\) such that \( \alpha_0 d_0 + \ldots + \alpha_k d_k = 0 \)
Then we have that \( \alpha_i d_i^T Q d_i = 0 \)
Contradiction, since Q is positive definite \( \Rightarrow \quad d_i^T Q d_i \gt 0 \quad 
 \Rightarrow \quad \alpha_i = 0 \)

Why Q-orthogonality?

Now it remains to find the dis.

Conjugate Direction Theorem
Let \( \left\lbrace d_i \right\rbrace_{i=0}^{n-1} \) be a set of nonzero Q-orthogonal vectors. For any x0 the sequence \( \left\lbrace x_k \right\rbrace \) generated by

\begin{displaymath}
x_{k+1} = x_k + \alpha_k d_k\end{displaymath}

with

\begin{displaymath}
\alpha_k = - \frac{ g_k^T d_k}{d_k^T Q d_k}\end{displaymath}

and

gk = Qxk - b

we have that it converges to the unique solution x* of Qx=b after n steps, i.e. xn=x*

Proof.


next up previous
Next: Conjugate Gradient Method Up: Lecture 8 Previous: Inexact Line Search
Mats Holmstr|m
10/31/1997