-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy path4.tex
2543 lines (2197 loc) · 101 KB
/
4.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
\chapter{微积分学基本定理}
在前两章中,我们分别引入了函数的变率(导数),函数的和(定积分)的基本概念,本章将研究函数的导函数与函数的求和函数这两者之间的互逆关系,并说明我们可以用求导函数的逆运算方法来计算定积分.
\section{微积分学基本定理}
\subsection{导函数与求和函数}
函数$f(x)$在点$x_0$处的变化率(导数)的定义是
\[f' (x_0) =\lim_{h\to 0}\frac{f (x_0+h) -f (x_0)}{h}\]
显然, $f'(x_0)$的值与$f(x)$在点$x_0$的值以及在点$x_0$的邻近的函数值有关,当点$x_0$在$(a,b)$内变化时,$f'(x_0)$也跟着变化,那么$f'(x_0)$便是一个新函数称为$f(x)$的导函数.计算一个函数的导函数是一件比较简便的事情.
定积分$\int^b_a f(x)\dif x$的定义是把区间$[a,b]$无限细分
而得到上下夹逼阶梯函数的和的共同极限,其几何意义是曲线$y=f(x)$和直线$x=a$, $x=b$, 及$y=0$所围成的区域的有号面积.
假如我们考虑$f(x)$在一个变动的区间$[a,x]$上的和,
即让区间的左端点固定,右端点变动,则
\[S_f(x)=\text{函数$f$从$a$到$x$的和}=\int^x_a f (x) \dif x\]
可以看作上限变量$x$的函数,在这里,积分符号中的$x$既表示积分变量,又表示积分上限,容易混淆,因此,为了区别起见,我们用字母$t$来代表积分变量,这样上式就写成
\[S_f (x)=\int^x_a f(t)\dif t\]
和函数$S_f(x)$在$x=x_0$处的值$S_f(x_0)$的几何意义就是曲线$y=f(t)$, 直线$t=a$, $t=x_0$, $y=0$所围成的区域的有号面积,它是随区域的变动界线$t=x_0$的变动而变动的(图4.1).
\begin{figure}[htp]
\centering
\begin{tikzpicture}[>=latex]
\draw[->](-3,0)--(5,0)node[right]{$t$};
\draw[->](0,-1.5)--(0,2)node[right]{$y$};
\node at (0,0) [below left]{$O$};
\node at (0,0){};
\draw[line width=1.5pt] plot[smooth] coordinates{ (-2.75,-.5)(-2,-1)(-.8,0)(1,1.25)(2.5,0)(3.5,-1.1)(4,-1.3)
};
\draw(-2,-1)node[below]{$M'$}--node[left]{$t=x_0'$}(-2,0)node[above]{$P'$};
\draw(1,1.25)node[above]{$B$}--node[right]{$t=a$}(1,0)node[below]{$A$};
\draw(3.5,-1.1)node[below]{$M$}--node[right]{$t=x_0$}(3.5,0)node[above]{$P$};
\node at (-.8,0)[above]{$D$};
\node at (2.5,0)[above]{$C$};
\node at (2,1)[right]{$y=f(t)$};
\end{tikzpicture}
\caption{}
\end{figure}
例如,当变动界限(积分上限)在图中的$PM$位置时,则
\[S_f(x_0)=\int^{x_0}_a f(t)\dif t=ACB\text{的面积}-CPM\text{的面积}\]
当变动界限在图中的$P'M'$位置时,则
\[\begin{split}
S_f(x'_0)&=\int^{x_0'}_a f(t)\dif t=-\int^a_{x_0'} f(t)\dif t\\
&=-\left\{-P'DM'\text{的面积}+DAB\text{的面积} \right\}\\
&=P'DM'\text{的面积}-DAB\text{的面积}
\end{split}\]
例如,折线函数
\[g(x)=\begin{cases}
\frac{1}{2}(x-1) & x\in[1,2]\\
\frac{3}{2}(x-2)+\frac{1}{2}(2-1) & x\in [2,3]\\
(x-3)+\frac{1}{2}(2-1)+\frac{3}{2}(3-2) & x\in [3,4]
\end{cases}\]
的导函数(除去在折线段的那些交接点处不作定义外)是阶梯函数
\[g'(x)=\begin{cases}
\frac{1}{2} & x\in [1,2)\\
\frac{3}{2} & x\in (2,3)\\
1& x\in (3,4]
\end{cases}\]
反过来,该阶梯函数的和函数,是上述折线函数$g(x)$, 我们有如下的图解关系:
\begin{center}
\begin{tikzpicture}[>=latex]
\node (A) at (0,0) {\{折线函数\}};
\node (B) at (5,0) {\{阶梯函数\}};
\draw[->](A) to [bend left=30]node[above]{求导} (B);
\draw[->](B) to [bend left=30]node[above]{求和} (A);
\end{tikzpicture}
\end{center}
上述简明的例子表明“微分”与“积分”(或求函数由$a$到$b$的和)之间的运算关系应该是互逆的.
\subsection{微积分学基本定理}
\begin{blk}
{定理1} 设$f(t)$是在$[a,b]$上的分段单调连续函数,又它的和函数是
\[S_f(x)=\int^x_a f (t) \dif t\]
那么
\[\frac{\dif }{\dif x}S_f(x)=\frac{\dif }{\dif x}\int^x_a f (t) \dif t=f(x),\qquad a\le x\le b\]
\end{blk}
\begin{figure}[htp]
\centering
\begin{tikzpicture}[>=latex, xscale=3]
\draw[->](.4,0)--(3,0)node[right]{$t$};
\draw[->](.6,-.5)--(.6,4.5)node[right]{$y$};
\draw[domain=.9:2.5, very thick, samples=100]plot(\x, {2.5*(\x-1)*(\x-2)*(\x-3)+2})node[right]{$y=f(t)$};
\draw(.9,0)node[below]{$a$}--(.9,1.4225);
\draw[pattern=north east lines, domain=1.4:1.7, samples=50]plot(\x, {2.5*(\x-1)*(\x-2)*(\x-3)+2})--(1.7,2.6825)--(1.7,0)node[below]{$x$}--(1.4,0)node[below]{$x+\bar h$}--(1.4,2.96);
\draw[pattern=north west lines, domain=1.7:2, samples=50]plot(\x, {2.5*(\x-1)*(\x-2)*(\x-3)+2})--(2,2)--(2,0)node[below]{$x+h$}--(1.7,0)--(1.7,2.6825);
\draw[<-](1.55,2)--(1.55,3.5)node[right]{$S_f(x)-S_f(x+\bar h),\; (\bar h<0)$};
\draw[<-](1.85,.5)--(2.1,.5)node[right]{$S_f(x+h)-S_f(x),\; (h>0)$};
\node at (.6,0)[below left]{$O$};
\end{tikzpicture}
\caption{}
\end{figure}
\begin{proof}
如图4.2,设$h>2$,则
\[\begin{split}
\frac{S_f(x+h)-S_f(x)}{h}&=\frac{\Int^{x+h}_a f(t)\dd t-\Int^{x}_a f(t)\dd t}{h}\\
&=\frac{\Int^{x+h}_x f(t)\dd t}{h}\qquad \text{(定积分性质1)}\\
&=\frac{hf(\xi)}{h}\quad (x<\xi<x+h)\\
&=f(\xi)\qquad \text{(定积分中值定理)}
\end{split}\]
于是
\begin{equation}
\lim_{h\to 0^+}\frac{S_f(x+h)-S_f(x)}{h}=\lim_{\xi\to x}f(\xi)=f(x)
\end{equation}
设$\bar h<0$,则
\[\begin{split}
\frac{S_f(x)-S_f(x+\bar h)}{\bar h}&=\frac{\Int^{x}_a f(t)\dd t-\Int^{x+\bar h}_a f(t)\dd t}{\bar h}\\
&=\frac{\Int^{x}_{x+\bar h} f(t)\dd t}{\bar h}\qquad \text{(定积分性质1)}\\
&=\frac{-\bar h f(\bar\xi)}{\bar h}=-f(\bar\xi)\quad (x+\bar h<\bar \xi<x)\\
\end{split}\]
即:
\[\frac{S_f(x+\bar h)-S_f(x)}{\bar h}=f(\bar\xi),\qquad (x+\bar h<\bar \xi<x)\]
于是
\begin{equation}
\lim_{h\to 0^-}\frac{S_f(x+\bar h)-S_f(x)}{\bar h}=\lim_{\bar\xi\to x}f(\bar\xi)=f(x)
\end{equation}
由(4.1)和(4.2),得
\[\frac{\dd }{\dd x}S_f(x)=\frac{\dd }{\dd x}\int^x_a f(t)\dd t=f(x)\]
\end{proof}
\begin{blk}
{引理} 如果两个函数$F(x)$和$G(x)$满足条件
\[F' (x) =G' (x) ,\qquad a\le x\le b\]
那么
\[G(x)=F(x)+C,\qquad (C\text{是常数})\]
\end{blk}
\begin{proof}
由$G'(x)-F'(x)=0$, 得
\[[G (x) -F (x) ]'=0\]
根据中值定理(参看第三章)知,对于每一个$x\in (a,b)$, 恒有
\[G(x)-F(x)=C,\qquad (C\text{是常数})\]
所以
\[G (x) =F (x) +C\]
\end{proof}
\begin{blk}
{定义} 设$f(x)$是在区间$[a,b]$上给定的函数,如果可微函数$G(x)$满足条件
\[G'(x)=f(x)\qquad (\text{或}\quad \dd G(x)=f(x)\dd x)\]
那么就称$G(x)$为$f(x)$在$[a,b]$上的一个\textbf{原函数}.
\end{blk}
例如,设$G'(x)=\cos x$, 那么$G(x)=\sin x$就称为$\cos x$的一个原函数.
\begin{blk}
{定理2} 设$f(x)$是给定的分段单调连续函数,如果一个可微函数$G(x)$满足条件
\begin{equation}
G'(x)=f(x)\qquad \text{(或$\dd G(x)=f(x)\dd x$)},\quad a\le x\le b
\end{equation}
那么
\[S_f (x)=\int^x_a f (t) \dd t=G (x) -G (a) \]
\end{blk}
\begin{proof}
由定理1知,$f(x)$的一个原函数存在,就是它的和函数,即
\[\frac{\dd }{\dd x}\int^x_a f(t)\dd t=f(x)\]
题设$G(x)$是$f(x)$的另一个原函数,故由引理得
\begin{equation}
\int^x_a f (t) dt=G (x) +C
\end{equation}
这里的常数要由条件$\Int^a_a f(t)\dd t=0$来确定.
在(4.4)中,令$x=a$,得
\[0=G(a)+C\]
所以:$C=-G(a)$,代入(4.4),得
\[\int^x_a f(t)\dd t=G(x)-G(a)\]
\end{proof}
在上面等式中,令$x=b$, 便得到下面著名的莱布尼兹-牛顿公式:
\[\int^b_a f (t) \dd t= G (b) -G (a) \]
这个公式告诉我们,求分段单调连续函数$f(x)$在$[a,b]$上的定积分可以化简为去求$f(x)$的一个原函数$G(x)$, 而函数值的差$G(b)-G(a)$就是定积分的值.
\begin{example}
设$f(x)=k$(常数函数),则$G(x)=kx$是一个满足$G'(x)=k=f(x)$的原函数,所以
\[\int^b_a k\dd x=kb-ka=k(b-a)\]
以后我们引用一个符号:
\[G(x)\Bigg|^b_a=G(b)-G(a)\]
\end{example}
\begin{example}
设$f(x)=kx^n,\; (n\in\mathbb{N})$,则
\[G(x)=k\frac{x^{n+1}}{n+1}\]
是满足$G'(x)=kx^n$的一个原函数,所以
\[\int^b_akx^n\dd x=k\frac{x^{n+1}}{n+1}\Bigg|^b_a=\frac{k}{n+1}(b^{n+1}-a^{n+1})\]
\end{example}
\begin{example}
设$f(x)=x^{-n}=\frac{1}{x^n}\; (x\ne 0,\; n\in\mathbb{N})$,则
\[G(x)=\frac{x^{-n+1}}{-n+1}\]
是满足$G'(x)=x^{-n}$的一个原函数.要特别注意定理2中$f(x)$是连续的条件,在任何包含0的区间上,函数$f(x)=\frac{1}{x^n}$无界,即有第二类间断点,如果$a,b$异号,则定积分$\Int^b_a x^{-n}\dd x$无意义,但若$a,b$同时为正或同时为负,则
\[\int^b_ax^{-n}\dd x=\frac{x^{-n+1}}{-n+1}\Bigg|^b_a=\frac{b^{-n+1}}{-n+1}-\frac{a^{-n+1}}{-n+1}\]
当然,又有$n\ne -1$时,上式才能成立.
如果$n=-1$,依复合函数求导法则,得
\[(\ln|x|)'=\frac{1}{|x|}\cdot |x|'\]
若$x>0$,则
\[(\ln|x|)'=\frac{1}{x}\cdot 1=\frac{1}{x}\]
若$x<0$,则
\[(\ln|x|)'=\frac{1}{-x}\cdot (-1)=\frac{1}{x}\]
总之
\[(\ln|x|)'=\frac{1}{x},\quad (x\ne 0)\]
因此
\[\begin{split}
\int^b_a \frac{1}{x}\dd x=\ln |x|\Bigg|^b_a &=\ln|b|-\ln |a|\\
&=\ln\left|\frac{b}{a}\right|=\ln\frac{b}{a}\quad (x\ne 0,\; ab>0)
\end{split}\]
\end{example}
\begin{example}
求$\Int^3_1 |x-2|\dd x$
\end{example}
\begin{solution}
\[\begin{split}
\Int^3_1 |x-2|\dd x&=\Int^2_1 -(x-2)\dd x+\Int^3_2 (x-2)\dd x\\
&=\left(-\frac{x^2}{2}+2x\right)\Bigg|^2_1+\left(\frac{x^2}{2}-2x\right)\Bigg|^3_2\\
&=\frac{1}{2}+\frac{1}{2}=1
\end{split}\]
\end{solution}
\begin{example}
求$\Lim_{n\to\infty}\frac{\sum^n_{i=1}i^p}{n^{p+1}}\quad (p\in \mathbb{N})$
\end{example}
\begin{solution}
\[\begin{split}
\Lim_{n\to\infty}\frac{\sum^n_{i=1}i^p}{n^{p+1}}&=\Lim_{n\to\infty}\sum^n_{i=1}\left(\frac{i}{n}\right)^p\cdot \frac{1}{n}\\
&=\int^1_0 x^p\dd x=\left.\frac{x^{p+1}}{p+1}\right|^1_0=\frac{1}{p+1}
\end{split}\]
\end{solution}
\begin{ex}
\begin{enumerate}
\item 用求原函数的方法, 计算下列定积分:
\begin{multicols}{2}
\begin{enumerate}
\item $\Int_{2}^{3}\left(x^{3}+6 x^{2}+4 x+1\right) \dd x$
\item $\Int_{1}^{5} \frac{v^{2}+2}{v^{4}} \dd v$
\item $\Int_{-3}^{-2}\left(x+\frac{2}{x}\right)^{2} \dd x$
\item $\Int_{1}^{10}\left(x+\frac{1}{x}\right) \dd x$
\item $\Int_{a}^{b}|x-1| \dd x$
\end{enumerate}
\end{multicols}
\item 求曲线 $y=2 x-x^{2}$ 与 $x$ 轴之间的面积.
\item 设 $y=x(x-1)(x-2)$,
求 $\Int_{0}^{1} y \dd x,\; \Int_{1}^{2} y\dd x,\; \Int_{0}^{2} y \dd x$,
并说明所得结果的几何意义.
\item 求直线$y=2x$和曲线$y=x^2$之间的面积.
\item 求由曲线$y=\frac{1}{x^2}$和直线$x=1$, $x=4$所围成的曲边梯形的
面积.
\item 求抛物线方程使它具有以下的性质:
\begin{enumerate}
\item 抛物线通过$(0, 0)$, $(1, 2)$两点,
\item 它的对称轴平行$y$轴,且向上凸,
\item 它与$x$轴所围的面积最小.
\end{enumerate}
\item 求正数$a$, 使$\Int^1_0 |x^2-a^2|\dd x$最小.
\item 求下列函数的导数:
\begin{multicols}{2}
\begin{enumerate}
\item $F(x)=\Int_{a}^{x}\sin^2 t \dd t$
\item $F(x)=\Int_{a}^{x^2} \sin^2 t \dd t$
\end{enumerate}
\end{multicols}
\end{enumerate}
\end{ex}
\section{不定积分}
由上节的微积分基本定理得知,在$[a,b]$上的两个可
微函数$G_1(x)$和$G_2(x)$均以$f(x)$为其导数,则$G_1(x)$与$G_2(x)$在$[a,b]$上只差一个常数$C$. 由此可见,如果$G'(x)=f(x)$, 且$C$为任意常数,那么$[G(x)+C]'=G'(x)=f(x)$. 这就是说:如果 函数$f(x)$有一个原函数$G(x)$, 那么就有无穷多个原函数,并且所有原函数刚好组成函数族
\[\{G(x)+C\;|\; C\text{是任意常数}\}\]
\begin{blk}
{定义} 函数$f(x)$在区间$[a,b]$上的原函数全体叫做$f(x)$的不定积分,记作
\[\int f(x)\dd x\]
设$G(x)$是$f(x)$的一个原函数,那么由不定积分的定义得到
\[\int f (x) \dd x=G (x) +C\]
其中$C$是任意常数.
\end{blk}
关于不定积分,易见有如下性质:
\begin{blk}{性质1}
积分与微分互为逆运算,即:
\[\begin{cases}
\dd\Int f(x)\dd x=f(x)\dd x\\
\Int \dd f(x)=f(x)+C
\end{cases}\]
\end{blk}
事实上,因为$\frac{\dd }{\dd x}\Int^x_a f(t)\dd t=f(x)$,所以
\[\int f(x)\dd x=\int^x_a f(t)\dd t+C\qquad \text{(基本定理1和不定积分定义)}\]
于是
\[\left(\int f(x)\dd x\right)'=\left(\int^x_a f(x)\dd x\right)'=f(x)\]
从而
\[\dd\int f(x)\dd x=f(x)\dd x\]
又
\[\begin{split}
\int \dd f(x)&=\int f'(x)\dd x=\int^x_a f'(t)\dd t+C_1\\
&=f(x)-f(a)+C_1\quad \text{(基本定理)}\\
&=f(x)+C
\end{split}\]
这里$C=-f(a)+C_1$.
从性质1看出,若不要不定积分等式中的任意常数项,则当符号$\Int$与$\dd$紧接着时,无论哪个在前,哪个在后,都可以消掉.
因为微分,积分是两种互逆的运算,所以它们的运算法则是互相对应的,现将它们相对应的法则叙述如下:
\begin{blk}{性质2}
\[\begin{cases}
{\rm d} [f(x)+g(x)]=\dd f(x)+\dd g(x)\\
\Int [f(x)+g(x)] \dd x=\Int f(x)\dd x+\Int g(x)\dd x+C
\end{cases}\]
\end{blk}
上面不定积分公式的正确性不难证明,只要求出两边的微商,由于所得到的微商恒等,就可以知道它们只差一个常数项,因为,由性质1
\[\begin{split}
\left(\int[f(x)+g(x)]\dd x\right)'&=f(x)+g(x)\\
\left(\int f(x)\dd x+\int g(x)\dd x\right)'&=\left(\int f(x)\dd x\right)'+\left(\int g(x)\dd x\right)'=f(x)+g(x)
\end{split}\]
所以$f(x)+g(x)$的两个原函数相差一个常数项,即:
\[\int[f(x)+g(x)]\dd x=\int f(x)\dd x+\int g(x)\dd x+C\]
同理可得:
\begin{blk}{性质3}
\[\begin{cases}
{\rm d} [a f(x)]=a\dd f(x)\\
\Int af(x)\dd x=a\Int f(x)\dd x
\end{cases}\qquad (a\ne 0)\]
\end{blk}
\subsection{基本积分表}
由基本微商公式表,倒转顺序,就可以得到下面这个表:
\begin{itemize}
\item $\frac{\dd}{\dd x}C=0,\qquad \Int 0\dd x=C$
\item $\frac{\dd }{\dd x}x^{\mu}=\mu x^{\mu-1},\qquad \Int x^{\mu}\dd x=\frac{x^{\mu+1}}{\mu+1}+C\quad \text{($\mu$是不等于$-1$的实数)}$
\item $\frac{\dd }{\dd x}\ln|x|=\frac{1}{x},\qquad \Int\frac{\dd x}{x}=\ln|x|+C\quad (x\ne 0)$
\item $\frac{\dd }{\dd x}e^x=e^x,\qquad \Int e^x\dd x=e^x+C$
\end{itemize}
还因为$a^x=e^{x\ln a}$,由复合函数求导法则,得:
\[(a^x)'=e^{x\ln a}(x\ln a)'=\ln a\cdot e^{x\ln a}=\ln a\cdot a^x\]
所以:
\begin{itemize}
\item $\frac{\dd}{\dd x}a^x=\ln a\cdot a^x,\qquad \Int a^x\dd x=\frac{a^x}{\ln a}+C$
\item $\frac{\dd}{\dd x} \sin x=\cos x, \qquad \Int \cos x \dd x=\sin x+C$.
\item $\frac{\dd}{\dd x} \cos x=-\sin x, \qquad \Int \sin x \dd x=-\cos x+C$.
\item $\frac{\dd}{\dd x}\tan x=\sec ^{2} x, \qquad \Int \sec^{2} x \dd x=\tan x+C$
\item $\frac{\dd}{\dd x}\cot x=-\csc ^{2} x, \qquad \Int \csc^{2} x \dd x=-\cot x+C$
\item $\frac{\dd}{\dd x} \arcsin x=\frac{1}{\sqrt{1-x^{2}}} ,\qquad \Int \frac{\dd x}{\sqrt{1-x^{2}}}=\arcsin x+C$
$\frac{\dd}{\dd x} \arccos x=\frac{-1}{\sqrt{1-x^{2}}},\qquad \Int\frac{-1}{\sqrt{1-x^{2}}}\dd x=-\arccos x+C'$
\item $\frac{\dd}{\dd x}\arctan x=\frac{1}{x^{2}+1}, \qquad \Int \frac{\dd x}{x^{2}+1}=\arctan x+C$
$\frac{\dd}{\dd x} \arccot x=\frac{-1}{x^{2}+1}, \qquad \Int \frac{-1}{x^{2}+1}\dd x=-\arccot x+C'$
\end{itemize}
现在来看不定积分的几何意义.
由不定积分的定义知道,求函数$f(x)=3x^2$的原函数全体,就是求不定积分$\Int 3x^2\dd x$, 也就是求满足微分方程
\begin{equation}
\frac{\dd y}{\dd x}=3x^2
\end{equation}
的所有的原函数.
显然,$y=x^3$就是微分方程(4.5)的一个原函数,它的图象上各点切线的斜率由(4.5)确定.我们称曲线$y=x^3$为
微分方程(4.5)的积分曲线,把它沿$y$轴上下平移任意一段距离,便得到曲线族
\begin{equation}
y=x^3+C
\end{equation}
并且(4.6)中任意一条曲线与曲线$y=x^3$在横坐标相同的点的切线平行,其斜率都等于$3x^2$, 因此,曲线族(4.6)是满足微分方程(4.5)的所有积分曲线,也就是不定积分$\Int 3x^2\dd x=x^3+C$的几何表示(图4.3).
为要确定(4.5)的某条积分曲线的位置,应当给出这条积分曲线必须经过的一点,例如它经过点$P(1, 3)$. 我们说这条件也是微分方程(4.5)的一个相应的原函数要满足的初值条件
$y\big|_{x=1}=3$
把它们代入(4.6), 得到
\[3=1^3+C\quad \Rightarrow\quad C=2\]
因此,满足微分方程$\frac{\dd y}{\dd x}=3x^2$和初值条$y\big|_{x=1}=3$的原函
数或相应的积分曲线是
\[y=x^3+2\]
通常把满足微分方程
\begin{equation}
\frac{\dd y}{\dd x}=f(x)
\end{equation}
的所有解叫做给定函数$f(x)$的不定积分,即
\[y=\int f(x)\dd x\]
把函数$f(x)$的一个原函数$y=G(x)$的图象叫做微分方程(4.7)的一条\textbf{积分曲线},这样,不定积分
\[y=\int f(x)\dd x=G(x)+C \quad \text{($C$为任意常数)}\]
的几何意义就表示与$y=G(x)$在各点有相同斜率$\frac{\dd y}{\dd x}=f(x)$的积分曲线族(图4.3).
\begin{figure}[htp]
\centering
\begin{tikzpicture}[>=latex, xscale=3, yscale=.8]
\draw[->](-1,0)--(1.25,0)node[right]{$x$};
\draw[->](0,-4)--(0,4)node[right]{$y$};
\node at (0,0)[below left]{$O$};
\foreach \y in {1,2,3}
{
\draw[domain=-.8:.8, samples=100, very thick]plot(\x, {\x*\x*\x+\y})node[right]{$y=x^3+$\y};
\draw[domain=-.8:.8, samples=100, very thick]plot(\x, {\x*\x*\x-\y})node[right]{$y=x^3-$\y};
}
\draw[domain=-.8:.8, samples=100, very thick]plot(\x, {\x*\x*\x})node[right]{$y=x^3$};
\end{tikzpicture}
\caption{}
\end{figure}
由微积分基本定理2知道,如果$y=G(x)$满足下面两个条件:
\[G'(x)=f(x)\quad \text{且}\quad G(a)=0\]
那么,$y=G(x)$就是$f(x)$的求和函数$G(x)=\Int^x_a f(x)\dd x$.
\begin{example}
求$\Int \sin (kx)\dd x,\quad \Int \cos(kx)\dd x,\quad \Int e^{kx}\dd x,\quad \Int \frac{\dd x}{x^2+a^2}$
\end{example}
\begin{solution}
因为
\[\begin{split}
(\cos kx)'&=-k\sin kx\\
(\sin kx)'&=k\cos kx\\
(e^{kx})'&=ke^{kx}\\
\left(\arctan\frac{x}{a}\right)'&=\frac{1}{\left(\frac{x}{a}\right)^2+1}\cdot\left(\frac{x}{a}\right)'=\frac{a}{x^2+a^2}
\end{split}\]
所以
\[\begin{split}
\int \sin (kx)\dd x&=-\frac{1}{k}\cos kx+C\\
\Int \cos(kx)\dd x&=\frac{1}{k}\sin kx+C\\
\Int e^{kx}\dd x&= \frac{1}{k}e^{kx}+C\\
\Int \frac{\dd x}{x^2+a^2}&=\frac{1}{a}\arctan\frac{x}{a}+C \\
\end{split} \]
\end{solution}
\begin{example}
证明:若$\Int f(t)\dd t=F(t)+C$,则
\[\int f(kx)\dd x=\frac{1}{k}F(kx)+C\]
\end{example}
\begin{proof}
只须证明$f(kx)$的一个原函数是$\frac{1}{k}F(kx)$即可.
我们求$\frac{1}{k}F(kx)$对$x$的导数,于是
\[\frac{\dd}{\dd x}\left[\frac{1}{k}F(kx)\right]=\frac{1}{k}F'(kx)\cdot (kx)'=F'(kx)\]
由题设知$F' (t) =f (t)$, 所以
\[\frac{\dd}{\dd x}\left[\frac{1}{k}F(kx)\right]=F'(kx)=f(kx)\]
因此
\[\int f (kx) \dd x=\frac{1}{k}F (kx) +C\]
\end{proof}
\begin{example}
求$\Int \sin kx\sin\ell x\dd x$
\end{example}
\begin{solution}
\[\begin{split}
\Int \sin kx\sin\ell x\dd x&=\int \frac{1}{2}[\cos(k-\ell)x-\cos(k+\ell)x]\dd x\\
&=\frac{1}{2}\int \cos (k-\ell)x\dd x-\frac{1}{2}\int \cos (k+\ell)x\dd x\\
&=\frac{\sin(k-\ell)x}{2(k-\ell)}-\frac{\sin(k+\ell)x}{2(k+\ell)}+C
\end{split}\]
这里$k\ne \pm \ell$.(如果$k=\pm\ell$,则另当考虑)
\end{solution}
\begin{example}
求$\Int \left(\frac{2a}{\sqrt{x}}-\frac{b}{x^2}+2xc^{\tfrac{2}{3}}\right)\dd x$
\end{example}
\begin{solution}
\[\begin{split}
\Int \left(\frac{2a}{\sqrt{x}}-\frac{b}{x^2}+2xc^{\tfrac{2}{3}}\right)\dd x&=2a\int x^{-\tfrac{1}{2}}\dd x-b\int x^{-2}\dd x+3c\int x^{\tfrac{2}{3}}\dd x\\
&=4a\sqrt{x}+\frac{b}{x}+\frac{9}{5}cx^{\tfrac{5}{3}}+C
\end{split}\]
\end{solution}
\begin{example}
求$\Int \frac{3x^2}{1+x^2}\dd x$
\end{example}
\begin{solution}
\[\begin{split}
\Int \frac{3x^2}{1+x^2}\dd x&=3\int \left(1-\frac{1}{x^2+1}\right)\dd x\\
&=3\int \dd x-3\int \frac{\dd x}{x^2+1}\\
&=3x-3\arctan x+C
\end{split}\]
\end{solution}
以上各例都是利用不定积分的性质2、3, 同时配合使用三角恒等式或设法将被积函数拆成几项,从而把一个比较复杂的积分化成若干个可以查基本积分表的积分.
\begin{ex}
\begin{enumerate}
\item 计算下列不定积分:
\begin{multicols}{2}
\begin{enumerate}
\item $\Int\left(x^{3}+3 x+5\right) \dd x$
\item $\Int(x+2)^{4} \dd x$
\item $\Int\left(x^{-2}+x^{-1}+x^{\tfrac{1}{3}}+x^{\tfrac{1}{2}}\right) \dd x$
\item $\Int\left(a^{\tfrac{2}{3}}-x^{\tfrac{2}{3}}\right)^{3} \dd x$
\item $\Int\left(\frac{1}{x}+e^{x}\right) \dd x$
\item $\Int \frac{2 \cdot 3^{x}-5 \cdot 2^{x}}{3^{x}} \dd x$
\item $\Int \left(\frac{3}{1+x^{2}}-\frac{2}{\sqrt{1-x^{2}}}\right) \dd x$
\item $\Int \frac{2+x^{2}}{1+x^{2}} \dd x$
\item $\Int \frac{\dd x}{x^{2}\left(1+x^{2}\right)}$
\item $\Int \frac{\dd x}{x^{2}\left(a^{2}+x^{2}\right)}$
\item $\Int 3^{x} e^{x} \dd x$
\end{enumerate}
\end{multicols}
\item 利用三角恒等式, 计算下列不定积分:
\begin{multicols}{2}
\begin{enumerate}
\item $\Int \tan^{2} x \dd x$
\item $\Int \frac{\cos 2 x}{\cos x-\sin x} \dd x$
\item $\Int \frac{2+\sin ^{2} x}{\cos ^{2} x} \dd x$
\item $\Int \sin ^{2} x \dd x$
\item $\Int \cos ^{2} x \dd x$
\item $\Int \cos k x \cos \ell x \dd x$
\item $\Int \sin 2 x \cos 5 x \dd x$
\item $\Int \frac{\dd t}{\sin ^{2} t \cos ^{2} t}$
\item $\Int \sin ^{3} x \dd x$
\item $\Int \cos ^{3} x \dd x$
\end{enumerate}
\end{multicols}
\item 若$\Int f(t)\dd t=F(t)+C$, 求证
\[\int f (ax+b) \dd x=\frac{1}{a}F (ax+b) +C\]
\item 若$\frac{\dd y}{\dd x}=4x-6$, 且当$x=0$时,$y=9$, 求$y$的极小值.
\item 若$\frac{\dd y}{\dd x}=ax+b$, 求原函数$y=f(x)$使其满足下列条件:
\begin{enumerate}
\item 当$x=0$时,$y=5$;
\item 积分曲线向下凸且曲线$y=f(x)$在$x$轴上截得的弦长等于4;
\item 曲线$y=f(x)$上纵坐标的最小值等于$-4$.
\end{enumerate}
\item 试求一个次数最低的多项式,使之当$x=1$时,有最大值6,而当$x=3$时,有最小值2.
\item 求下列各式的极限:
\begin{enumerate}
\item $\Lim_{n\to\infty}\frac{\sqrt[n]{e}+\sqrt[n]{e^2}+\cdots+\sqrt[n]{e^n}}{n}$
\item $\Lim_{n\to\infty}\frac{\sqrt[n]{e}+\sqrt[n]{e^4}+\cdots+\sqrt[n]{e^{2n}}}{n}$
\end{enumerate}
\end{enumerate}
\end{ex}
\section{不定积分的计算方法}
从上一节看到,虽然利用积分运算法则及基本积分表可以求出不少函数的原函数,但是实际遇到的积分仅凭这一些
方法还不能完全解决,本节将介绍几种典型的方法,利用这些方法,我们就可以计算更多的不定积分,此外,我们还制作了较为详细的积分表,可供使用时查阅.
\subsection{第一换元法}
有一些不定积分,将积分变量进行某种变映后就能由基本积分公式求出,例如求$\Int e^{2x}\dd x$, 在基本积分公式中只有$\Int e^x\dd x$, 没有直接求出它的公式,我们看到所求积分的被积函数$e^{2x}$是$y=e^u$和$u=2x$的复合函数,如果在积分表达式$e^{2x}\dd x$中,把被积函数看成中间变量$u$的函数,即设$u=2x$则$e^{2x}=e^u$, 从而$\dd u=2\dd x$, 由此可见只要再给微分$\dd x$凑上一个常数因子2, 就得到中间变量$u$的微分$\dd u$, 于是
\[\int e^{2x}\dd x=\int e^{2x}\cdot \frac{1}{2}\dd (2x) =\frac{1}{2}\int e^u\dd u=\frac{1}{2}e^u+C\]
然后再代回原来的积分变量,得
\[\int e^{2x}\dd x=\frac{1}{2}e^{2x}+C\]
\begin{example}
求$\Int \frac{\dd x}{\sqrt{a^2-x^2}}\quad (a>0)$
\end{example}
\begin{solution}
因为被积函数$\frac{1}{\sqrt{a^2-x^2}}=\frac{1}{a\sqrt{1-\left(\frac{x}{a}\right)^2}}$
是$y=\frac{1}{a\sqrt{1-u^2}}$和$u=\frac{x}{a}$的复合函数,且$\dd u=\frac{1}{a}\dd x$,于是
\[\begin{split}
\int \frac{\dd x}{\sqrt{a^2-x^2}}=\int \frac{\dd x}{a\sqrt{1-\left(\frac{x}{a}\right)^2}}&=\int \frac{\frac{1}{a}\dd x}{\sqrt{1-\left(\frac{x}{a}\right)^2}}\\
\text{令}u=\frac{x}{a}\to &= \int \frac{\dd u}{\sqrt{1-u^2}}\\
\text{查表}\to &=\arcsin u+C\\
u=\frac{x}{a} \to &=\arcsin \frac{x}{a}+C
\end{split}\]
\end{solution}
\begin{example}
求$\Int \tan x\dd x$
\end{example}
\begin{solution}
\[\begin{split}
\Int \tan x\dd x=\Int \frac{\sin x}{\cos x}\dd x&=-\int \frac{\dd \cos x}{\cos x}\\
u=\cos x\to &=-\int \frac{\dd u}{u}\\
&=-\ln|u|+C=-\ln |\cos x|+C=\ln |\sec x|+C
\end{split}\]
\end{solution}
从上述两例看到,在求不定积分时,首先要与已知的基本积分公式相对比,并利用简单的变量代换,把要求的积分凑成公式所具有的形式,求出以后,再把原来的变量代回.以上变量代换中关键的一步是把原来的被积函数$f(x)$的某部分$\varphi(x)$换成中间变量$u$, 那么原来的被积表达式$f(x)\dd x$就拆成了$g[\varphi(x)]=g(u)$和$\varphi'(x)\dd x=\dd u$这两部分的乘积,即
\[f (x) \dd x=g [\varphi (x) ] \varphi' (x) \dd x=g (u) \dd u\]
于是:若$\Int g(x)\dd x=F(x)+C$,那么
\[\int g[\varphi(x)]\varphi'(x)\dd x=\int g(u)\dd u=F(u)+C=F[\varphi(x)]+C\]
上述换元法叫做第一换元法.
\begin{example}
求$\Int \sin^{3}x\dd x$
\end{example}
\begin{solution}
设$u=\cos x$,$\dd u=-\sin x\dd x$,于是
\[\begin{split}
\Int \sin^{3}x\dd x&=\int (1-\cos^2 x)\cdot \sin x\dd x\\
u=\cos x\to &=-\int (1-u^2)\dd u\\
&=-u+\frac{u^3}{3}+C=\frac{\cos^3 x}{3}-\cos x+C
\end{split}\]
\end{solution}
对换元积分法较熟练以后,所设换元变量$u$可以不写出.
\begin{example}
求$\Int \frac{\dd x}{\sqrt{ax+b}}$
\end{example}
\begin{solution}
\[\Int \frac{\dd x}{\sqrt{ax+b}}=\frac{1}{a}\int \frac{\dd(ax+b)}{\sqrt{ax+b}}=\frac{2}{a}\sqrt{ax+b}+C\]
\end{solution}
\begin{example}
求$\Int \frac{\dd x}{a^2-x^2}$
\end{example}
\begin{solution}
\[\begin{split}
\Int \frac{\dd x}{a^2-x^2}&=\frac{1}{2a}\int\left(\frac{1}{a-x}+\frac{1}{a+x}\right)\dd x\\
&=\frac{1}{2a}\left[-\int\frac{\dd(a-x)}{a-x}+\int\frac{\dd(a+x)}{a+x}\right]\\
&=\frac{1}{2a}\left[-\ln|a-x|+\ln|a+x|\right]=\frac{1}{2a}\ln\left|\frac{a+x}{a-x}\right|
\end{split}\]
\end{solution}
\begin{example}
求$\Int \sec x\dd x$
\end{example}
\begin{solution}
\[\Int \sec x\dd x=\int \frac{\cos x}{\cos^2 x}\dd x=\int \frac{\dd(\sin x)}{1-\sin^2 x}\]
利用上题结果,得:
\[\begin{split}
\int \sec x\dd x&=\frac{1}{2}\ln\left|\frac{1+\sin x}{1-\sin x}\right|+C\\
&=\frac{1}{2}\ln\frac{1+\sin x}{1-\sin x}+C\\
&=\frac{1}{2}\ln\frac{(1+\sin x)^2}{\cos^2 x}+C\\
&=\ln|\sec x+\tan x|+C
\end{split}\]
\end{solution}
\begin{example}
求$\Int \frac{1}{\sin^2x +3\cos^2x}\dd x$
\end{example}
\begin{solution}
\[\begin{split}
\Int \frac{1}{\sin^2x +3\cos^2x}\dd x&=\Int \frac{1}{(\tan^2x +3)\cos^2x}\dd x\\
&=\int \frac{\dd (\tan x)}{\tan^2 x+\left(\sqrt{3}\right)^2}=\frac{1}{\sqrt{3}}\int \frac{\dd\left(\frac{\tan x}{\sqrt{3}}\right)}{\left(\frac{\tan x}{\sqrt{3}}\right)^2+1}\\
&=\frac{1}{\sqrt{3}}\arctan\left(\frac{\tan x}{\sqrt{3}}\right)+C
\end{split}\]
\end{solution}
\begin{ex}
求下列不定积分:
\begin{enumerate}
\begin{multicols}{2}
\item $\Int(3 x+5)^{100} \dd x$
\item $\Int\pi e^{-\tfrac{\pi}{4} x} \dd x$
\item $\Int \frac{\ln x}{x} \dd x$
\item $\Int\frac{1}{x^{2}} \cdot e^{\tfrac{1}{x}} \dd x$
\item $\Int\frac{\cos \sqrt{x}}{\sqrt{x}} \dd x$
\item $\Int \frac{1}{(\arcsin x)^{2} \sqrt{1-x^{2}}} \dd x$
\item $\Int\frac{\dd x}{x^{2}+a^{2}}$
\item $\Int \frac{\dd x}{x^{2}-a^{2}}$
\item $\Int \frac{1}{\sqrt{x}} e^{\sqrt{x}} \dd x$
\item $\Int \frac{2 a x+b}{2 \sqrt{a x^{2}+b x+c}} \dd x$
\item $\Int\frac{1}{1+e^{x}} \dd x$
\end{multicols}
\begin{multicols}{2}
\item $\Int \frac{e^{x}}{e^{2 x}+1} \dd x$
\item $\Int \frac{\cos x}{e^{\sin x}} \dd x$
\item $\Int \frac{\dd x}{\cos ^{2} x \sqrt{\tan x}}$
\item $\Int \frac{\cos a x}{b-\sin a x} \dd x\quad (a \neq 0) $
\item $\Int x \sqrt{a x^{2}+c}\; \dd x$
\item $\Int \frac{\sin ^{2} x \cos x \dd x}{1+\sin x}$
\item $\Int \frac{\sqrt{\arctan x}}{1+x^{2}} \dd x$
\item $\Int \frac{1}{1+\sin x} \dd x$
\end{multicols}
\begin{multicols}{2}
\item $\Int \frac{\sqrt{1+\cos x}}{\sin x} \dd x$
\item $\Int \frac{\dd x}{x^{2}+x-6}$
\item $\Int \frac{x \dd x}{3 x^{2}+x+2}$
\item $\Int \frac{\dd x}{3 x^{2}+x+2}$
\item $\Int \cot x \dd x$
\item $\Int \frac{\dd x}{\sin x}$
\item $\Int \frac{\arcsin x}{\sqrt{1-x^{2}}} \dd x$
\end{multicols}
\end{enumerate}
\end{ex}
\subsection{第二换元积分法}
有些积分不能很容易地凑出微分,而是一开始就要作代换,把要求的积分化简,然后再求积分.
\begin{example}
求$\Int \frac{1}{1+\sqrt{x}}\dd x$.
\end{example}
\begin{solution}
这个积分的表达式不容易拆成中间变量$u=\varphi(x)$
的函数$g(\varphi(x))=g(u)$和中间变量的微分$\varphi'(x)\dd x=\dd u$的乘积,因此前面的第一换元法对此题用起来不便.这时我们设法作一个代换,以便把被积函数中的根号去掉,化成新变量的有理式.
令$x=u^2$, 即作代换$\sqrt{x}=u$, 于是
\[\begin{split}
\frac{1}{1+\sqrt{x}}&=\frac{1}{1+u}\\
\dd x&=2u\dd u
\end{split}\]
从而
\[\begin{split}
\Int \frac{1}{1+\sqrt{x}}\dd x&=\int \frac{1}{1+u}2u\dd u\\
&=2\int \frac{(1+u)-1}{1+u}\dd u\\
&=2\left[\int \dd u-\int \frac{1}{1+u}\dd u\right]\\
&=2\left[u-\ln |1+u|\right]+C\\
&=2\left[\sqrt{x}-\ln\left(1+\sqrt{x}\right)\right]+C
\end{split}\]
\end{solution}
这里由于把积分变量$x$换成了$u$的函数$x=u^2$, 因此在最后结果中,用变量$u$表出的函数,还要还原成$x$的函数,这就要求从所作的代换$x=u^2$中解出反函数$u=\sqrt{x}$来.
我们把第二换元积分法用定理形式叙述如下:
\begin{blk}{定理}
设$x=\varphi(u)$是可微函数,且$\varphi'(u)\ne 0$,若
\begin{equation}
\int f[\varphi(u)]\varphi'(u)\dd u=F(u)+C
\end{equation}
那么
\begin{equation}
\int f(x)\dd x=F\left[\varphi^{-1}(x)\right]+C
\end{equation}
\end{blk}
\begin{proof}
只须证明$\frac{\dd}{\dd x}F[\varphi^{-1}(x)]=f(x)$即可.
因为$\varphi'(u)\ne 0$,故$x=\varphi(u)$的反函数$u=\varphi^{-1}(x)$存在,于是
\[\begin{split}
\frac{\dd}{\dd x}F[\varphi^{-1}(x)]&=\frac{\dd}{\dd u}F[\varphi^{-1}(x)]\cdot \frac{\dd }{\dd x}\varphi^{-1}(x)\\
&=\frac{\dd}{\dd u}F(u)\cdot \frac{1}{\frac{\dd}{\dd u}\varphi(u)}\\
&=F'(u)\cdot \frac{1}{\varphi'(u)}\\
&=\left\{f[\varphi(u)]\varphi'(u)\right\}\cdot \frac{1}{\varphi'(u)}\\
&=f[\varphi(u)]\\
x=\varphi(u)\to &=f(x)
\end{split}\]
\end{proof}
\begin{example}
求$\Int\frac{\dd x}{\sqrt{x}+\sqrt[3]{x}}$.
\end{example}
\begin{solution}
\[\Int\frac{\dd x}{\sqrt{x}+\sqrt[3]{x}}=\int \frac{\dd x}{\left(\sqrt[6]{x}\right)^3+\left(\sqrt[6]{x}\right)^2}\]
设$x=u^6$,$u>0$,则可化去被积函数中的根号,于是
\[\frac{1}{\sqrt{x}+\sqrt[3]{x}}=\frac{1}{u^3+u^2}\quad \Rightarrow\quad \dd x=6u^5\dd u\]
从而
\[\begin{split}
\Int\frac{\dd x}{\sqrt{x}+\sqrt[3]{x}}&=\int \frac{6u^5}{u^3+u^2}\dd u=\int\frac{6u^3}{u+1}\dd u\\
&=6\int \left(u^2-u+1-\frac{1}{u+1}\right)\dd u\\
&=6\left\{\frac{u^3}{3}-\frac{u^2}{2}+u-\ln|u+1|\right\}+C\\
&=2\sqrt{x}-3\sqrt[3]{x}+6\sqrt[6]{x}-\ln\left(\sqrt[6]{x}+1\right)+C
\end{split}
\]
\end{solution}
\begin{example}
求$\Int \frac{x+1}{\sqrt[3]{3x+1}}\dd x$.
\end{example}
\begin{solution}
设$3x+1=t^3$,即$x=\frac{1}{2}(t^3-1)$,于是:$\dd x=t^2\dd t$
\[\begin{split}
\Int \frac{x+1}{\sqrt[3]{3x+1}}\dd x&=\int \frac{\frac{1}{3}(t^3-1)+1}{t}t^2\dd t\\
&=\frac{1}{3}\int (t^4+2t)\dd t\\
&=\frac{1}{3}\left(\frac{1}{5}t^5+t^2\right)+C=\frac{1}{15}(3x+1)^{\tfrac{5}{3}}+\frac{1}{3}(3x+1)^{\tfrac{2}{3}}+C\\
&=\frac{1}{5}(x+2)(3x+1)^{\tfrac{2}{3}}+C
\end{split}\]
\end{solution}
上面所介绍的两种变量代换法的基本思想是一致的.第一种是把被积函数中的一个小部分看作一个变量,即“化繁为简”;第二种则把积分变量代以一个新变量的函数,表面上看来是“化简为繁”,但实际上克服了求积分的困难.应当注意,在使用第二种变量代换法时,要保证变换是可微的和一对一的,否则会出现错误.
下面介绍当被积函数含有二次根式$\sqrt{a^2-x^2}$, $\sqrt{a^2+x^2}$, $\sqrt{x^2-a^2}$时,怎样作代换.
\begin{example}
求$\Int \sqrt{a^2-x^2}\dd x\quad (a>0)$.
\end{example}
\begin{solution}
因为\[\sqrt{a^2-x^2}=\sqrt{a^2\left(1-\frac{x^2}{a^2}\right)}=a\sqrt{1-\left(\frac{x}{a}\right)^2}\]
所以可作正弦代换
\[\frac{x}{a}=\sin t\quad \left(-\frac{\pi}{2}\le t\le \frac{\pi}{2}\right)\]
$\sin t$在$\left[-\frac{\pi}{2},\frac{\pi}{2}\right]$上连续且递增,有反函数$t=\arcsin\frac{x}{a},\; -1\le x\le 1$. 于是
\[\begin{split}
\dd x&=\dd (a\sin t)=a\cos t\dd t\\
\sqrt{a^2-x^2}&=a\sqrt{1-\left(\frac{x}{a}\right)^2}=a\sqrt{1-\sin^2 t}=a\cos t
\end{split}\]
从而:
\[\begin{split}
\Int \sqrt{a^2-x^2}\dd x&=\int a\cos t\cdot a\cos t\dd t=a^2\int \cos^2 t\dd t\\
&=a^2\int \frac{1+\cos 2t}{2}\dd t=\frac{a^2}{2}\left[\int \dd t+\frac{1}{2}\int \cos 2t\dd (2t)\right]\\
&=\frac{a^2}{2}\left(t+\frac{1}{2}\sin 2t\right)+C=\frac{a^2}{2}\left(t+\sin t\cos t\right)+C\\
&=\frac{a^2}{2}\left[\arcsin\frac{x}{a}+\frac{x}{a}\sqrt{1-\left(\frac{x}{a}\right)^2}+C\right]\\
&=\frac{a^2}{2}\arcsin\frac{x}{a}+\frac{x}{2}\sqrt{a^2-x^2}+C
\end{split}\]
\end{solution}
\begin{example}
求$\Int \frac{\dd x}{\sqrt{a^2+x^2}}\quad (a>0)$.
\end{example}
\begin{solution}
因为$\sqrt{a^2+x^2}=a\sqrt{1+\left(\frac{x}{a}\right)^2}$,设$\frac{x}{a}=\tan t\; \left(-\frac{\pi}{2}<t<\frac{\pi}{2}\right)$,则存在反函数
\[t=\arctan\frac{x}{a}\quad \Rightarrow\quad \dd x=a\sec^2 t\dd t\]
又$\sqrt{a^2+x^2}=a\sqrt{1+\tan^2 t}=a\sec t$
,从而:
\[\begin{split}
\Int \frac{\dd x}{\sqrt{a^2+x^2}}&=\int\frac{a\sec^2 t\dd t}{a\sec t}=\int\sec t\dd t\\
&=\ln|\sec t+\tan t|+C_1\\
&=\ln\left|\frac{1}{a}\sqrt{a^2+x^2}+\frac{x}{a}\right|+C_1\\
&=\ln\left|x+\sqrt{a^2+x^2}\right|-\ln a+C_1\\
&=\ln\left|x+\sqrt{a^2+x^2}\right|+C\qquad (C=C_1-\ln a)
\end{split}\]
\end{solution}
\begin{example}
求$\Int \frac{\dd x}{\sqrt{x^2-a^2}}\quad (a>0)$
\end{example}
\begin{solution}
\begin{center}
\begin{tikzpicture}[scale=.7]
\draw[very thick](0,0)--node[below]{$a$}(3,0)--node[right]{$\sqrt{x^2-a^2}$}(3,4)--node[left]{$x$}(0,0);
\draw(.75,0) arc (0:53.13:.75)node[right]{$t$};
\end{tikzpicture}
\end{center}
作正割代换.设$x=a\sec t\; \left(0<t<\frac{\pi}{2}\right)$,此函数在$t=\frac{\pi}{2}$点间断,在区间$\left[0,\frac{\pi}{2}\right)$上由$a$递增到$+\infty$,而在区间$\left(\frac{\pi}{2},\pi\right]$上由$-\infty$递增到$-a$.因此,$x=a\sec t$在$\left(0,\frac{\pi}{2}\right]$上的反函数是
\[t=\arcsec\frac{x}{a}\quad \left(1<\frac{x}{a}<\infty,\; \text{即}x>a\right)\]
于是,当$x>a$时,有
\[\begin{split}
\sqrt{x^2-a^2}&=\sqrt{a^2\sec^2 t-a^2}=\sqrt{a^2(\sec^2 t-1)}\\
&=a\sqrt{\tan^2 t}=a|\tan t|\\
&=a\tan t \quad \left(0\le t<\frac{\pi}{2}\right)
\end{split}\]
\[\dd x=\dd(a\sec t)=a\frac{\sin t}{\cos^2 t}\dd t\]
从而:
\[\begin{split}
\Int \frac{1}{\sqrt{x^2-a^2}}\dd x&=\int\frac{1}{a\tan t}\cdot \frac{a\sin t}{\cos^2 t}\dd t\\
&=\int \frac{1}{\cos t}\dd t=\ln|\sec t+\tan t|+C_1\\
&=\ln\left|\frac{x}{a}+\frac{\sqrt{x^2-a^2}}{a}\right|+C_1\\
&=\ln\left|x+\sqrt{x^2-a^2}\right|+C_1-\ln a=\ln\left|x+\sqrt{x^2-a^2}\right|+C
\end{split}\]
其中$C=C_1-\ln a$.
又函数$x=a\sec t$在$\left(\frac{\pi}{2},\pi\right]$上的反函数是
\[t=\arcsec\frac{x}{a}\quad \left(-\infty<\frac{x}{a}<-1,\; \text{即}x<-a\right)\]
于是,当$x<-a$时,有
\[\sqrt{x^2-a^2}=a\sqrt{\tan^2 t}=a|\tan t|=-a\tan t\quad \left(\frac{\pi}{2}<t\le \pi\right)\]
\[\dd x=\dd(a\sec t)=a\frac{\sin t}{\cos^2 t}\cdot \dd t\]
\[\begin{split}
\Int \frac{1}{\sqrt{x^2-a^2}}\dd x&=\int-\frac{1}{a\tan t}\cdot \frac{a\sin t}{\cos^2 t}\dd t\\
&=-\int \frac{1}{\cos t}\dd t=-\ln|\sec t+\tan t|+C_2\\
&=-\ln\left|\frac{x}{a}-\frac{\sqrt{x^2-a^2}}{a}\right|+C_2\\
&=-\ln\left|x-\sqrt{x^2-a^2}\right|+C_2+\ln a\\
&=\ln\left|\frac{1}{x-\sqrt{x^2-a^2}}\right|+C'\qquad (C'=C+\ln a)\\
&=\ln\left|\frac{x+\sqrt{x^2-a^2}}{a^2}\right|+C'=\ln\left|x+\sqrt{x^2-a^2}\right|+C'-\ln a^2\\
&=\ln\left|x+\sqrt{x^2-a^2}\right|+C''\qquad (C''=C'-\ln a^2)
\end{split}\]
因此,不论$x>a$或$x<-a$,都有
\[\int\frac{\dd x}{\sqrt{x^2-a^2}}=\ln\left|x+\sqrt{x^2-a^2}\right|+C\]
\end{solution}
到现在为止,我们又得到四个重要的不定积分公式:
\begin{blk}{}
\begin{align}
\Int \frac{\dd x}{a^2+x^2}&=\frac{1}{a}\arctan\frac{x}{a}+C\\
\Int\frac{\dd x}{a^2-x^2}&=\frac{1}{2a}\ln\left|\frac{a+x}{a-x}\right|+C\\
\Int\frac{\dd x}{\sqrt{a^2-x^2}}&=\arcsin\frac{x}{a}+C\\
\Int \frac{\dd x}{\sqrt{x^2\pm a^2}}&=\ln\left|x+\sqrt{x^2\pm a^2}\right|+C
\end{align}
\end{blk}
利用这些公式可以进一步求出许多不定积分.
\begin{blk}
{类型A}
\[\int \frac{\dd x}{ax^2+bx+c}\]
\end{blk}
如果被积函数的分母可以分解因式,则把被积函数分解成部分分式,就很容易分项求出不定积分.
如分母不能分解因式,那么将它配方得
\[ax^2+bx+c=a\left(x+\frac{b}{2a}\right)^2+\frac{4ac-b^2}{4a}\]
于是
\begin{itemize}
\item 当$4ac>b^2$时,上面不定积分归结到(4.10);
\item 当$4ac<b^2$时,上面不定积分归结到(4.11).
\end{itemize}
\begin{example}
求$\Int \frac{\dd x}{3x^2+x-1}$.
\end{example}
\begin{solution}
\[\begin{split}
\Int \frac{\dd x}{3x^2+x-1}&=\frac{1}{3}\int \frac{\dd x}{\left(x+\frac{1}{6}\right)^2-\frac{13}{36}}\\
&=\frac{1}{3}\frac{1}{2\sqrt{\frac{13}{36}}}\ln\left|\frac{x+\frac{1}{6}-\frac{\sqrt{13}}{6}}{x+\frac{1}{6}+\frac{\sqrt{13}}{6}}\right|+C\\
&=\frac{1}{\sqrt{13}}\ln\left|\frac{6x+1-\sqrt{13}}{6x+1+\sqrt{13}}\right|+C
\end{split}\]
\end{solution}
\begin{blk}
{类型B}
\[\int \frac{px+q}{ax^2+bx+c}\dd x\]
\end{blk}
注意到$\frac{\dd}{\dd x}(ax^2+bx+c)=2ax+b$,被积函数的分子可以写成
\[px+q=\frac{p}{2a}(2ax+b)+q-\frac{pb}{2a}\]
于是
\[\int\frac{px+q}{ax^2+bx+c}\dd x=\frac{p}{2a}\int\frac{2ax+b}{ax^2+bx+c}\dd x+\left(q-\frac{bp}{2a}\right)\int\frac{\dd x}{ax^2+bx+c}\]
等式右端第一项是$\frac{p}{2a}\ln(ax^2+bx+c)$,第二项可归结到类型A.
\begin{example}
求$\Int \frac{5x-1}{3x^2+x+2}\dd x$.
\end{example}
\begin{solution}
\[\begin{split}
\Int \frac{5x-1}{3x^2+x+2}\dd x&=\frac{5}{6}\int \frac{6x+1}{3x^2+x+2}\dd x-\frac{11}{6}\int\frac{\dd x}{3x^2+x+2}\\
&=\frac{5}{6}\ln(3x^2+x+2)-\frac{11}{6}\cdot \frac{1}{3}\cdot \int \frac{\dd x}{\left(x+\frac{1}{6}\right)^2+\frac{23}{36}}\\
&=\frac{5}{6}\ln(3x^2+x+2)-\frac{11}{6}\cdot\frac{1}{3}\cdot\frac{6}{\sqrt{23}}\arctan\frac{6x+1}{\sqrt{23}}+C\\
&=\frac{5}{6}\ln(3x^2+x+2)-\frac{11}{3\sqrt{23}}\arctan\frac{6x+1}{\sqrt{23}}+C
\end{split}\]
\end{solution}
\begin{blk}{类型C}
\[\int \frac{\dd x}{\sqrt{ax^2+bx+c}}\]
\end{blk}
\begin{itemize}
\item 若$a>0$, 则被积函数的根底式经配方后,所求积分可归结到积分公式(4.13);
\item 若$a<0$, 则此积分可归结到积分公式(4.12).
\end{itemize}
\begin{example}
求$\Int \frac{\dd x}{\sqrt{2+x-3x^2}}$
\end{example}
\begin{solution}
\[\begin{split}
\Int \frac{\dd x}{\sqrt{2+x-3x^2}}&=\frac{1}{\sqrt{3}}\int \frac{\dd x}{\sqrt{\frac{2}{3}+\frac{1}{3}x-x^2}}\\
&=\frac{1}{\sqrt{3}}\int \frac{\dd x}{\sqrt{\frac{25}{36}-\left(x-\frac{1}{6}\right)^2}}\\
&=\frac{1}{\sqrt{3}}\arcsin\frac{x-\frac{1}{6}}{\frac{5}{6}}+C\\
&=\frac{1}{\sqrt{3}}\arcsin\frac{6x-1}{5}+C
\end{split}\]
\end{solution}
\begin{blk}{类型D}
\[\int \frac{px+q}{\sqrt{ax^2+bx+c}}\dd x\]
\end{blk}
被积函数的分子可写成
\[px+q=\frac{p}{2a}(2ax+b)+q-\frac{pb}{2a}\]
所以
\[
\int \frac{px+q}{\sqrt{ax^2+bx+c}}\dd x=\frac{p}{2a}\int \frac{2ax+b}{\sqrt{ax^2+bx+c}}\dd x+\left(q-\frac{pb}{2a}\right)\int\frac{\dd x}{\sqrt{ax^2+bx+c}}
\]
等式右端第一个积分等于被积函数的分母的2倍,即$2\sqrt{ax^2+bx+c}$, 第二个是类型C的积分.
\begin{example}
求$\Int \frac{5x-1}{\sqrt{3x^2+x+2}}\dd x$.
\end{example}
\begin{solution}
\[\begin{split}
\Int \frac{5x-1}{\sqrt{3x^2+x+2}}\dd x&=\frac{5}{6}\int \frac{6x+1}{\sqrt{3x^2+x+2}}\dd x-\frac{11}{6}\int \frac{\dd x}{\sqrt{3x^2+x+2}}\\
&=\frac{5}{6}\cdot 2\sqrt{3x^2+x+2}\\
&\qquad -\frac{11}{6}\cdot\frac{1}{\sqrt{3}}\ln\left[x+\frac{1}{6}+\sqrt{\left(x+\frac{1}{6}\right)^2+\frac{23}{36}}\right]+C\\
&=\frac{5}{3}\sqrt{3x^2+x+2}-\frac{11}{6\sqrt{3}}\ln\left[x+\frac{1}{6}+\sqrt{\left(x+\frac{1}{6}\right)^2+\frac{23}{36}}\right]+C
\end{split}\]
\end{solution}
\begin{blk}{类型E}
\[\int \frac{\dd x}{x\sqrt{ax^2+bx+c}}\]
\end{blk}
作变量代换$x=\frac{1}{y}$,所求积分可化为类型C.因为$\dd x=-\frac{1}{y^2}\dd y$,并且
\[\int \frac{\dd x}{x\sqrt{ax^2+bx+c}}=\int\frac{-\frac{1}{y^2}\dd y}{\frac{1}{y}\sqrt{\frac{a}{y^2}+\frac{b}{y}+c}}=-\int\frac{\dd y}{\sqrt{a+by+cy^2}}\]