Chapter 6 extra note 6

Operator norm
condition number


Operator norm of a linear transformation

Given

TL(V,W) where
V
and
W
are normed spaces. The operator norm of
T
, denoted by
T
, is defined as
(1)T=maxvV,v1{Tv}.

Remark:
(1) is often called operator norm or natural norm.

Remark:
One should verify that (1) indeed defines a norm.

Proposition:

(2)T=maxvV,v=1{Tv}.

  • Proof (idea):

    If

    v1, then
    (3)Tv=vT(vv)T(vv).

Proposition:

(4)TvTv.

  • Proof (idea):

    (5)Tv=vT(vv)=vT(vv)vT.

Proposition:
Let

V and
W
be inner product space, then
T=σ1
.

  • Proof:

    Given

    v1, we have
    (6)Tv2=i=1rσi2v,vi2σ12i=1rv,vi2σ12.

    Also, choose
    v=v1
    , we have
    (7)Tv1=σ1.

    Therefore,
    T=σ1
    .

Example:
Let

AMm×n, then
A
defines a linear transfomration and
AL(Rn,Rm)
, and the operator
2
-norm of
A
is
(8)A2=ρ(AA),

where
ρ(AA)
denotes the largest eigenvalue of
AA
.

Remark:
Be aware that the notation here is different from the textbook.


Condition number

To find

x such that
Ax=b
.

Given

x^, we define the residual as
r=bAx^
.

Question: If

rϵ, do we have
xx^<ϵ
?

Answer: NO!


Condition number measures how sensitive the answer is to perturbation in the input data.

Assuming that

Ax^=bϵ, we define
x^=xδ
to have
(9)A(xx^)=b(bϵ)=ϵδ=A1ϵ.

Also,
(10)δ=A1ϵA1ϵ,

and as a result,
(11)δxA1ϵxbb=A1ϵxAxbAA1ϵb.

We define

κ(A)=AA1 as the condition number of a matrix
A
. We have
(12)δxκ(A)ϵb.

Remark:

(13)1=I=AA1AA1=κ(A).
So the condition number of a matrix is always greater than or equals to one.

Remark:
Condition number depends on the chosen norm. If we choose to use the operator

2-norm, then
(14)κ(A)=σmaxσmin,

where
σmax
(
σmin
) denotes the largest(smallest) singular values of
A
.


計算數學 lecture 0

Question:
考慮調和級數(Harmonic series)

n=11n
是否能以程式判斷其收斂或發散?

如果我們以電腦完全依照這級數一項一項做加法, 則一定會收斂到某個數字. 因為可以將此級數拆解為

n=110161n+n=1016+11n.
後面那個級數裡的每一項都小於 machine epsilon, 所以當他們被加進級數和時會沒有任何作用.

因此若以程式將此級數一項一項做加法, 一定會不大於前面那個級數和.

Remark:
1.

n=1N1n1N1xdx=ln(N).
2.
ln(1016)37
.


Image compression