• Keine Ergebnisse gefunden

Definition 1 (Scalar product, pre-Hilbert space). Let E be a vector space over R . The map h·, ·i : E × E → R is called scalar product or inner product on E if

N/A
N/A
Protected

Academic year: 2021

Aktie "Definition 1 (Scalar product, pre-Hilbert space). Let E be a vector space over R . The map h·, ·i : E × E → R is called scalar product or inner product on E if"

Copied!
3
0
0

Wird geladen.... (Jetzt Volltext ansehen)

Volltext

(1)

Wissenschaftliches Rechnen II/Scientific Computing II

Sommersemester 2016 Prof. Dr. Jochen Garcke Dipl.-Math. Sebastian Mayer

Exercise sheet 1: Warm up To be handed in on Thursday, 21.4.2016 This exercise sheet is a warm up. The exercises are intended to recall some concepts which you should have seen before during your studies and which will help you understand the contents of this course.

1 Hilbert spaces: basic notions

Definition 1 (Scalar product, pre-Hilbert space). Let E be a vector space over R . The map h·, ·i : E × E → R is called scalar product or inner product on E if

(S1) x 7→ hx, yi is linear for all y ∈ E, (S2) hx, yi = hy, xi for all x, y ∈ E.

(S3) hx, xi ≥ 0 for all x ∈ E and hx, xi = 0 if and only if x = 0.

The pair (E, h·, ·i) or simply E is called a pre-Hilbert space.

Every pre-Hilbert space (E, h·, ·i) is a normed space with norm k · k = p h·, ·i.

Definition 2. A complete pre-Hilbert space is called a Hilbert space.

Definition 3. Let E be a pre-Hilbert space. A countable subset S ⊂ E is called ortho- normal system (ONS) if for all x, y ∈ E we have

hx, yi =

( 1, if x = y 0, if x 6= y.

A orthonormal system S is called orthonormal basis (ONB) if span S is dense in E .

2 Group work

Please work on the following exercises in groups of three to four people during the exercise session. The tutor can help you with hints if you have problems solving the exercises.

G 1. (Cauchy-Schwarz inequality)

Let E be a pre-Hilbert space over R with inner product h·, ·i. Show that for all x, y ∈ E

|hx, yi|

2

≤ hx, xi hy, yi.

Hint: Before you try to prove it, make sure you understand the geometrical meaning of

the above inequality.

(2)

G 2. (The mother of all Hilbert spaces) Consider the sequence space

`

2

( N ) = {(x

1

, x

2

, . . . ) ∈ R

N

:

X

i=1

|x

i

|

2

< ∞}.

Prove the following claims:

a) The map hx, yi = P

i=1

x

i

y

i

defines an inner product on `

2

( N ).

b) The space `

2

( N ) with inner product h·, ·i is a Hilbert space.

G 3. (Bessel’s inequality)

Let E be a pre-Hilbert space and (e

i

)

i∈N

be a ONS in E. Show that for all x ∈ E

X

i=1

|hx, e

i

i|

2

≤ kxk

2

.

Discuss the geometrical meaning of the inequality. Hint: Compare with G 1.

G 4. Let H be a Hilbert space with scalar product h·, ·i and further, let S be a ONS in H. Prove that the following statements are equivalent:

1. S is a ONB.

2. For x, y ∈ H we have hx, yi = P

e∈S

hx, eihe, yi.

3. For all x ∈ H we have kxk

2

= P

e∈S

|hx, ei|

2

. 4. S

= {x ∈ H : hx, ei = 0 for all e ∈ S} = {0}.

5. S is a maximal ONS, that is, there is no ONS S

0

such that S ( S

0

. 6. span S is dense in H.

3 Homework

The following exercises are homework. Throughout this course, you are supposed to solve and hand in the homework as a group of two people. Use the first session to find a partner.

Since this exercise sheet is only a warm up this homework will not be graded. But if you hand it in we will correct it for you.

H 1. (Riesz representation theorem)

Consider the Hilbert space `

2

( N ) introduced in G 2.

a) Show that for any n ∈ N , the map µ

1

: `

2

( N ) → R , x 7→ P

n

i=1

x

i

is a continuous linear functional on `

2

( N ). What element u ∈ H represents µ

1

?

b) Consider the map µ

2

(x) = lim

n→∞ 1 n

P

n

i=1

x

i

. Show that the map is well-defined on

`

2

( N ) and show that it is a continuous linear functional. What is its Riesz representer?

H 2. (Newton interpolation)

Assume to be given data points (x

0

, y

0

), . . . , (x

n

, y

n

) ∈ R

2

, such that the x

i

are pairwise different. We are seeking a polynomial P of degree n which interpolates the given data points, that is

P (x

j

) = y

j

for j = 1, . . . , n.

2

(3)

If P takes the form

P (x) =

n

X

i=0

c

i

N

i

(x),

where c

1

, . . . , c

n

∈ R and the N

i

are Newton basis polynomials,

N

0

(x) = 1, N

i

(x) =

i−1

Y

j=0

(x − x

j

),

then P is called interpolation polynomial in Newton form.

a) Show that if the x

i

are pairwise different, then the interpolation problem

N

0

(x

0

) · · · N

n

(x

0

) .. . . .. .. . N

0

(x

n

) · · · N

n

(x

n

)

 c

0

.. . c

n

 =

 y

0

.. . y

n

always has a solution and this solution is unique.

b) It can be shown that the coefficients c

1

, . . . , c

n

are given by the divided differences c

i

= [x

1

, . . . , x

i

]f.

These divided differences are recursively defined by [x

i

]f = y

i

[x

i

, . . . , x

j

]f = [x

i+1

, . . . , x

j

]f − [x

i

, . . . , x

j−1

]f x

j

− x

i

i < j.

Determine the coefficient c

1

, . . . , c

n

of the interpolation polynomial in Newton form for the following data points:

i 0 1 2 3 4

x

i

-5 -2 -1 0 1

y

i

17 8 21 42 35

H 3. (Programming exercise)

This exercise assumes you have already a working python installation including the fol- lowing packages: numpy, matplotlib, jupyter. See the course homepage for information how to get a working python installation.

a) Download sheet1-notebook.ipynb from the course homepage.

b) Start jupyter notebook from a terminal. Import sheet1-notebook.ipynb and replace the title with [Your name] Notebook 1.

c) Solve the tasks posed to you in the notebook.

d) If you are done, mail the notebook file to mayer@ins.uni-bonn.de.

3

Referenzen

ÄHNLICHE DOKUMENTE

[r]

Mit dem Mantel hatte es gewiß viel auf sich, und doch wäre er nur ein religiöses Relikt, wenn der Herr, der Gott Elias, nicht da wäre.. Man könnte einen solchen

Recalling that a cartesian product of complete Hausdor↵ TAs endowed with the product topology is a complete Hausdor↵ TA and applying Proposi- tion 3.3.5, Corollary 3.3.6 and

To examine whether the goods identified are relatively close to the existing production structure (and therefore feasible) and would at the same time positively affect overall

gewärmt eingelegt worden waren, mit dem Unterschiede, dass nunmehr nicht allein das Chromalaungefäss unbedeckt blieb, sondern auch der Brütraum durch eine grosse Lücke seines

* Nur Frauen zwischen 13 und 25 Jahren, die in der Freizeit oder im Beruf sehr aktiv sind, haben erhöhten Energiebedarf.. Unterschiede

Einrichtungen vor Ort: Hier finden Sie Supermärkte, Apotheken, einen Metzger, eine Bäckerei und verschiedene Geschäfte..

To change the connection method back to access point mode from another mode, initialize the product’s network settings, and then reconnect the device to the product using Wi-Fi