Elementary Hilbert space concepts/definitions.

In summary: Technically speaking, orthonormal sets are those that are total (meaning they include the empty set, which is a special case of total).
  • #1
Lavabug
866
37
I'd appreciate it if anyone could help me clear up some concepts, the last chapter of one of my math courses is a (highly mysterious) introduction to Hilbert spaces (very very basic):

What does it mean for a function to be "square-summable"? Has something to do with the scalar product in Hilbert space.

What is meant by a "complete set"? Something about multiplying a set of vectors in the Hilbert space by an orthonormal basis set and that being equal to a summation of scalars*basis vectors?

What is actually meant by eigenfunction/eigenvalues in the context of Hilbert spaces? All I know is if I apply some Hilbert space operator to a function, I get another function with a scalar out in front of it. That scalar is an eigenvalue and the whole function is an eigenfunction.

All I know about eigenvalues is that they're the roots of characteristic polynomials in linear algebra, 2nd order homogenous ODEs, the square of the frequencies in small oscillations problems... They're numbers that can make an equation go to zero maybe?
 
Physics news on Phys.org
  • #2
Hi Lavabug! :smile:

Lavabug said:
I'd appreciate it if anyone could help me clear up some concepts, the last chapter of one of my math courses is a (highly mysterious) introduction to Hilbert spaces (very very basic):

What does it mean for a function to be "square-summable"? Has something to do with the scalar product in Hilbert space.

I fear you're mixing two concepts here. We have a sequence [tex](x_0,x_1,x_2,...)[/tex] that is square-summable if

[tex]\sum_{n=0}^{+\infty}{|x_n|^2}<+\infty[/tex].

On the other hand, if we have a function [tex]f:\mathbb{R}\rightarrow \mathbb{R}[/tex] that is square-integrable if

[tex]\sum_{-\infty}^{+\infty}{|f(x)|^2}<+\infty[/tex].

The set of all square-summable sequences is called [tex]\ell^2[/tex]. The set of all square-integrable functions is [tex]L^2[/tex].

What is meant by a "complete set"? Something about multiplying a set of vectors in the Hilbert space by an orthonormal basis set and that being equal to a summation of scalars*basis vectors?

Did you mean total instead of complete? A complete set X is such that [tex]\overline{Span(X)}=H[/tex]. Thus the closure of the span of X is the entire Hilbert space. A orthonormal set that is total is called a basis.

[/QUOTE]
What is actually meant by eigenfunction/eigenvalues in the context of Hilbert spaces? All I know is if I apply some Hilbert space operator to a function, I get another function with a scalar out in front of it. That scalar is an eigenvalue and the whole function is an eigenfunction.
[/QUOTE]

Well, if we have a continuous linear function F:H->H, then an eigenvector is an element x of H such that F(x)=kx. The number k is called the eigenvalue. This is exactly the same definition as with linear algebra.
Note that elements of Hilbert space are often functions. This is probably why you called them eigenfunctions...

All I know about eigenvalues is that they're the roots of characteristic polynomials in linear algebra, 2nd order homogenous ODEs, the square of the frequencies in small oscillations problems... They're numbers that can make an equation go to zero maybe?

This notions are all good for finite vector spaces. But for infinite vector spaces (such as the usual Hilbert spaces), this does not work anymore. You cannot work with characteristic polynomials and other stuff anymore. This is why the study of eigenvalues and eigenvectors is significantly harder than in the finite-dimenisonal case (= the linear algebra).
 
  • #3
Lavabug said:
I'd appreciate it if anyone could help me clear up some concepts, the last chapter of one of my math courses is a (highly mysterious) introduction to Hilbert spaces (very very basic):

A Hilbert space is an extension of the idea of Euclidean space [itex]\mathbb{R}^n[/itex] or [itex]\mathbb{C}^n[/itex]. These spaces have some structure:
1. They're vector spaces. You can add vectors and multiply them by scalars.
2. They've got a scalar products: i.e. the dot product. You can measure lengths and angles.
3. They're complete: this means you can do calculus on them, and sequences converge under sensible conditions.
If you're not sure what something means in a Hilbert space, it's usually worth thinking about one of these more familiar spaces for a bit of intuition.

What does it mean for a function to be "square-summable"? Has something to do with the scalar product in Hilbert space.
You might talk about a sequence {an} being square-summable, meaning that the series [itex]\sum |a_n|^2 [/itex] converges. The space of such sequences is a Hilbert space, with inner product
[tex]\langle{a_n},{b_n}\rangle=\sum_n \bar{a_n} b_n [/tex]
which is guaranteed to converge if an and bn are both square summable.

You might talk about a function f being square-integrable, meaning that the integral [itex]\int |f|^2[/itex] converges. The space of such functions also forms a Hilbert space, with inner product
[tex]\langle f,g\rangle=\int \bar{f} g[/tex]
which converges if f and g are both square integrable.

I suspect what you are interested in is one of these.

What is meant by a "complete set"? Something about multiplying a set of vectors in the Hilbert space by an orthonormal basis set and that being equal to a summation of scalars*basis vectors?
A complete set is very similar to a basis, in that it is a set of vectors (i.e. elements of the Hilbert space) such that every member of the space can be expressed as a sum of elements of the complete set. But it is different in that the sum can be infinite. For example, in the space of square-summable sequences, every sequence can be expressed as a (usually infinite) sum of the sequences with 1 in the nth position and 0 elsewhere. So the set of all these sequences is a complete set.

What is actually meant by eigenfunction/eigenvalues in the context of Hilbert spaces? All I know is if I apply some Hilbert space operator to a function, I get another function with a scalar out in front of it. That scalar is an eigenvalue and the whole function is an eigenfunction.
That's exactly it. An operator O on a Hilbert space is just a linear map, taking a vector v to a vector Ov. Linearity means that it respects the addition and scalar multiplication on the space. (We often require the extra technical restriction that it's 'bounded', but don't worry too much about that for now). So for u,v in the Hilbert space and a,b scalars, we have O(a.u+b.v) = a.Ou + b.Ov. An eigenvector of O satisfies Ov=av for some scalar a, the eigenvalue. If the space is a space of functions, v is sometimes called an eigenfunction, and if we are doing quantum mechanics, it's sometimes called an eigenstate.

As an example, again on the space of square summable sequences, take the operator that moves every element one to the left, so [itex]O(a_1,a_2,a_3,\ldots)=(a_2,a_3,a_4,\ldots)[\itex]. This is linear, and the sequence {1/2n} is an eigenvector with eigenvalue 1/2: [itex]O(1/2,1/4,1/8,\ldots)=(1/4,1/8,1/16,\ldots)=1/2(1/2,1/4,1/8,\ldots)[/itex].

Hope some of that is helpful.
 

Related to Elementary Hilbert space concepts/definitions.

1. What is a Hilbert space?

A Hilbert space is a mathematical concept that represents an infinite-dimensional vector space, which is complete and has an inner product defined on it. It is named after the German mathematician David Hilbert.

2. What are the basic properties of a Hilbert space?

The basic properties of a Hilbert space are completeness, which means every Cauchy sequence in the space converges to a point in the space, and the existence of an inner product, which satisfies certain properties like linearity, conjugate symmetry, and positive-definiteness.

3. How is a Hilbert space different from a Banach space?

A Hilbert space is a special type of Banach space, which is also complete and has a norm defined on it. However, a Hilbert space has the additional property of having an inner product, while a Banach space may not have this property.

4. What is the significance of Hilbert spaces in physics?

Hilbert spaces are widely used in physics to represent the state of a quantum mechanical system. The vectors in a Hilbert space represent the possible states of the system, and the inner product represents the probability of transitioning from one state to another. Hilbert spaces are also used in functional analysis and differential equations, which are essential tools in physics.

5. Are there any real-world applications of Hilbert spaces?

Yes, there are many real-world applications of Hilbert spaces in various fields such as signal processing, image and audio compression, control systems, and machine learning. Hilbert spaces provide a convenient mathematical framework for analyzing and solving problems in these areas.

Similar threads

  • Quantum Physics
2
Replies
61
Views
1K
Replies
16
Views
411
Replies
3
Views
798
Replies
13
Views
2K
Replies
2
Views
1K
Replies
11
Views
334
  • Quantum Physics
2
Replies
44
Views
4K
  • Quantum Physics
Replies
2
Views
939
  • Quantum Physics
Replies
2
Views
1K
  • Quantum Physics
Replies
7
Views
1K
Back
Top