1 minute read

harmonic 这个词的意思太多了,比如在 periodic signals 里翻译成 “谐波”。而 Harmonic Function 的翻译是 “调和函数

本篇 quote from V7. Laplace’s Equation and Harmonic Functions, M.I.T. 18.02 Notes, Exercises and Solutions by Jeremy Orloff

Laplace operatorPermalink

The two-dimensional Laplace operator, or laplacian as it is often called, is denoted by 2 or lap, and defined by

2=2x2+2y2

当然你可以扩展到多维:

2=2x12+2x22++2xn2

注意 2 其实是一个参数为 f 的函数,只是我们不写成 2(f) 而是直接用 2f 表示:

2f=2fx2+2fy2

where f(x,y) is a twice differentiable functions.

The notation 2 comes from thinking of the operator as a sort of symbolic scalar product:

2==(xi+xj)(xi+xj)=2x2+2y2

Notice that the laplacian is a linear operator, that is it satisfies the two rules

  • 2(u+v)=2u+2v
  • 2cu=c(2u)

for any two twice differentiable functions u(x,y) and v(x,y) and any constant c.

Laplace equationPermalink

I.e.

2f=0

Harmonic FunctionPermalink

A function ϕ(x,y) which has continuous second partial derivatives and satisfies Laplace’s equation is called a harmonic function. I.e.

ϕ is harmonic2ϕ=0

Considering laplacian is a linear operator, we have:

ϕ and ψ harmonic(ϕ+ψ) and cϕ are harmonic

Examples of harmonic functionsPermalink

仅列举 Harmonic homogeneous polynomials in two variables 的例子。更多请参考教程。

  • Degree 0: all constants c are harmonic.
  • Degree 1: all linear polynomials ax+by are harmonic.
  • Degree 2: the quadratic polynomials x2y2 and xy are harmonic; all other harmonic homogeneous quadratic polynomials are linear combinations of these, e.g.:
ϕ(x,y)=a(x2y2)+bxy

where ab are constants.

  • Degree n: the real and imaginary parts of the complex polynomial (x+iy)n are harmonic.

Categories:

Updated:

Comments