forked from yugt/MeasureTheory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mt255.tex
1275 lines (1005 loc) · 49.2 KB
/
mt255.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\frfilename{mt255.tex}
\versiondate{3.7.08}
\copyrightdate{2000}
\def\chaptername{Product measures}
\def\sectionname{Convolutions of functions}
\newsection{255}
I devote a section to a construction which is of great importance -- and
will in particular be very useful in Chapters 27 and 28 -- and may also
be regarded as a series of exercises on the work so far.
I find it difficult to know how much repetition to indulge in in this
section, because the natural unified expression of the ideas is in the
theory of topological
groups, and I do not think we are yet ready for the general theory (I
will come to it in Chapter 44 in Volume 4). The groups we need for this volume are
\qquad $\Bbb R$;
\qquad $\BbbR^r$, for $r\ge 2$;
\qquad $S^1=\{z:z\in\Bbb C,\,|z|=1\}$, the `circle group';
\qquad $\Bbb Z$, the group of integers.
\noindent All the ideas already appear in the theory of convolutions on
$\Bbb R$, and I will therefore present this material in relatively
detailed form, before sketching the forms appropriate to the groups
$\BbbR^r$ and $S^1$ (or $\ocint{-\pi,\pi}$); $\Bbb Z$ can I think be
safely left to the exercises.
\leader{255A}{}\cmmnt{ This being a book on measure theory, it is
perhaps appropriate for me to emphasize, as the basis of the theory of
convolutions, certain measure space isomorphisms.
\medskip
\noindent}{\bf Theorem} Let $\mu$ be Lebesgue measure on $\Bbb R$ and
$\mu_2$ Lebesgue measure on $\BbbR^2$; write $\Sigma$, $\Sigma_2$ for
their domains.
(a) For any $a\in\Bbb R$, the map $x\mapsto a+x:\Bbb R\to\Bbb R$ is a
measure space automorphism of $(\Bbb R,\Sigma,\mu)$.
(b) The map $x\mapsto -x:\Bbb R\to\Bbb R$ is a measure space
automorphism of $(\Bbb R,\Sigma,\mu)$.
(c) For any $a\in\Bbb R$, the map $x\mapsto a-x:\Bbb R\to\Bbb R$ is a
measure space automorphism of $(\Bbb R,\Sigma,\mu)$.
(d) The map $(x,y)\mapsto(x+y,y):\BbbR^2\to\BbbR^2$ is a measure space
automorphism of $(\BbbR^2,\Sigma_2,\mu_2)$.
(e) The map $(x,y)\mapsto(x-y,y):\BbbR^2\to\BbbR^2$ is a measure space
automorphism of $(\BbbR^2,\Sigma_2,\mu_2)$.
\cmmnt{\medskip
\noindent{\bf Remark} I ought to remark that (b), (d) and (e) may be
regarded as simple
special cases of Theorem 263A in the next chapter. I nevertheless feel
that it is worth writing out separate proofs here, partly because the
general case of linear operators dealt with in 263A requires some extra
machinery not needed here, but more because the result here has nothing
to do with the {\it linear} structure of $\Bbb R$ and $\BbbR^2$; it is
exclusively dependent on the {\it group} structure of $\Bbb R$, together
with the links between its topology and measure, and the arguments I
give now are adaptable to the proper generalizations to abelian
topological groups.
}%end of comment
\proof{{\bf (a)} This is just the translation-invariance of Lebesgue
measure, dealt with in \S134. There I showed that if $E\in\Sigma$
then $E+a\in\Sigma$ and $\mu(E+a)=\mu E$ (134Ab); that is, writing
$\phi(x)=x+a$, $\mu(\phi[E])$ exists and is equal to $\mu E$ for every
$E\in\Sigma$. But of course we also have
\Centerline{$\mu(\phi^{-1}[E])=\mu(E+(-a))=\mu E$}
\noindent for every $E\in\Sigma$, so $\phi$ is an automorphism.
\medskip
{\bf (b)} The point is that $\mu^*(A)=\mu^*(-A)$ for every
$A\subseteq\Bbb R$. \Prf\ (I follow the definitions of Volume 1.) If
$\epsilon>0$, there is a sequence $\sequencen{I_n}$ of half-open
intervals covering $A$ with $\sum_{n=0}^{\infty}\mu
I_n\le\mu^*A+\epsilon$. Now $-A\subseteq\bigcup_{n\in\Bbb N}(-I_n)$.
But if $I_n=\coint{a_n,b_n}$ then $-I_n=\ocint{-b_n,a_n}$, so
\Centerline{$\mu^*(-A)\le\sum_{n=0}^{\infty}\mu(-I_n)
=\sum_{n=0}^{\infty}\max(0,-a_n-(-b_n))=\sum_{n=0}^{\infty}\mu I_n
\le\mu^*A+\epsilon$.}
\noindent As $\epsilon$ is arbitrary, $\mu^*(-A)\le\mu^*A$. Also of
course $\mu^*A\le\mu^*(-(-A))=\mu^*A$, so $\mu^*(-A)=\mu^*A$. \Qed
This means that, setting $\phi(x)=-x$ this time, $\phi$ is an
automorphism of the structure $(\Bbb R,\mu^*)$. But since $\mu$ is
defined from $\mu^*$ by the abstract procedure of \Caratheodory's
method, $\phi$ must also be an automorphism of the structure $(\Bbb
R,\Sigma,\mu)$.
\medskip
{\bf (c)} Put (a) and (b) together; $x\mapsto a-x$ is the composition
of the automorphisms $x\mapsto -x$ and $x\mapsto a+x$, and the
composition of automorphisms is surely an automorphism.
\medskip
{\bf (d)(i)} Write $\Tau$ for the set
$\{E:E\in\Sigma_2,\,\phi[E]\in\Sigma_2\}$, where this time
$\phi(x,y)=(x+y,y)$ for $x$, $y\in\Bbb R$, so that
$\phi:\BbbR^2\to\Bbb R^2$ is a permutation.
Then $\Tau$ is a $\sigma$-algebra, being the
intersection of the $\sigma$-algebras $\Sigma_2$ and
$\{E:\phi[E]\in\Sigma_2\}=\{\phi^{-1}[F]:F\in\Sigma_2\}$. Moreover,
$\mu_2E=\mu_2(\phi[E])$ for every $E\in\Tau$. \Prf\ By 252D,
we have
\Centerline{$\mu_2E=\int\mu\{x:(x,y)\in E\}\mu(dy)$.}
\noindent But applying the same result to $\phi[E]$ we have
$$\eqalignno{\mu_2\phi[E]
&=\int\mu\{x:(x,y)\in\phi[E]\}\mu(dy)
=\int\mu\{x:(x-y,y)\in E\}\mu(dy)\cr
&=\int\mu(E^{-1}[\{y\}]+y)\mu(dy)
=\int\mu E^{-1}[\{y\}]\mu(dy)\cr
\noalign{\noindent (because Lebesgue measure is translation-invariant)}
&=\mu_2E. \text{ \Qed}\cr}$$
\medskip
\quad{\bf (ii)} Now $\phi$ and $\phi^{-1}$ are clearly continuous, so
that $\phi[G]$ is open, and therefore measurable, for every open $G$;
consequently all open sets must belong to $\Tau$. Because $\Tau$ is a
$\sigma$-algebra, it contains all Borel sets. Now let $E$ be any
measurable set. Then there are Borel sets $H_1$, $H_2$ such that
$H_1\subseteq E\subseteq H_2$ and $\mu_2(H_2\setminus H_1)=0$ (134Fb).
We have $\phi[H_1]\subseteq\phi[E]\subseteq\phi[H_2]$ and
\Centerline{$\mu(\phi[H_2]\setminus\phi[H_1])
=\mu\phi[H_2\setminus H_1]=\mu(H_2\setminus H_1)=0$.}
\noindent Thus $\phi[E]\setminus\phi[H_1]$ must be negligible, therefore
measurable, and $\phi[E]=\phi[H_1]\cup(\phi[E]\setminus\phi[H_1])$ is
measurable. This shows that $\phi[E]$ is measurable whenever $E$ is.
\medskip
\quad{\bf (iii)} Repeating the same arguments with $-y$ in the place of
$y$, we see that $\phi^{-1}[E]$ is measurable, and
$\mu_2\phi^{-1}[E]=\mu_2E$, for every $E\in\Sigma_2$.
So $\phi$ is an automorphism of the structure $(\BbbR^2,\Sigma_2,\mu_2)$.
\medskip
{\bf (e)} Of course this is an immediate corollary either of the proof
of (d) or of (d) itself as stated, since $(x,y)\mapsto(x-y,y)$ is just
the inverse of $(x,y)\mapsto(x+y,y)$.
}%end of proof of 255A
\leader{255B}{Corollary} (a) If $a\in\Bbb R$, then for any
complex-valued function $f$ defined on a subset of $\Bbb R$
\Centerline{$\int f(x)dx
=\int f(a+x)dx=\int f(-x)dx=\int f(a-x)dx$}
\noindent in the sense that if one of the integrals exists so do the
others, and they are then all equal.
(b) If $f$ is a complex-valued function defined on a subset of
$\BbbR^2$, then
\Centerline{$\int f(x+y,y)d(x,y)=\int f(x-y,y)d(x,y)
=\int f(x,y)d(x,y)$}
\noindent in the sense that if one of the integrals exists and is finite
so does the other, and they are then equal.
\cmmnt{
\leader{255C}{Remarks (a)} I am not sure whether it ought to be
`obvious' that if $(X,\Sigma,\mu)$, $(Y,\Tau,\nu)$ are measure spaces
and $\phi:X\to Y$ is an isomorphism, then for any function
$f$ defined on a subset of $Y$
\Centerline{$\int f(\phi(x))\mu(dx)=\int f(y)\nu(dy)$}
\noindent in the sense that if one is defined so is the other, and they
are then equal. If it is obvious then the obviousness must be
contingent on the nature of the definition of integration:
integrability with respect to the measure $\mu$ is something which
depends on the structure $(X,\Sigma,\mu)$ and on no other properties of
$X$. If it is not obvious then it is an easy deduction from Theorem
235A above, applied in turn to $\phi$ and $\phi^{-1}$ and to the real
and imaginary parts of $f$. In any case the isomorphisms of 255A are
just those needed to prove 255B.
\header{255Cb}{\bf (b)} Note that in 255Bb I write $\int f(x,y)d(x,y)$
to emphasize that I am considering the integral of $f$ with respect to
two-dimensional Lebesgue measure. The fact that
\Centerline{$\int\bigl(\int f(x,y)dx\bigr)dy
=\int\bigl(\int f(x+y,y)dx\bigr)dy=\int\bigl(\int f(x-y,y)dx\bigr)dy$}
\noindent is actually easier, being an immediate consequence of the
equality $\int f(a+x)dx=\int f(x)dx$. But applications of this result
often depend essentially on the fact that the functions
$(x,y)\mapsto f(x+y,y)$, $(x,y)\mapsto f(x-y,y)$ are measurable as
functions of two variables.
\header{255Cc}{\bf (c)} I have moved directly to complex-valued
functions because these are necessary for the applications in Chapter
28. If however
they give you any discomfort, either technically or aesthetically, all
the measure-theoretic ideas of this section are already to be found in
the real case, and you may wish at first to read it as if only real
numbers were involved.
}%end of comment
\leader{255D}{}\cmmnt{ A further corollary of 255A will be useful.
\medskip
\noindent}{\bf Corollary} Let $f$ be a complex-valued function defined
on a subset of $\Bbb R$.
(a) If $f$ is measurable, then the functions $(x,y)\mapsto f(x+y)$,
$(x,y)\mapsto f(x-y)$ are measurable.
(b) If $f$ is defined almost everywhere in $\Bbb R$, then the functions
$(x,y)\mapsto f(x+y)$, $(x,y)\mapsto f(x-y)$ are defined almost
everywhere in $\BbbR^2$.
\proof{ Writing $g_1(x,y)=f(x+y)$, $g_2(x,y)=f(x-y)$ whenever these are
defined, we have
\Centerline{$g_1(x,y)=(f\otimes\chi\Bbb R)(\phi(x,y))$,
\quad $g_2(x,y)=(f\otimes\chi\Bbb R)(\phi^{-1}(x,y))$,}
\noindent writing $\phi(x,y)=(x+y,y)$ as in 255B(d-e), and
$(f\otimes\chi\Bbb R)(x,y)=f(x)$, following the notation of 253B. By
253C, $f\otimes\chi\Bbb R$ is measurable if $f$ is, and defined
almost everywhere if $f$ is. Because $\phi$ is a measure space
automorphism, $(f\otimes\chi\Bbb R)\phi=g_1$ and
$(f\otimes\chi\Bbb R)\phi^{-1}=g_2$ are measurable, or defined almost
everywhere, if $f$ is.
}%end of proof of 255D
\vleader{48pt}{255E}{The basic formula} Let $f$ and $g$ be measurable
complex-valued
functions defined almost everywhere in $\Bbb R$. Write $f*g$ for the
function defined by the formula
\Centerline{$(f*g)(x)=\int f(x-y)g(y)dy$}
\noindent whenever the integral exists\cmmnt{ (with respect to
Lebesgue measure, naturally)} as a complex number. Then $f*g$ is the
{\bf convolution} of the functions $f$ and $g$.
\cmmnt{
Observe that} $\dom(|f|*|g|)=\dom(f*g)$, and\cmmnt{ that}
$|f*g|\le |f|*|g|$ everywhere on their common domain, for all $f$ and
$g$.
\cmmnt{\medskip
\noindent{\bf Remark} Note that I am here prepared to contemplate the
convolution of $f$ and $g$ for arbitrary members of
$\eusm L^0_{\Bbb C}$, the space of
almost-everywhere-defined measurable complex-valued functions, even
though the domain of $f*g$ may be empty. }%end of comment
\leader{255F}{Elementary properties (a)} Because integration is linear,
we surely have
\Centerline{$((f_1+f_2)*g)(x)=(f_1*g)(x)+(f_2*g)(x)$,}
\Centerline{$(f*(g_1+g_2))(x)=(f*g_1)(x)+(f*g_2)(x)$,}
\Centerline{$(cf*g)(x)=(f*cg)(x)=c(f*g)(x)$}
\noindent whenever the right-hand sides of the formulae are defined.
\spheader 255Fb If $f$ and $g$ are measurable complex-valued
functions defined almost everywhere in $\Bbb R$, then
$f*g=g*f$\cmmnt{, in the
strict sense that they have the same domain and the same value at each
point of that common domain}.
\prooflet{\Prf\ Take $x\in\Bbb R$ and apply 255Ba to see that
$$\eqalign{(f*g)(x)
&=\int f(x-y)g(y)dy
=\int f(x-(x-y))g(x-y)dy\cr
&=\int f(y)g(x-y)dy
=(g*f)(x)\cr}$$
\noindent if either is defined. \Qed}
\header{255Fc}{\bf (c)} If $f_1$, $f_2$, $g_1$, $g_2$ are measurable
complex-valued functions defined almost everywhere in $\Bbb R$,
$f_1\eae f_2$ and $g_1\eae g_2$, then $f_1*g_1=f_2*g_2$.
\prooflet{\Prf\ For every $x\in\Bbb R$ we
shall have $f_1(x-y)=f_2(x-y)$ for almost every $y\in\Bbb R$, by 255Ac.
Consequently $f_1(x-y)g_1(y)=f_2(x-y)g_2(y)$ for almost every $y$,
and $(f_1*g_1)(x)=(f_2*g_2)(x)$ in the sense that if one of these is
defined so is the other, and they are then equal.\ \Qed}
It follows that if $u$, $v\in L^0_{\Bbb C}$, then we have a function
$\theta(u,v)$
which is equal to $f*g$ whenever $f$, $g\in\eusm L^0_{\Bbb C}$
are such that $f^{\ssbullet}=u$ and $g^{\ssbullet}=u$.
\cmmnt{Observe that $\theta(u,v)=\theta(v,u)$, and
that $\theta(u_1+u_2,v)$ extends $\theta(u_1,v)+\theta(u_2,v)$,
$\theta(cu,v)$ extends $c\theta(u,v)$ for all $u$, $u_1$, $u_2$,
$v\in L^0_{\Bbb C}$ and $c\in\Bbb C$.}
\leader{255G}{}\cmmnt{ I have grouped 255Fa-255Fc together because
they depend
only on ideas up to and including 255Ac and 255Ba. Using the second
halves of 255A and 255B we get much deeper. I begin with what seems to
be the fundamental result.
\medskip
\noindent}{\bf Theorem} Let $f$, $g$ and $h$ be measurable
complex-valued functions defined almost everywhere in $\Bbb R$.
(a) Suppose that $\int h(x+y)f(x)g(y)d(x,y)$ exists in $\Bbb C$.
Then
$$\eqalign{\int h(x)(f*g)(x)dx
&=\int h(x+y)f(x)g(y)d(x,y)\cr
&=\iint h(x+y)f(x)g(y)dxdy
=\iint h(x+y)f(x)g(y)dydx\cr}$$
\noindent provided
that in the expression $h(x)(f*g)(x)$ we interpret the product as $0$ if
$h(x)=0$ and $(f*g)(x)$ is undefined.
(b) If, on a similar interpretation of $|h(x)|(|f|*|g|)(x)$, the integral
$\int |h(x)|(|f|*|g|)(x)dx$ is finite, then
$\int h(x+y)f(x)g(y)d(x,y)$ exists in $\Bbb C$.
\proof{ Consider the functions
\Centerline{$k_1(x,y)=h(x)f(x-y)g(y)$,\quad $k_2(x,y)=h(x+y)f(x)g(y)$}
\noindent wherever these are defined. 255D tells us that $k_1$ and
$k_2$ are measurable and defined almost everywhere. Now setting
$\phi(x,y)=(x+y,y)$, we have $k_2=k_1\phi$, so that
\Centerline{$\int k_1(x,y)d(x,y)=\int k_2(x,y)d(x,y)$}
\noindent if either exists, by 255Bb.
If
\Centerline{$\int h(x+y)f(x)g(y)d(x,y)=\int k_2$}
\noindent exists, then by Fubini's theorem we have
\Centerline{$\int k_2=\int k_1(x,y)d(x,y)
=\int(\int h(x)f(x-y)g(y)dy)dx$}
\noindent so $\int h(x)f(x-y)g(y)dy$ exists almost everywhere, that is,
$(f*g)(x)$ exists for almost every $x$ such that $h(x)\ne 0$; on the
interpretation I am using here, $h(x)(f*g)(x)$ exists almost everywhere,
and
$$\eqalign{\int h(x)(f*g)(x)dx
&=\int\bigl(\int h(x)f(x-y)g(y)dy\bigr)dx
=\int k_1\cr
&=\int k_2
=\int h(x+y)f(x)g(y)d(x,y)\cr
&=\iint h(x+y)f(x)g(y)dxdy
=\iint h(x+y)f(x)g(y)dydx\cr}$$
\noindent by Fubini's theorem again.
If (on the same interpretation) $|h|\times(|f|*|g|)$ is integrable,
\Centerline{$|k_1(x,y)|=|h(x)||f(x-y)||g(y)|$}
\noindent is measurable, and
\Centerline{$\iint|h(x)||f(x-y)||g(y)|dydx
=\int|h(x)|(|f|*|g|)(x)dx$}
\noindent is finite, so by Tonelli's theorem (252G, 252H) $k_1$ and
$k_2$ are integrable.
}%end of proof of 255G
\leader{255H}{}\cmmnt{ Certain standard results are now easy.
\wheader{255H}{4}{2}{2}{24pt}
\noindent}{\bf Corollary} If $f$, $g$ are complex-valued
functions which are integrable over $\Bbb R$, then $f*g$ is integrable,
with
\Centerline{$\int f*g =\int f\int g$,
\quad$\int|f*g|\le\int|f|\int|g|$.}
\proof{ In 255G, set $h(x)=1$ for every $x\in\Bbb R$; then
\Centerline{$\int h(x+y)f(x)g(y)d(x,y)
=\int f(x)g(y)d(x,y)=\int f\int g$}
\noindent by 253D, so
\Centerline{$\int f*g
=\int h(x)(f*g)(x)dx=\int h(x+y)f(x)g(y)d(x,y)=\int f\int g$,}
\noindent as claimed. Now
\Centerline{$\int|f*g|\le\int|f|*|g|=\int|f|\int|g|$.}
}%\end of proof of 255H
\leader{255I}{Corollary} For any measurable complex-valued functions
$f$, $g$ defined almost everywhere in $\Bbb R$, $f*g$ is measurable and
has measurable domain.
\proof{ Set $f_n(x)=f(x)$ if $x\in\dom f$, $|x|\le n$ and $|f(x)|\le n$,
and $0$ elsewhere in $\Bbb R$; define $g_n$ similarly from $g$. Then
$f_n$ and $g_n$ are integrable, $|f_n|\le|f|$ and $|g_n|\le|g|$ almost
everywhere, $f\eae\lim_{n\to\infty}f_n$ and $g\eae\lim_{n\to\infty}g_n$.
Consequently, by Lebesgue's Dominated Convergence Theorem,
$$\eqalign{(f*g)(x)
&=\int f(x-y)g(y)dy
=\int \lim_{n\to\infty}f_n(x-y)g_n(y)dy\cr
&=\lim_{n\to\infty}\int f_n(x-y)g_n(y)dy
=\lim_{n\to\infty}(f_n*g_n)(x)\cr}$$
\noindent for every $x\in\dom f*g$. But $f_n*g_n$ is integrable,
therefore measurable, for every $n$, so that $f*g$ must be measurable.
As for the domain of $f*g$,
$$\eqalign{x\in\dom(f*g)
&\iff\int f(x-y)g(y)dy\text{ is defined in }\Bbb C\cr
&\iff\int|f(x-y)||g(y)|dy\text{ is defined in }\Bbb R\cr
&\iff\int|f_n(x-y)||g_n(y)|dy\text{ is defined in }\Bbb R
\text{ for every }n\cr
&\qquad\qquad\text{and }
\sup_{n\in\Bbb N}\int|f_n(x-y)||g_n(y)|dy<\infty.\cr
}$$
\noindent Because every $|f_n|*|g_n|$ is integrable, therefore
measurable and with measurable domain,
\Centerline{$\dom(f*g)=\{x:x\in\bigcap_{n\in\Bbb N}\dom(|f_n|*|g_n|),\,
\sup_{n\in\Bbb N}(|f_n|*|g_n|)(x)<\infty\}$}
\noindent is measurable.
}%end of proof of 255I
\leader{255J}{Theorem} Let $f$, $g$ and $h$ be complex-valued measurable
functions, defined almost everywhere in $\Bbb R$, such that $f*g$ and $g*h$
are defined a.e. Suppose that
$x\in\Bbb R$ is such that one of $(|f|*(|g|*|h|))(x)$,
$((|f|*|g|)*|h|)(x)$ is defined in $\Bbb R$. Then $f*(g*h)$ and
$(f*g)*h$ are defined and equal at $x$.
\proof{ Set $k(y)=f(x-y)$ when this is defined, so that $k$ is
measurable and defined almost everywhere (255D).
\medskip
{\bf (a)} If $(|f|*(|g|*|h|))(x)$ is defined, this is
$\int|k(y)|(|g|*|h|)(y)dy$, so by 255G we have
\Centerline{$\int k(y)(g*h)(y)dy=\int k(y+z)g(y)h(z)d(y,z)$,}
\noindent that is,
$$\eqalign{(f*(g*h))(x)
&=\int f(x-y)(g*h)(y)dy
=\int k(y)(g*h)(y)dy\cr
&=\int k(y+z)g(y)h(z)d(y,z)
=\iint k(y+z)g(y)h(z)dydz\cr
&=\iint f(x-y-z)g(y)h(z)dydz
=\int (f*g)(x-z)h(z)dz\cr
&=((f*g)*h)(x).\cr}$$
\medskip
{\bf (b)} If $((|f|*|g|)*|h|)(x)$ is defined, this is
$$\eqalign{\int(|f|*|g|)(x-z)|h(z)|dz
&=\iint|f(x-z-y)||g(y)||h(z)|dydz\cr
&=\iint|k(y+z)||g(y)||h(z)|dydz.\cr}$$
\noindent By 255D again, $(y,z)\mapsto k(y+z)$ is measurable, so we can
apply Tonelli's theorem to see that $\int k(y+z)g(y)h(z)d(y,z)$ is defined,
and is equal to $\int k(y)(g*h)(y)dy=(f*(g*h))(x)$ by 255Ga. On the other
side, by the last two lines of the proof of (a),
$\int k(y+z)g(y)h(z)d(y,z)$ is also equal to $((f*g)*h)(x)$.
}%end of proof of 255J
\leader{255K}{}\cmmnt{ I do not think we shall need an exhaustive
discussion of
the question of just when $(f*g)(x)$ is defined; this seems to be
complicated. However there is a fundamental case in which we can be
sure that $(f*g)(x)$ is defined everywhere.
\medskip
\noindent}{\bf Proposition} Suppose that $f$, $g$ are measurable
complex-valued
functions defined almost everywhere in $\Bbb R$, and that
$f\in\eusm L^p_{\Bbb C}$,
$g\in\eusm L^q_{\Bbb C}$ where $p$, $q\in[1,\infty]$ and
$\bover1p+\bover1q=1$\cmmnt{ (writing $\bover{1}{\infty}=0$ as
usual)}. Then $f*g$ is defined everywhere in $\Bbb R$, is uniformly
continuous, and
$$\eqalign{\sup_{x\in\Bbb R}|(f*g)(x)|
&\le\|f\|_p\|g\|_q\text{ if }1<p<\infty,\,1<q<\infty,\cr
&\le\|f\|_1\esssup|g|\text{ if }p=1,\,q=\infty,\cr
&\le\esssup|f|\cdot\|g\|_1\text{ if }p=\infty,\,q=1.\cr}$$
\proof{{\bf (a)} (For an introduction to $\eusm L^p$ spaces, see \S244.)
For any $x\in\Bbb R$, the function $f_x$, defined by setting
$f_x(y)=f(x-y)$ whenever $x-y\in\dom f$, must also belong to
$\eusm L^p$, because $f_x=f\phi$ for an automorphism $\phi$ of the
measure
space. Consequently $(f*g)(x)=\int f_x\times g$ is defined, and of
modulus at most $\|f\|_p\|g\|_q$ or $\|f\|_1\esssup|g|$ or
$\esssup|f|\cdot\|g\|_1$, by 244Eb/244Pb and 243Fa/243K.
\medskip
{\bf (b)} To see that $f*g$ is uniformly continuous, argue as follows.
Suppose first that $p<\infty$. Let $\epsilon>0$. Let $\eta>0$ be
such that $(2+2^{1/p})\|g\|_q\eta\le\epsilon$.
Then there is a bounded continuous function $h:\Bbb R\to\Bbb C$ such
that $\{x:h(x)\ne 0\}$ is bounded and $\|f-h\|_p\le\eta$ (244Hb/244Pb);
let $M\ge 1$ be such that $h(x)=0$ whenever $|x|\ge M-1$. Next,
$h$ is uniformly continuous, so there is a $\delta\in\ocint{0,1}$ such
that $|h(x)-h(x')|\le M^{-1/p}\eta$ whenever $|x-x'|\le\delta$.
Suppose that $|x-x'|\le\delta$. Defining $h_x(y)=h(x-y)$, as before,
we have
$$\eqalignno{\int|h_x-h_{x'}|^p
&=\int|h(x-y)-h(x'-y)|^pdy
=\int|h(t)-h(x'-x+t)|^pdt\cr
\displaycause{substituting $t=x-y$}
&=\int_{-M}^M|h(t)-h(x'-x+t)|^pdt\cr
\displaycause{because $h(t)=h(x'-x+t)=0$ if $|t|\ge M$}
&\le 2M(M^{-1/p}\eta)^p\cr
\displaycause{because $|h(t)-h(x'-x+t)|\le M^{-1/p}\eta$ for every $t$}
&=2\eta^p.\cr}$$
\noindent So $\|h_x-h_{x'}\|_p\le 2^{1/p}\eta$. On the other hand,
\Centerline{$\int|h_{x}-f_{x}|^p
=\int|h(x-y)-f(x-y)|^pdy
=\int|h(y)-f(y)|^pdy$,}
\noindent so $\|h_x-f_x\|_p=\|h-f\|_p\le\eta$, and similarly
$\|h_{x'}-f_{x'}\|_p\le\eta$. So
\Centerline{$\|f_x-f_{x'}\|_p
\le\|f_x-h_x\|_p+|h_x-h_{x'}\|_p+\|h_{x'}-f_{x'}\|_p
\le(2+2^{1/p})\eta$.}
\noindent This means that
$$\eqalign{|(f*g)(x)-(f*g)(x')|
&=|\int f_x\times g-\int f_{x'}\times g|
=|\int(f_x-f_{x'})\times g|\cr
&\le\|f_x-f_{x'}|_p\|g\|_q
\le(2+2^{1/p})\|g\|_q\eta
\le\epsilon.\cr}$$
\noindent As $\epsilon$ is arbitrary, $f*g$ is uniformly continuous.
The argument here supposes that $p$ is finite. But if $p=\infty$ then
$q=1$ is finite, so we can apply the method with $g$ in place of $f$ to
show that $g*f$ is uniformly continuous, and $f*g=g*f$ by 255Fb.
}%end of proof of 255K
\leader{255L}{The $r$-dimensional case} I have written 255A-255K out as
theorems about Lebesgue measure on $\Bbb R$. However they all
apply\cmmnt{ equally well} to Lebesgue measure on $\BbbR^r$ for any
$r\ge 1$\cmmnt{, and the
modifications required are so small that I think I need do no more than
ask you to read through the arguments again, turning every $\Bbb R$ into
an $\BbbR^r$, and every $\BbbR^2$ into an $(\BbbR^r)^2$. In 255A
and elsewhere, the measure $\mu_2$ should be read either as Lebesgue
measure on $\BbbR^{2r}$ or as the product measure on $(\BbbR^r)^2$;
by 251N the two may be identified. There is a trivial modification
required in part (b) of the proof; if $I_n=\coint{a_n,b_n}$ then
\Centerline{$\mu I_n=\mu(-I_n)
=\prod_{i=1}^r\max(0,\beta_{ni}-\alpha_{ni})$,}
\noindent writing $a_n=(\alpha_{n1},\ldots,\alpha_{nr})$. In the proof
of 255I, the functions $f_n$ should be defined by saying that
$f_n(x)=f(x)$ if $|f(x)|\le n$ and $\|x\|\le n$, $0$ otherwise.
In quoting these results, therefore, I shall be uninhibited in referring
to the paragraphs 255A-255K as if they were actually written out for
general $r\ge 1$}.
\leader{255M}{The case of $\ocint{-\pi,\pi}$}\dvro{ {\bf (a)}}{ The same
ideas also apply
to the circle group $S^1$ and to the interval $\ocint{-\pi,\pi}$, but
here perhaps rather more explanation is in order.
\spheader 255Ma The first thing to establish is the appropriate
group operation.} If we think of $S^1$ as the set
$\{z:z\in\Bbb C,\,|z|=1\}$, then the group operation is complex
multiplication, and in
the formulae above $x+y$ must be rendered as $xy$, while $x-y$ must be
rendered as $xy^{-1}$. On the interval $\ocint{-\pi,\pi}$, the group
operation is $+_{2\pi}$, where for $x$, $y\in\ocint{-\pi,\pi}$ I write
$x+_{2\pi}y$ for whichever of $x+y$, $x+y+2\pi$, $x+y-2\pi$ belongs to
$\ocint{-\pi,\pi}$. \cmmnt{To see that this is indeed a group
operation, one
method is to note that it corresponds to multiplication on $S^1$ if we
use the canonical bijection
$x\mapsto e^{ix}:\ocint{-\pi,\pi}\to S^1$; another, to note that it
corresponds to the operation on the quotient group $\Bbb R/2\pi\Bbb Z$.
Thus in this interpretation of the ideas of 255A-255K, we shall wish to
replace $x+y$ by $x+_{2\pi}y$, $-x$ by $-_{2\pi}x$, and $x-y$ by
$x-_{2\pi}y$, where
\Centerline{$-_{2\pi}x=-x$ if $x\in\ooint{-\pi,\pi}$,
\quad$-_{2\pi}\pi=\pi$,}
\noindent and $x-_{2\pi}y$ is whichever of $x-y$, $x-y+2\pi$, $x-y-2\pi$
belongs to $\ocint{-\pi,\pi}$.
}%end of comment
\header{255Mb}{\bf (b)} As for the measure, the measure to use on
$\ocint{-\pi,\pi}$ is just Lebesgue measure. \cmmnt{Note that
because
$\ocint{-\pi,\pi}$ is Lebesgue measurable, there will be no confusion
concerning the meaning of `measurable subset', as the relatively
measurable subsets of $\ocint{-\pi,\pi}$ are actually measured by
Lebesgue measure on $\Bbb R$. Also we can identify the product measure
on $\ocint{-\pi,\pi}\times\ocint{-\pi,\pi}$ with the subspace measure
induced by Lebesgue measure on $\BbbR^2$ (251R).}
On $S^1$, we need the corresponding measure induced by the canonical
bijection between $S^1$ and $\ocint{-\pi,\pi}$\cmmnt{, which indeed is
often called `Lebesgue measure on $S^1$'}. \cmmnt{(We shall see in
265E that it is
also equal to Hausdorff one-dimensional measure on $S^1$.) We are very
close to the level at which it
would become reasonable to move to $S^1$ and this measure (or its
normalized version, in which it is reduced by a factor of $2\pi$, so as
to make $S^1$ a probability space). However, the elementary theory of
Fourier series, which will be the principal application of this work in
the present volume, is generally done on intervals in $\Bbb R$, so that
formulae based on $\ocint{-\pi,\pi}$ are closer to the standard
expressions. Henceforth, therefore, I will express the work in
terms of $\ocint{-\pi,\pi}$.}
\cmmnt{
\header{255Mc}{\bf (c)} The result corresponding to 255A now takes a
slightly different form, so I spell it out.
}
\leader{255N}{Theorem} Let $\mu$ be Lebesgue measure on
$\ocint{-\pi,\pi}$ and
$\mu_2$ Lebesgue measure on $\ocint{-\pi,\pi}\times\ocint{-\pi,\pi}$;
write $\Sigma$, $\Sigma_2$ for their domains.
(a) For any $a\in\ocint{-\pi,\pi}$, the map $x\mapsto
a+_{2\pi}x:\ocint{-\pi,\pi}\to\ocint{-\pi,\pi}$ is a
measure space automorphism of $(\ocint{-\pi,\pi},\Sigma,\mu)$.
(b) The map $x\mapsto -_{2\pi}x:\ocint{-\pi,\pi}\to\ocint{-\pi,\pi}$ is
a measure space automorphism of $(\ocint{-\pi,\pi},\Sigma,\mu)$.
(c) For any $a\in\ocint{-\pi,\pi}$, the map
$x\mapsto a-_{2\pi}x:\ocint{-\pi,\pi}\to\ocint{-\pi,\pi}$ is a
measure space automorphism of $(\ocint{-\pi,\pi},\Sigma,\mu)$.
(d) The map $(x,y)\mapsto(x+_{2\pi}y,y):\ocint{-\pi,\pi}^2\to
\ocint{-\pi,\pi}^2$ is a measure space automorphism of
$(\ocint{-\pi,\pi}^2,
\ifdim\pagewidth>467pt\penalty-50\fi
\Sigma_2,
\ifdim\pagewidth>467pt\penalty-10\fi
\mu_2)$.
(e) The map $(x,y)\mapsto(x-_{2\pi}y,y):\ocint{-\pi,\pi}^2\to
\ocint{-\pi,\pi}^2$ is a measure space automorphism of
$(\ocint{-\pi,\pi}^2,
\ifdim\pagewidth>467pt\penalty-50\fi
\Sigma_2,
\ifdim\pagewidth>467pt\penalty-10\fi
\mu_2)$.
\proof{{\bf (a)} Set $\phi(x)=a+_{2\pi}x$. Then for any
$E\subseteq\ocint{-\pi,\pi}$,
\Centerline{$\phi[E]
=((E+a)\cap\ocint{-\pi,\pi})
\cup(((E+a)\cap\ocint{\pi,3\pi})-2\pi)
\cup(((E+a)\cap\ocint{-3\pi,-\pi})+2\pi)$,}
\noindent and these three sets are disjoint, so that
$$\eqalignno{\mu\phi[E]
&=\mu((E+a)\cap\ocint{-\pi,\pi})
+\mu(((E+a)\cap\ocint{\pi,3\pi})-2\pi)\cr
&\qquad\qquad\qquad\qquad\qquad\qquad
+\mu(((E+a)\cap\ocint{-3\pi,-\pi})+2\pi)\cr
&=\mu_L((E+a)\cap\ocint{-\pi,\pi})
+\mu_L(((E+a)\cap\ocint{\pi,3\pi})-2\pi)\cr
&\qquad\qquad\qquad\qquad\qquad\qquad
+\mu_L(((E+a)\cap\ocint{-3\pi,-\pi})+2\pi)\cr
\noalign{\noindent (writing $\mu_L$ for Lebesgue measure on $\Bbb R$)}
&=\mu_L((E+a)\cap\ocint{-\pi,\pi})
+\mu_L((E+a)\cap\ocint{\pi,3\pi})
+\mu_L((E+a)\cap\ocint{-3\pi,-\pi})\cr
&=\mu_L(E+a)
=\mu_LE
=\mu E.\cr}$$
\noindent Similarly, $\mu\phi^{-1}[E]$ is defined and equal to $\mu E$
for every $E\in\Sigma$, so that $\phi$ is an automorphism of
$(\ocint{-\pi,\pi},
\ifdim\pagewidth>467pt\penalty-50\fi
\Sigma,
\ifdim\pagewidth>467pt\penalty-10\fi
\mu)$.
\medskip
{\bf (b)} Of course this is quicker. Setting $\phi(x)=-_{2\pi}x$ for
$x\in\ocint{-\pi,\pi}$, we have
$$\eqalign{\mu(\phi[E])
&=\mu(\phi[E]\cap\ooint{-\pi,\pi})
=\mu(-(E\cap\ooint{-\pi,\pi})\cr
&=\mu_L(-(E\cap\ooint{-\pi,\pi}))
=\mu_L(E\cap\ooint{-\pi,\pi})\cr
&=\mu(E\cap\ooint{-\pi,\pi})
=\mu E\cr}$$
\noindent for every $E\in\Sigma$.
\medskip
{\bf (c)} This is just a matter of putting (a) and (b) together, as in
255A.
\medskip
{\bf (d)} We can argue as in (a), but with a little more elaboration.
If $E\in\Sigma_2$, and $\phi(x,y)=(x+_{2\pi}y,y)$ for $x$,
$y\in\ocint{-\pi,\pi}$, set $\psi(x,y)=(x+y,y)$ for $x$, $y\in\Bbb R$,
and write $c=(2\pi,0)\in\BbbR^2$, $H=\ocint{-\pi,\pi}^2$, $H'=H+c$,
$H''=H-c$. Then for any $E\in\Sigma_2$,
\Centerline{$\phi[E]=(\psi[E]\cap H)\cup((\psi[E]\cap H')-c)
\cup((\psi[E]\cap H'')+c)$,}
\noindent so
$$\eqalignno{\mu_2\phi[E]
&=\mu_2(\psi[E]\cap H)
+\mu_2((\psi[E]\cap H')-c)
+\mu_2((\psi[E]\cap H'')+c)\cr
&=\mu_L(\psi[E]\cap H)
+\mu_L((\psi[E]\cap H')-c)
+\mu_L((\psi[E]\cap H'')+c)\cr
\noalign{\noindent (this time writing $\mu_L$ for Lebesgue measure on
$\BbbR^2$)}
&=\mu_L(\psi[E]\cap H)
+\mu_L(\psi[E]\cap H')
+\mu_L(\psi[E]\cap H'')\cr
&=\mu_L\psi[E]
=\mu_LE
=\mu_2 E.\cr}$$
\noindent In the same way, $\mu_2(\phi^{-1}[E])=\mu_2E$ for every
$E\in\Sigma_2$, so $\phi$ is an automorphism of
$(\ocint{-\pi,\pi}^2,\Sigma_2,\mu_2)$, as required.
\medskip
{\bf (e)} Finally, (e) is just a restatement of (d), as before.
}%end of proof of 255N
\leader{255O}{Convolutions on $\ocint{-\pi,\pi}$}\cmmnt{ With the
fundamental
result established, the same arguments as in 255B-255K now yield the
following.} Write $\mu$ for Lebesgue measure on $\ocint{-\pi,\pi}$.
\header{255Oa}{\bf (a)} Let $f$ and $g$ be measurable
complex-valued
functions defined almost everywhere in $\ocint{-\pi,\pi}$. Write $f*g$
for the function defined by the formula
\Centerline{$(f*g)(x)=\int_{-\pi}^{\pi}f(x-_{2\pi}y)g(y)dy$}
\noindent whenever $x\in\ocint{-\pi,\pi}$ and the integral exists as a
complex number. Then $f*g$ is the {\bf
convolution} of the functions $f$ and $g$.
\header{255Ob}{\bf (b)} If $f$ and $g$ are measurable complex-valued
functions defined almost everywhere in $\ocint{-\pi,\pi}$, then
$f*g=g*f$.
\vspheader{60pt}255Oc Let $f$, $g$ and $h$ be measurable complex-valued
functions defined almost everywhere in $\ocint{-\pi,\pi}$. Then
\quad{(i)}
\Centerline{$\int_{-\pi}^{\pi}h(x)(f*g)(x)dx
=\int_{\ocint{-\pi,\pi}^2}h(x+_{2\pi}y)f(x)g(y)d(x,y)$}
\noindent whenever the right-hand side exists and is finite, provided
that in the expression $h(x)(f*g)(x)$ we interpret the product as $0$ if
$h(x)=0$ and $(f*g)(x)$ is undefined.
\quad{(ii)} If, on the same interpretation of $|h(x)|(|f|*|g|)(x)$,
the integral $\int_{-\pi}^{\pi}|h(x)|(|f|*|g|)(x)dx$ is
finite, then $\int_{\ocint{-\pi,\pi}^2}h(x+_{2\pi}y)f(x)g(y)d(x,y)$ exists in
$\Bbb C$, so again we shall have
\Centerline{$\int_{-\pi}^{\pi}h(x)(f*g)(x)dx
=\int_{\ocint{-\pi,\pi}^2}h(x+_{2\pi}y)f(x)g(y)d(x,y)$.}
\spheader 255Od If $f$, $g$ are complex-valued
functions which are integrable over $\ocint{-\pi,\pi}$, then $f*g$ is
integrable, with
\Centerline{$\int_{-\pi}^{\pi}f*g
=\int_{-\pi}^{\pi}f\int_{-\pi}^{\pi}g$,
\quad$\int_{-\pi}^{\pi}|f*g|
\le\int_{-\pi}^{\pi}|f|\int_{-\pi}^{\pi}|g|$.}
\spheader 255Oe Let $f$, $g$, $h$ be complex-valued measurable
functions defined almost everywhere in $\ocint{-\pi,\pi}$, such that $f*g$
and $g*h$ are also defined almost everywhere. Suppose
that $x\in\ocint{-\pi,\pi}$ is such that one of $(|f|*(|g|*|h|))(x)$,
$((|f|*|g|)*|h|)(x)$ is defined in $\Bbb R$. Then $f*(g*h)$ and
$(f*g)*h$ are defined and equal at $x$.
\spheader 255Of Suppose that $f\in\eusm L^p_{\Bbb C}(\mu)$,
$g\in\eusm L^{q}_{\Bbb C}(\mu)$ where $p$, $q\in[1,\infty]$ and
$\bover1p+\bover1{q}=1$. Then $f*g$ is defined
everywhere in $\ocint{-\pi,\pi}$, and
$\sup_{x\in\ocint{-\pi,\pi}}|(f*g)(x)|\le\|f\|_p\|g\|_q$, interpreting
$\|\,\,\|_{\infty}$ as $\esssup |\,\,|$\cmmnt{, as in 255K}.
\exercises{
\leader{255X}{Basic exercises $\pmb{>}$(a)}
%\sqheader 255Xa
Let $f$, $g$ be complex-valued
functions defined almost everywhere in $\Bbb R$. Show that for any
$x\in\Bbb R$, $(f*g)(x)=\int f(x+y)g(-y)dy$ if either is defined.
%255E
\sqheader 255Xb Let $f$ and $g$ be complex-valued functions defined
almost everywhere in $\Bbb R$. (i) Show that if $f$ and $g$ are even
functions, so is $f*g$. (ii) Show that if $f$ is even and $g$ is odd
then $f*g$ is odd. (iii) Show that if $f$ and $g$ are odd then $f*g$
is even.
%255E
\spheader 255Xc Suppose that $f$, $g$ are real-valued measurable
functions defined almost everywhere in $\BbbR^r$ and such that $f>0$
a.e., $g\ge 0$ a.e.\ and $\{x:g(x)>0\}$ is not negligible. Show that
$f*g>0$ everywhere in $\dom(f*g)$.
%255F
\sqheader 255Xd Suppose that $f:\Bbb R\to\Bbb C$ is a bounded
differentiable function and that $f'$ is bounded. Show that for any
integrable
complex-valued function $g$ on $\Bbb R$, $f*g$ is differentiable and
$(f*g)'=f'*g$ everywhere. \Hint{123D.}
%255F
\spheader 255Xe A complex-valued function $g$ defined almost everywhere
in $\Bbb R$ is {\bf locally integrable} if $\int_a^bg$ is defined in
$\Bbb C$ whenever $a<b$ in $\Bbb R$. Suppose that $g$ is such a
function and that $f:\Bbb R\to\Bbb C$ is a differentiable function, with
continuous derivative, such that $\{x:f(x)\ne 0\}$ is bounded. Show
that $(f*g)'=f'*g$ everywhere.
%255F 255Xd
\sqheader 255Xf Set $\phi_{\delta}(x)=\exp(-\bover1{\delta^2-x^2})$ if
$|x|<\delta$, $0$ if $|x|\ge\delta$, as in 242Xi. Set
$\alpha_{\delta}=\int\phi_{\delta}$,
$\psi_{\delta}=\alpha_{\delta}^{-1}\phi_{\delta}$. Let $f$ be a
locally integrable
complex-valued function on $\Bbb R$. (i) Show that $f*\psi_{\delta}$
is a smooth function defined everywhere on $\Bbb R$ for every
$\delta>0$. (ii) Show that
$\lim_{\delta\downarrow 0}(f*\psi_{\delta})(x)=f(x)$ for almost every
$x\in\Bbb R$. \Hint{223Yg.} (iii) Show that if $f$ is integrable
then $\lim_{\delta\downarrow 0}\int|f-f*\psi_{\delta}|=0$. \Hint{use
(ii) and 245H(a-ii) {\it or} look first at the case $f=\chi[a,b]$ and
use 242O, noting that $\int|f*\psi_{\delta}|\le\int|f|$.} (iv) Show
that if $f$ is uniformly continuous and defined everywhere in $\Bbb R$
then
$\lim_{\delta\downarrow 0}\sup_{x\in\Bbb R}|f(x)-(f*\psi_{\delta})(x)|=0$.
%255F 255Xe
\sqheader 255Xg For $\alpha>0$, set
$g_{\alpha}(t)=\Bover1{\Gamma(\alpha)}t^{\alpha-1}$ for $t>0$, $0$ for
$t\le 0$. Show that $g_{\alpha}*g_{\beta}=g_{\alpha+\beta}$ for all
$\alpha$, $\beta>0$. \Hint{252Yf.}
%255F
\sqheader 255Xh Let $\mu$ be Lebesgue measure on $\Bbb R$.
For $u$, $v$,
$w\in L^0_{\Bbb C}=L^0_{\Bbb C}(\mu)$, say that
$u*v=w$ if $f*g$ is defined almost everywhere and $(f*g)^{\ssbullet}=w$
whenever $f$, $g\in\eusm L^0_{\Bbb C}(\mu)$, $f^{\ssbullet}=u$ and
$g^{\ssbullet}=w$. (i) Show that $(u_1+u_2)*v=u_1*v+u_2*v$ whenever
$u_1$, $u_2$, $v\in L^0_{\Bbb C}$ and $u_1*v$ and $u_2*v$ are defined in
this sense. (ii) Show that $u*v=v*u$ whenever $u$, $v\in L^0(\Bbb C)$ and
either $u*v$ or $v*u$ is defined. (iii) Show that if $u$, $v$,
$w\in L^0_{\Bbb C}$, $u*v$ and $v*w$ are defined,
and either $|u|*(|v|*|w|)$ or $(|u|*|v|)*|w|$ is
defined, then then $u*(v*w)=(u*v)*w$ are defined and equal.
%255I
\sqheader 255Xi Let $\mu$ be Lebesgue measure on $\Bbb R$.
(i) Show that $u*v$, as defined in 255Xh, belongs to $L^1_{\Bbb C}(\mu)$
whenever $u$, $v\in L^1_{\Bbb C}(\mu)$.
(ii) Show that $L^1_{\Bbb C}$ is a
commutative Banach algebra under $*$ (definition: 2A4J).
%255Xh 255I
\spheader 255Xj(i) Show that if $h$ is an integrable
function on $\BbbR^2$, then $(Th)(x)=\int h(x-y,y)dy$ exists for
almost every $x\in\Bbb R$, and that $\int (Th)(x)dx=\int h(x,y)d(x,y)$.
(ii) Write $\mu_2$ for Lebesgue measure on $\BbbR^2$, $\mu$ for
Lebesgue measure on $\Bbb R$. Show that there is a linear operator
$\tilde T:L^1(\mu_2)\to L^1(\mu)$ defined by setting
$\tilde T(h^{\ssbullet})=(Th)^{\ssbullet}$ for every integrable function
$h$ on $\BbbR^2$. (iii) Show that in the language of 253E and 255Xh,
$\tilde T(u\otimes v)=u*v$ for all $u$, $v\in L^1(\mu)$.
%255Xh 255I 255Xi
\sqheader 255Xk For $\pmb{a}$, $\pmb{b}\in\Bbb C^{\Bbb Z}$ set
$(\pmb{a}*\pmb{b})(n)=\sum_{i\in\Bbb Z}\pmb{a}(n-i)\pmb{b}(i)$ whenever
$\sum_{i\in\Bbb Z}|\pmb{a}(n-i)\pmb{b}(i)|<\infty$. Show that
\quad (i) $\pmb{a}*\pmb{b}=\pmb{b}*\pmb{a}$;
\quad (ii) $\sum_{i\in\Bbb Z}\pmb{c}(i)(\pmb{a}*\pmb{b})(i)
=\sum_{i,j\in\Bbb Z}\pmb{c}(i+j)\pmb{a}(i)\pmb{b}(j)$ if
$\sum_{i,j\in\Bbb Z}|\pmb{c}(i+j)\pmb{a}(i)\pmb{b}(j)|<\infty$;
\quad (iii) if $\pmb{a}$, $\pmb{b}\in\ell^1(\Bbb Z)$ then
$\pmb{a}*\pmb{b}\in\ell^1(\Bbb Z)$ and
$\|\pmb{a}*\pmb{b}\|_1\le\|\pmb{a}\|_1\|\pmb{b}\|_1$;
\quad (iv) If $\pmb{a}$, $\pmb{b}\in\ell^2(\Bbb Z)$ then
$\pmb{a}*\pmb{b}\in\ell^{\infty}(\Bbb Z)$ and
$\|\pmb{a}*\pmb{b}\|_{\infty}\le\|\pmb{a}\|_2\|\pmb{b}\|_2$;
\quad (v) if $\pmb{a}$, $\pmb{b}$, $\pmb{c}\in\Bbb C^{\Bbb Z}$ and
$(|\pmb{a}|*(|\pmb{b}|*|\pmb{c}|))(n)$ is well-defined, then
$(\pmb{a}*(\pmb{b}*\pmb{c}))(n)=((\pmb{a}*\pmb{b})*\pmb{c})(n)$.
%255K
\leader{255Y}{Further exercises (a)}
%\spheader 255Ya
Let $f$ be a complex-valued function which is integrable
over $\Bbb R$. (i) Let $x$ be any point of the Lebesgue set of $f$.
Show that for any $\epsilon>0$ there is a $\delta>0$ such that
$|f(x)-(f*g)(x)|\le\epsilon$ whenever $g:\Bbb R\to\coint{0,\infty}$ is a
function which is non-decreasing on $\ocint{-\infty,0}$, non-decreasing
on $\coint{0,\infty}$, and has $\int g=1$ and
$\int_{-\delta}^{\delta}g\ge 1-\delta$. (ii) Show that for any
$\epsilon>0$ there is a $\delta>0$ such that $\|f-f*g\|_1\le\epsilon$
whenever $g:\Bbb R\to\coint{0,\infty}$ is a function which is
non-decreasing on $\ocint{-\infty,0}$, non-decreasing on
$\coint{0,\infty}$, and has $\int g=1$ and
$\int_{-\delta}^{\delta}g\ge 1-\delta$.
%255Xf 255F
\spheader 255Yb Let $f$ be a complex-valued function which is integrable
over $\Bbb R$. Show that, for almost every $x\in\Bbb R$,
\Centerline{$\lim_{a\to\infty}