
When c !1, the equation approached to the Laplace equation ∆u = 0. Therefore, we can consider the
Laplace equation as a wave pr opagation equation with the wave speed infinity. This justifies t ha t if the
condition on bnd(Ω) changes, this change affects immediately on the value of u inside Ω.
a) Ver ify that the functio n u = 1 + "r
2
sin(2θ) satisfies the Laplace equation
∆u = 0 on B
u = 1 + " sin(2θ) on bnd(B)
;
where B is the unit disk in R
2
.
b) For " = 0, the unique solution is u = 1. For the boundary condition uj
bnd(B)
=1 + "sin(2θ), the
solution inside B changes immediately to u = 1 + "r
2
sin(2θ). Run the following code in Matlab
and draw the solut ion for " = 0; 0.5; 1.
[th,r]=meshgrid(-pi:pi/20:pi,0:0.2:1);
up=@(e) 1+e*r.^2.*sin(2*th);
[x,y]=pol2cart(th,r,up(0.5));
axis([-1 1 -1 1 0 2]);
subplot(2,2,1)
surf(x,y,up(0));
axis([-1 1 -1 1 0 2]);
title('$\epsilon=0$','interpreter','latex','fontsize',12);
subplot(2,2,2)
surf(x,y,up(0.5));
axis([-1 1 -1 1 0 2]);
title('$\epsilon=0.5$','interpreter','latex','fontsize',12);
subplot(2,2,3)
surf(x,y,up(1));
axis([-1 1 -1 1 0 2]);
title('$\epsilon=1$','interpreter','latex','fontsize',12)
Another consequence of the relation (3.4) is the Mean Value Property of harmonic f unc-
tion. In its rigorous form, it states that i f u is a harmonic function on an open set Ω in R
n
,
and B
r
(x) denotes the open ball of radius r centered at x, and S
r
(x) denotes the sphere
bnd(B
r
(x)), then for any x 2Ω and r > 0 such that B
r
(x) ⊆Ω, we have:
u(x) =
1
jS
r
j
I
S
r
(x)
u(z) dS;
where jS
r
j denotes the volume of the ball sphere S
r
. In other words, the value of a harmonic
function at any point is the average of its values over any sphere cente red at that point.
In the case of harmonic functions on Ω ⊂R
2
, the Mean Va lue Property can be expressed
as follows: if u is a harmonic function on an open set Ω, and B
r
(z
0
) denotes the open disk
of radius r centered at z
0
= (x
0
; y
0
) and contained in Ω, then
u(z
0
) =
1
2πr
I
C
r
(z
0
)
u(z) dz;
where C
r
(z
0
) denotes the circle of radius r centered at z
0
, oriented counterclock wise. In other
words, the value of a harmonic function at any point is the average of its values over any
circle centered at that point.
To see why this is true, suppose u is harmonic in an open set Ω⊂R
2
and consider two
circles centered at z
0
=(x
0
; y
0
) with radii r and r + " inside Ω. For an arbit rary point z on
C
r
, the ci rcle of radius r, consider the a ssociated point z + " r^ on C
r+ "
.
26 Linear Second-Order Equations