Further Matrices
Further Matrices
CONTENTS
Quadratic Forms and Definite Matrix 169
Eigenvalues and Eigenvectors 172
Unconstrained Optimization Using the Bordered Hessian 174
Constrained Optimization Using the Bordered Hessian 179
Q U A D R A TIC F O R M S A ND D E F IN I TE M A TR IX
The quadratic form of an 𝑛 × 𝑛 symmetric matrix A is given by
𝑄(𝑥) = 𝑥 𝑇 𝐴𝑥
𝑥2 ] [1 2 𝑥1
𝑄(𝑥) = 𝑥 𝑇 𝐴𝑥 = [𝑥1 ][ ]
2 1 𝑥2
= 𝑥12 + 4𝑥1 𝑥2 + 𝑥22
Also, 𝑄(𝑥) is said to be positive definite if 𝑄(𝑥) ≥ 0 for all 𝑥, and negative
definite if 𝑄(𝑥) ≤ 0 for all 𝑥.
The matrix 𝐴 will determine to which one of the above definitions the quadratic
form will belong. We can use either of the two tests:
1. Discriminant test
2. Eigenvalues test
For example, matrix A is positive definite if and only if all the eigenvalues are
positive (see Table 13.1). The determinant of a matrix is the product of its
eigenvalues. So, if all the eigenvalues are positive, then the
discriminant/determinant is also positive.
EXAMPLE 13.2
Write 𝑄 = 5𝑥12 + 4𝑥22 − 4𝑥1 𝑥2 in the form 𝑄(𝑥) = 𝑥 𝑇 𝐴𝑥, where 𝐴 is a 2 × 2
matrix.
S O L U T I O N tips
The cross term is −4𝑥1 𝑥2 = −2𝑥1 𝑥2 − 2𝑥2 𝑥1 . Hence
𝑥
𝑄(𝑥) = 𝑥 𝑇 𝐴𝑥 = [𝑥1 𝑥2 ] [ 5 −2] [ 1 ]
−2 4 𝑥2
NOTE: The coefficients of the squares appear on the main diagonal while the
coefficients of the cross terms are neatly divided among two positions to give
a symmetric matrix. Hence this matrix is referred to as the matrix of the
quadratic form Q.
Chapter 13 | Quadratic Forms, Definiteness, Eigenvalues & Hessian 171