-
Notifications
You must be signed in to change notification settings - Fork 0
/
TRENCH_DIFFEQ_STUDENT_MANUAL.tex
24369 lines (20927 loc) · 742 KB
/
TRENCH_DIFFEQ_STUDENT_MANUAL.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
\documentclass[dvips]{book}
\usepackage[usenames, dvipsnames, svgnames, table]{xcolor}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\renewcommand{\rmdefault}{ptm}
\usepackage[scaled=0.92]{helvet}
\usepackage[psamsfonts]{amsfonts}
\usepackage{amsmath, amsbsy, wtrench}
\usepackage[dvips,
bookmarks = true,
colorlinks=true,
plainpages = false,
citecolor = blue,
urlcolor = blue,
filecolor = blue,
pageanchor = true]
{hyperref}
\setcounter{secnumdepth}{2}
\usepackage[justification=centering, labelsep=space, skip=-10 pt]{caption}
\usepackage[a4paper]{geometry}
\usepackage{float}
\usepackage{upref}
\renewcommand{\exer}[1]{\par\medskip\;\noindent{\color{red}\bf #1.}}
\numberwithin{example}{section}
\numberwithin{equation}{section}
\numberwithin{theorem}{section}
\numberwithin{table}{section}
\numberwithin{figure}{section}
\newcommand{\place}{\bigskip\hrule\bigskip\noindent}
\newcommand{\threecol}[3]{\left[\begin{array}{r}#1\\#2\\#3\end{array}\right]}
\newcommand{\threecolj}[3]{\left[\begin{array}{r}#1\\[1\jot]#2\\[1\jot]#3\end{array}\right]}
\newcommand{\lims}[2]{\,\bigg|_{#1}^{#2}}
\newcommand{\twocol}[2]{\left[\begin{array}{l}#1\\#2\end{array}\right]}
\newcommand{\ctwocol}[2]{\left[\begin{array}{c}#1\\#2\end{array}\right]}
\newcommand{\cthreecol}[3]{\left[\begin{array}{c}#1\\#2\\#3\end{array}\right]}
\newcommand{\eqline}[1]{\centerline{\hfill$\displaystyle#1$\hfill}}
\newcommand{\twochar}[4]{\left|\begin{array}{cc}
#1-\lambda\\#3-\lambda\end{array}\right|}
\newcommand{\twobytwo}[4]{\left[\begin{array}{rr}
#1\\#3\end{array}\right]}
\newcommand{\threechar}[9]{\left[\begin{array}{ccc}
#1-\lambda\\#4-\lambda\\#7	-\lambda\end{array}\right]}
\newcommand{\threebythree}[9]{\left[\begin{array}{rrr}
#1\\#4\\#7	\end{array}\right]}
\newcommand{\solutionpart}[1]{\vskip10pt\noindent\underbar{\color{blue}\sc
Solution({\bf #1})\ }}
\newcommand{\Cex}{\fbox{\textcolor{red}{C}}\, }
\newcommand{\CGex}{\fbox{\textcolor{red}{C/G}}\, }
\newcommand{\Lex}{\fbox{\textcolor{red}{L}}\, }
\newcommand{\matfunc}[3]{\left[\begin{array}{cccc}#1_{11}(t)_{12}(t)&\cdots
_{1#3}(t)\\#1_{21}(t)_{22}(t)&\cdots_{2#3}(t)\\\vdots&
\vdots&\ddots&\vdots\\#1_{#21}(t)_{#22}(t)&\cdots_{#2#3}(t)
\end{array}\right]}
\newcommand{\col}[2]{\left[\begin{array}{c}#1_1\\#1_2\\\vdots\\#1_#2\end{array}\right]}
\newcommand{\colfunc}[2]{\left[\begin{array}{c}#1_1(t)\\#1_2(t)\\\vdots\\#1_#2(t)\end{array}\right]}
\newcommand{\cthreebythree}[9]{\left[\begin{array}{ccc}
#1\\#4\\#7	\end{array}\right]}
\newcommand{\technology}{\bigskip\noindent\fbox{\color{red}USING
TECHNOLOGY}\par}
\newcommand{\remark}[1]{\noindent{\sc Remark}:\ #1}
\newcommand{\bigbox}[1]{\vskip10pt\vbox{\hrule\hbox{\vrule\kern5pt
\vbox{\noindent
\strut\kern5pt\mbox{}\newline#1\mbox{}\newline
\kern5pt\strut}\kern5pt\vrule}\hrule}}
\newcommand{\blankbox}[1]{\vskip10pt\vbox{\hbox{\kern5pt
\vbox{\noindent\strut\kern5pt\vspace*{-15pt}#1\vspace*{-20pt}
\kern5pt\strut}\kern5pt}}}
\newenvironment{newtable}[1]{ \begin{quote}
Table\space\refstepcounter{table}\thetable. #1}{\end{quote}}
\newenvironment{numberlist}{\begin{list}{\bf \arabic{rm}.}
{\topsep 12pt\partopsep 0pt\labelwidth 14pt
\labelsep 8pt\leftmargin 22pt\itemsep 0pt
\usecounter{rm}}}{\end{list}}
\setlength{\oddsidemargin}{15.5pt}
\setlength{\evensidemargin}{15.5pt}
\usepackage{graphicx}
\graphicspath{%
{converted_graphics/}% inserted by PCTeX
{EPS/}% inserted by PCTeX
}
\begin{document}
\thispagestyle{empty}
\begin{center}
{\bf\large STUDENT SOLUTIONS MANUAL FOR}
\vspace{.2in}
{\bf\Huge ELEMENTARY}
\smallskip
{\bf\Huge DIFFERENTIAL EQUATIONS}
\smallskip
{\bf\large AND}
\smallskip
{\bf\Huge ELEMENTARY}
\smallskip
{\bf\Huge DIFFERENTIAL EQUATIONS}
\smallskip
{\bf\Huge WITH BOUNDARY VALUE}
\smallskip
{\bf\Huge PROBLEMS}
% \vspace*{.2in}
\begin{figure}[H]
\centering
\includegraphics[bb=-78 148 689 643,width=5.67in,height=3.66in,keepaspectratio]{cover}
\end{figure}
%\vspace*{.2in}
\bf\huge
\href{http://ramanujan.math.trinity.edu/wtrench/index.shtml}
{William F. Trench}
\\\large
Andrew G. Cowles Distinguished Professor Emeritus\\
Department of Mathematics\\
Trinity University \\
San Antonio, Texas, USA\\
\href{mailto:{[email protected]}}
\large
\enlargethispage{2in}
\begin{quote}
This book has been judged to meet the evaluation criteria set by the
Editorial Board
of the American Institute of Mathematics in connection with the Institute's
\href{http://www.aimath.org/textbooks/}
{Open
Textbook Initiative}.
It may be copied, modified, redistributed, translated, and
built upon subject to the Creative Commons
\href{http://creativecommons.org/licenses/by-nc-sa/3.0/deed.en_G}
{Attribution-NonCommercial-ShareAlike 3.0 Unported
License}.
\end{quote}
\end{center}
\newpage
\vspace*{2in}
\thispagestyle{empty}
\vspace{1in}
\medskip
\noindent
{This book was published previously by Brooks/Cole Thomson Learning}
\medskip
\noindent
Reproduction is
permitted
for any valid noncommercial educational, mathematical, or scientific
purpose.
However,
charges for
profit beyond reasonable printing costs
are prohibited.
\bigskip
\newpage
\setcounter{page}{1}
\pagenumbering{roman}
\thispagestyle{empty}
\noindent
\vspace*{3in}
\centerline{\bf\Huge TO BEVERLY}
\thispagestyle{empty}
\setcounter{page}{1}
\pagenumbering{roman}
\pdfbookmark[0]{Table of Contents}{contents}
\markboth
{\hskip1em Contents\hfill}
{\hfill Contents\hskip1em}
\vspace*{3.9pc}
\centerline{\bf \Huge Contents}
\vspace*{4.8pc}
\bf
Chapter~1 \space Introduction\hskip1em
\hfill1
\vspace*{15pt}
1.2 \space First Order Equations\hfill1
\vspace*{15pt}
Chapter~2 \space First Order Equations\hskip1em
\hfill5
\vspace*{15pt}
2.1 \space Linear First Order Equations\hfill5
2.2 \space Separable Equations \hfill8
2.3 \space Existence and Uniqueness of Solutions of Nonlinear Equations\hfill 11
2.4 \space Transformation of Nonlinear Equations into Separable Equations\hfill 13
2.5 \space Exact Equations\hfill 17
2.6 \space Integrating Factors \hfill 21
\vspace*{15pt}
Chapter~3 \space Numerical Methods\hskip1em
\hfill 25
\vspace*{15pt}
3.1 \space Euler's Method\hfill 25
3.2 \space The Improved Euler Method and Related Methods\hfill29
3.3 \space The Runge-Kutta Method\hfill 34
\vspace*{15pt}
Chapter~4 \space Applications of First Order Equations\hskip1em
\hfill39
\vspace*{15pt}
4.1 \space Growth and Decay \hfill 39
4.2 \space Cooling and Mixing\hfill 40
4.3 \space Elementary Mechanics\hfill 43
4.4 \space Autonomous Second Order Equations\hfill 45
4.5 \space Applications to Curves\hfill 46
Chapter~5 \space Linear Second Order Equations\hskip1em
\hfill51
\vspace*{15pt}
5.1 \space Homogeneous Linear Equations\hfill 51
5.2 \space Constant Coefficient Homogeneous Equations\hfill 55
5.3 \space Nonhomgeneous Linear Equations\hfill 58
5.4 \space The Method of Undetermined Coefficients I\hfill 60
5.5 \space The Method of Undetermined Coefficients II\hfill 64
5.6 \space Reduction of Order\hfill 75
5.7 \space Variation of Parameters\hfill 79
\vspace*{15pt}
Chapter~6 \space Applcations of Linear Second Order Equations
\hfill85
\vspace*{15pt}
6.1 \space Spring Problems I\hfill 85
6.2 \space Spring Problems II\hfill 87
6.3 \space The RLC Circuit\hfill 89
6.4 \space Motion Under a Central Force\hfill 90
\vspace*{15pt}
Chapter~7 \space Series Solutions of Linear Second Order Equations\hskip1em
\hfill 108
\vspace*{15pt}
7.1 \space Review of Power Series\hfill 91
7.2 \space Series Solutions Near an Ordinary Point I\space \hfill 93
7.3 \space Series Solutions Near an Ordinary Point II\space \hfill 96
7.4 \space Regular Singular Points; Euler Equations\hfill 102
7.5 \space The Method of Frobenius I\space \hfill 103
7.6 \space The Method of Frobenius II\space \hfill108
7.7 \space The Method of Frobenius III \hfill 118
\vspace*{15pt}
Chapter~8 \space Laplace Transforms\hskip1em
\hfill 125
\vspace*{15pt}
8.1 \space Introduction to the Laplace Transform\hfill 125
8.2 \space The Inverse Laplace Transform\hfill 127
8.3 \space Solution of Initial Value Problems\hfill 134
8.4 \space The Unit Step Function\hfill 140
8.5 \space Constant Coefficient Equations with Piecewise Continuous
Forcing\\ \hspace*{.24in}Functions\hfill 143
8.6 \space Convolution\hfill152
8.7 \space Constant Cofficient Equations with Impulses\hfill55
\vspace*{15pt}
Chapter~9 \space Linear Higher Order Equations\hskip1em
\hfill 159
\vspace*{15pt}
9.1 \space Introduction to Linear Higher Order Equations\hfill 159
9.2 \space Higher Order Constant Coefficient Homogeneous Equations\hfill
171
9.3 \space Undetermined Coefficients for Higher Order Equations\hfill
175
9.4 \space Variation of Parameters for Higher Order Equations\hfill 181
\vspace*{15pt}
Chapter~10 \space Linear Systems of Differential Equations\hskip1em
\hfill 221
\vspace*{15pt}
10.1 \space Introduction to Systems of Differential Equations\hfill 191
10.2 \space Linear Systems of Differential Equations\hfill 192
10.3 \space Basic Theory of Homogeneous Linear Systems\hfill 193
10.4 \space Constant Coefficient Homogeneous Systems I\hfill 194
10.5 \space Constant Coefficient Homogeneous Systems II\hfill 201
10.6 \space Constant Coefficient Homogeneous Systems II\hfill 245
10.7 \space Variation of Parameters for Nonhomogeneous Linear Systems\hfill
218
\vspace*{15pt}
Chapter
\hfill 221
\vspace*{15pt}
11.1 \space Eigenvalue Problems for ${\mathbf y''+\lambda y=0}$\hfill 221
11.2 \space Fourier Expansions I\hfill 223
11.3 \space Fourier Expansions II\hfill 229
\vspace*{15pt}
Chapter~12 \space Fourier Solutions of Partial Differential
Equations\hskip1em
\hfill 239
\vspace*{15pt}
12.1 \space The Heat Equation\hfill 239
12.2 \space The Wave Equation\hfill 247
12.3 \space Laplace's Equation in Rectangular Coordinates\hfill 260
12.4 \space Laplace's Equation in Polar Coordinates\hfill 270
\vspace*{15pt}
Chapter~13\space Boundary Value Problems for Second Order Ordinary
Differential Equations \hfill 273
13.1 Two-Point Boundary Value Problems \hfill 273
13.2 Sturm-Liouville Problems \hfill 279
\rm
\newpage
\setcounter{page}{1}
\pagenumbering{arabic}
\thispagestyle{empty}
\setcounter{chapter}{1}
\pagenumbering{arabic}
\setcounter{page}{1}
\thispagestyle{empty}
\pdfbookmark[0]{Chapter 1}{chapter:1}
\chaptertitle{Introduction}
\newsection{2}{Basic Concepts}{Basic Concepts}
\subpdfbookmark{Section 1.2} {section:1.2}
\newcommand{\thissection}{\sectiontitle{\,BASIC CONCEPTS}}
\thissection
\vspace*{-17.5pt}
\exer{1.2.2}
\part{a} If $y=ce^{2x}$, then $y'=2ce^{2x}=2y$.
\part{b} If $y=\dst {x^2\over3}+{c\over x}$, then
$y'=\dst{2x\over3}-{c\over x^2}$, so $xy'+y=\dst{2x^2\over3}-{c\over x
}+{x^2\over3}+{c\over x}=x^2$.
\part{c} If
$$
y=\dst{1\over2}+ce^{-x^2}, \mbox{\quad then \quad}
y'=-2xce^{-x^2}
$$
and
$$
y'+2xy=-2xce^{-x^2}+2x\dst\left({1\over2}+ce^{-x^2}\right)
=-2xce^{-x^2}+x+2cxe^{-x^2}=x.
$$
\part{d}
If
$$
y=\dst{1+ce^{-x^2/2}\over1-ce^{-x^2/2}}
$$
then
\begin{eqnarray*}
y'&=&{(1-ce^{-x^2/2})(-cxe^{-x^2/2})-(1+ce^{-x^2/2})cxe^{-x^2/2}\over
(1-cxe^{-x^2/2})^2}\\[2\jot]
&=&{-2cxe^{-x^2/2}\over(1-ce^{-x^2/2})^2}
\end{eqnarray*}
and
\begin{eqnarray*}
y^2-1&=&\left(1+ce^{-x^2/2}\over1-ce^{-x^2/2}\right)^2-1\\[2\jot]
&=&{(1+ce^{-x^2/2})^2-(1-ce^{-x^2/2})^2\over(1-ce^{-x^2/2})^2}\\[2\jot]
&=&{4ce^{-x^2/2}\over(1-ce^{-x^2/2})^2},
\end{eqnarray*}
\medskip
\centerline{1}
so
$$
2y'+x(y^2-1)={-4cx+4cx\over(1-ce^{-x^2/2})^2}=0.
$$
\part{e}
If $y=\dst\tan\left( {x^3\over3}+c\right)$, then
$y'=x^2\dst\sec^2\left({x^3\over3}+c\right)=
x^2\left(1+\tan^2\dst\left({x^3\over3+c}\right)\right)=
x^2(1+y^2)$.
\part{f}
If
\vspace*{-5ex}
\begin{eqnarray*}
y&=&(c_1+c_2x)e^x+\sin x+x^2,\mbox{\quad then}\\
y'&=&(c_1+2c_2x)e^x+\cos x+2x,\\
y'&=&(c_1+3c_2x)e^x-\sin x+2,\\
\arraytext{and}
y''-2y'+y&=&c_1e^x(1-2+1)+c_2xe^x(3-4+1)\\
&&-\sin x-2\cos x+\sin x+2-4x+x^2\\
&=&-2 \cos x+x^2-4x+2.
\end{eqnarray*}
\part{g} If $y=c_1e^x+c_2x+\dst{2\over x}$, then
$y'=c_1e^x+c_2-\dst{2\over x^2}$ and $y''=c_1e^x+\dst{4\over x^3}$, so
$(1-x)y''+xy'- y=c_1(1-x+x-1)+c_2(x-x)+\dst {4(1-x)\over x^3}-{2\over
x}-{2\over x}= {4(1-x-x^2)\over x^3}$
\part{h}
If $y=\dst{c_1\sin x+c_2 \cos x\over x^{1/2}}+4x+8$
then
$y'=\dst{c_1\cos x-c_2 \sin x\over x^{1/2}}
-{c_1\sin x+c_2 \cos x\over 2x^{3/2}}+4$ and
$y''=-\dst{c_1\sin x+c_2 \cos x\over x^{1/2}}
-{c_1\sin x-c_2 \cos x\over x^{3/2}}+{3\over4}
{c_1\sin x+c_2 \cos x\over x^{5/2}}$, so
$\dst x^2y''+xy'+\left(x^2-{1\over4}\right)y=
c_1\left(-x^{-3/2}\sin x-x^{1/2}\cos x+
{3\over4}x^{-1/2}\sin x +x^{1/2}\cos x-\right.$
\mbox{}\\
$\dst\left.
{1\over2}x^{-1/2}\sin x+x^{3/2}\sin
x-{1\over4}x^{-1/2}
\sin x\right)+
\dst c_2\left(-x^{-3/2}\cos x+x^{1/2}\sin x
+{3\over4}x^{-1/2}\cos x \right.$
\mbox{}\\
$\dst\left.-x^{1/2}\sin x-{1\over2}x^{-1/2}\cos x+
x^{3/2}\cos
x-{1\over4}x^{-1/2}\cos x\right)+4x+\left(x^2-{1\over4}\right)
(4x+8)=
4x^3+8x^2+3x-2$.
\exer{1.2.4}
\part{a} If $y'=-xe^x$, then
$y=-xe^x+\int e^x\,dx+c=(1-x)e^x+c$,
and $y(0)=1\Rightarrow 1=1+c$, so $c=0$ and $y=(1-x)e^x$.
\part{b}
If
$y'=x\sin x^2$, then
$y=-\dst{1\over2}\cos x^2+c$;
$\dst y\left({\sqrt{\pi\over2}}\right)=1 \Rightarrow 1=0+c$,
so $c=1$ and $y=1-\dst{1\over2}\cos x^2$.
\part{c} Write $y'=\tan x=\dst{\sin x\over\cos x}=-\dst{1\over\cos
x}{d\over dx}(\cos x)$. Integrating this yields $y=-\ln|\cos x|+c$;
$y(\pi/4)=3\Rightarrow 3=-\ln\left(\cos(\pi/4)\right)+c$, or
$3=\ln\sqrt2+c$, so $c=3-\ln\sqrt2$, so
$y=-\ln(|\cos x|)+3-\ln\sqrt2=3-\ln(\sqrt2|\cos x|)$.
\part{d} If $y''=x^4$, then $y'=\dst{x^5\over5}+c_1$; $y'(2)=-1
\Rightarrow\dst{32\over5}+c_1=-1\Rightarrow c_1=-\dst{37\over15}$,
so $y'=\dst{x^5\over5}-{37\over15}$. Therefore, $y=\dst{x^6\over30}
-{37\over15}(x-2)+c_2$; $y(2)=-1\Rightarrow\dst{64\over30}+c_2=-1
\Rightarrow c_2=-\dst{47\over15}$, so
$y=-\dst{47\over15}-{37\over5}(x-2)+{x^6\over30}$.
\enlargethispage{1in}
\part{e} (A) $\int xe^{2x}\,dx=\dst{xe^{2x}\over2}-{1\over2}
\int e^{2x}\,dx={xe^{2x}\over2}-{e^{2x}\over4}$. Therefore,
$y'=\dst{xe^{2x}\over2}-{e^{2x}\over4}+c_1$; $y'(0)=1\Rightarrow
-\dst{1\over4}+c_1={5\over4}\Rightarrow c_1=\dst{5\over4}$,
so $y'=\dst{xe^{2x}\over2}-{e^{2x}\over4}+{5\over4}$;
Using (A) again,
$y=\dst{xe^{2x}\over4}-{e^{2x}\over8}-{e^{2x}\over8}+{5\over4}x+c_2
={xe^{2x}\over4}-{e^{2x}\over4}+{5\over4}x+c_2$; $y(0)=7
\Rightarrow-\dst{1\over4}+c_2=7\Rightarrow c_2=\dst{29\over4}$, so
$y=\dst{xe^{2x}\over4}-{e^{2x}\over4}+{5\over4}x+{29\over4}$.
\part{f} (A) $\int x\sin x\,dx=-x\cos x+\int \cos x\,dx=-x\cos x+\sin
x$ and (B) $\int x\cos x\,dx=x\sin x-\int\sin x\,dx=x\sin x+\cos x$.
If $y''=-x\sin x$, then (A) implies that $y'=x\cos x-\sin x+c_1$;
$y'(0)=-3\Rightarrow c=-3$, so $y'=x\cos x-\sin x-3$. Now (B) implies
that $y=x\sin x+\cos x+\cos x-3x+c_2=x\sin x+2\cos x-3x+c_2$;
$y(0)=1\Rightarrow 2+c_2=1\Rightarrow c_2=-1$, so $y=x \sin x+2 \cos
x-3x-1$.
\part{g} If $y'''=x^2e^x$, then $y''=\int x^2e^x\,dx=x^2e^x-2\int
xe^x\,dx=x^2e^x-2xe^x+2e^x+c_1$; $y''(0)=3\Rightarrow
2+c_1=3\Rightarrow c_1=1$, so (A) $y''=(x^2-2x+2)e^x+1$. Since $\int
(x^2-2x+2)e^x\,dx=(x^2-2x+2)e^x-\int (2x-2)e^x\,dx
=(x^2-2x+2)e^x-(2x-2)e^x+2e^x=(x^2-4x+6)e^x$, (A) implies that
$y'=(x^2-4x+6)e^x+x+c_2$; $y'(0)=-2\Rightarrow 6+c_2=-2\Rightarrow
c_2=-8$, so (B) $y'=(x^2-4x+6)e^x+x-8$; Since $\int
(x^2-4x+6)e^x\,dx=(x^2-4x+6)e^x-\int (2x-4)e^x\,dx
=(x^2-4x+6)e^x-(2x-4)e^x+2e^x=(x^2-6x+12)e^x$, (B) implies that
$y=(x^2-6x+12)e^x+\dst{x^2\over2}-8x+c_3$; $y(0)=1\Rightarrow
12+c_3=1\Rightarrow c_3=-11$, so
$y=(x^2-6x+12)e^x+\dst{x^2\over2}-8x-11$.
\part{h} If $y'''=2+\sin2x$, then $y''=\dst2x-{\cos 2x\over 2}+c_1$;
$y''(0)=3\Rightarrow -\dst{1\over 2}+c_1=3\Rightarrow c_1=\dst{7\over
2}$, so $y''=\dst2x-{\cos 2x\over 2}+{7\over 2}$. Then
$y'=x^2-\dst{\sin 2x\over 4}+{7\over 2}x+c_2$; $y'(0)=-6\Rightarrow
c_2=-6$, so $y'=x^2-\dst{\sin 2x\over 4}+{7\over 2}x-6$. Then
$y=\dst{x^3\over 3}+{\cos 2x\over 8}+{7\over 4}x^2-6x+c_3$;
$y(0)=1\Rightarrow \dst{1\over 8}+c_3=1\Rightarrow c_3=\dst{7\over
8}$, so $\dst y={x^3\over3}+{\cos 2x\over8}+
{7\over4}x^2-6x+{7\over8}$.
\part{i} If $y'''=2x+1$, then $y''=x^2+x+c_1$; $y''(2)=7\Rightarrow
6+c_1=7\Rightarrow c_1=1$; so $y''=x^2+x+1$. Then $y'=\dst{x^3\over
3}+{x^2\over 2}+(x-2)+c_2$; $y'(2)=-4\Rightarrow \dst{14\over
3}+c_2=-4\Rightarrow c_2=-\dst{26\over 3}$, so $y'=\dst{x^3\over
3}+{x^2\over 2}+(x-2)-{26\over 3}$. Then $y=\dst{x^4\over
12}+{x^3\over 6}+{1\over 2}(x-2)^2-{26\over 3}(x-2)+c_3$;
$y(2)=1\Rightarrow \dst{8\over 3}+c_3=1\Rightarrow c_3=-\dst{5\over
3}$, so $\dst y={x^4\over 12}+{x^3\over6}+{1\over2} (x-2)^2-{26\over3}
(x-2)-{5\over3}$.
\exer{1.2.6}
\part{a} If $y=x^2(1+\ln x)$, then $y(e)=e^2(1+\ln e)=2e^2$;
$y'=2x(1+\ln x)+x=3x+2x\ln x$, so $y'(e)=3e+2e\ln e=5e$; (A)
$y''=3+2+2\ln x=5+2\ln x$. Now, $3xy'-4y=3x(3x+2x\ln x)-4x^2(1+\ln
x)=5x^2+2x^2\ln x=x^2y''$, from (A).
\part{b} If $y=\dst{x^2\over3}+x-1$, then $y(1)=\dst{1\over
3}+1-1={1\over 3}$; $y'=\dst{2\over 3}x+1$, so $y'(1)=\dst{2\over
3}+1={5\over 3}$; (A) $y''=\dst{2\over 3}$. Now
$x^2-xy'+y+1=x^2-\dst x\left({2\over 3}x+1\right)+{x^2\over
3}+x-1+1={2\over 3}x^2=x^2y''$, from (A).
\part{c} If $y=(1+x^2)^{-1/2}$, then $y(0)=(1+0^2)^{-1/2}=1$;
$y'=-x(1+x^2)^{-3/2}$, so $y'(0)=0$; (A) $y''=(2x^2-1)(1+x^2)^{-5/2}$.
Now,
$(x^2-1)y-x(x^2+1)y'=(x^2-1)(1+x^2)^{-1/2}-x(x^2+1)(-x)(1+x^2)^{-3/2}
=(2x^2-1)(1+x^2)^{-1/2}=y''(1+x^2)^2$ from (A), so
$y''=\dst{(x^2-1)y-x(x^2+1)y'\over (x^2+1)^2}$.
\part{d} If $y=\dst{x^2\over 1-x}$, then $y(1/2)=\dst{1/4\over
1-1/2}={1\over 2}$; $y'=-\dst{x(x-2)\over(1-x)^2}$, so
$y'(1/2)=\dst{(-1/2)(-3/2)\over(1-1/2)^2}=3$; (A) $y''=\dst{2\over
(1-x)^3}$. Now, (B) $x+y=x+\dst{x^2\over1-x}={x\over1-x}$ and (C)
$xy'-y=\dst-{x^2(x-2)\over(1-x)^2}-{x^2\over1-x}={x^2\over(1-x)^2}$.
From (B) and (C), $(x+y)(xy'-y)=\dst{x^3\over(1-x)^3}={x^3\over2}y''$,
so $y''=\dst{2(x+y)(xy'-y)\over x^3}$.
\exer{1.2.8}
\part{a}
$y=(x-c)^a$ is defined and $x-c=y^{1/a}$ on $(c,\infty)$;
moreover, $y'=a(x-c)^{a-1}=a\left(y^{1/a}\right)^{a-1}=ay^{(a-1)/a}$.
\part{b} if $a>1$ or $a<0$, then $y\equiv0$ is a solution of
(B) on $(-\infty,\infty)$.
\exer{1.2.10}
\part{a} Since $y'=c$ we must show that the right side of
(B) reduces to $c$ for all values of $x$
in some interval. If $y=c^2+cx+2c+1$,
\begin{eqnarray*}
x^2+4x+4y&=&x^2+4x+4c^2+4cx+8c+4\\
&=&x^2+4(1+c)x+4(c^2+2c+1)\\
&=&x^2+4(1+c)+2(c+1)^2=(x+2c+2)^2.
\end{eqnarray*}
Therefore, $\sqrt{x^2+4x+4y}=x+2c+2$ and the right side of
(B) reduces to $c$ if
$x>-2c-2$.
\part{b}
If $y_1=-\dst{x(x+4)\over4}$, then $y_1'=-\dst{x+2\over2}$
and $x^2+4x+4y=0$ for all $x$. Therefore, $y_1$ satisfies
(A) on $(-\infty,\infty)$.
\newpage
\thispagestyle{empty}
\setcounter{chapter}{2}
\pdfbookmark[0]{Chapter 2}{chapter:2}
\chaptertitle{First Order Equations}
\newsection{1}{First Order Equations}{Linear First Order Equations}
\subpdfbookmark{Section 2.1} {section:2.1}
\setcounter{section}{1}
\renewcommand{\thissection}
{\sectiontitle{\,LINEAR FIRST ORDER EQUATIONS}}
\thissection
\vspace{-20pt}
\exer{2.1.2}
$\dst{y'\over y}=-3x^2$;\quad $|\ln|y|=-x^3+k$;\quad $y=ce^{-x^3}$.
$y=ce^{-(\ln x)^2/2}$.
\exer{2.1.4}
$\dst{y'\over y}=-\dst{3\over x}$;\quad $\ln|y|=-3\ln|x|+k=-\ln|x|^3+k$;\quad
$y=\dst{c\over x^3}$.
\exer{2.1.6}
$\dst{y'\over y}=-\dst{1+x\over x}=-\dst{1\over x}-1$;\quad
$|\ln|y|=-\ln|x|-x+k$;\quad
$y=\dst{ce^{-x}\over x}$;\quad
$y(1)=1\Rightarrow
c=e$;\quad
$y=\dst{e^{-(x-1)}\over x}$.
\exer{2.1.8}
$\dst{y'\over y}=-\dst{1\over x}-\cot x$;
\quad $|\ln|y|=-\ln|x|-\ln|\sin x|+k=-\ln|x\sin x|+k$;\quad
$y=\dst{c\over x\sin x}$;\quad $y(\pi/2)=2\Rightarrow
c=\pi$;\quad $y=\dst{\pi\over x\sin x}$.
\exer{2.1.10}
$\dst{y'\over y}=-\dst{k\over x}$;\quad
$|\ln|y|=-k\ln|x|+k_1=\ln|x^{-k}|+k_1$;\quad
$y=c|x|^{-k}$;\quad
$y(1)=3\Rightarrow c=3$;\quad $y=3x^{-k}$.
\exer{2.1.12}
$\dst{y_1'\over y_1}=-3$;\quad $\ln|y_1|=-3x$;\quad
$y_1=e^{-3x}$;\quad $y=ue^{-3x}$;\quad
$u'e^{-3x}=1$;\quad $u'=e^{3x}$;\quad $u=\dst{e^{3x}\over3}+c$;\quad
$y=\dst{1\over3}+ce^{-3x}$.
\exer{2.1.14}
$\dst{y_1'\over y_1}=-2x$;\quad
$\ln|y_1|=-x^2$;\quad
$y_1=e^{-x^2}$;\quad
$y=ue^{-x^2}$;\quad
$u'e^{-x^2}=xe^{-x^2}$;\quad
$u'=x$;\quad
$u=\dst{x^2\over2}+c$;\quad
$y=e^{-x^2}\dst\left({x^2\over2}+c\right)$.
\exer{2.1.16}
$\dst{y_1'\over y_1}=-{1\over x}$;\quad
$\ln|y_1|=-\ln|x|$;\quad $y_1=\dst{1\over x}$;\quad $y=\dst{u\over
x}$;\quad
$\dst{u'\over x}=\dst{7\over x^2}+3$;\quad $u'=\dst{7\over
x}+3x$;\quad
$u=7\ln|x|+\dst{3x^2\over2}+c$;\quad $y=\dst{7\ln|x|\over
x}+\dst{3x\over2}+\dst{c\over x}$.
\medskip
\smallskip
\centerline{5}
\exer{2.1.18}
$\dst{y_1'\over y_1}=-{1\over x}-2x$; \quad
$\ln|y_1|=-\ln|x|-x^2$;\quad $y_1=\dst{e^{-x^2}\over x}$;\quad
$y=\dst{ue^{-x^2}\over x}$;\quad
$\dst{u'e^{-x^2}\over x}=x^2e^{-x^2}$;\quad
$u'=x^3$;\quad
$u=\dst{x^4\over4}+c$;\quad
$y=e^{-x^2}\dst{\left({x^3\over4}+{c\over x}\right)}$.
\exer{2.1.20}
$\dst{y_1'\over y_1}=-\tan x$;\quad
$\ln|y_1|=\ln|\cos x|$;\quad
$y_1=\cos x$;\quad $y=u\cos x$;\quad $u'\cos x=\cos x$;\quad
$u'=1$;\quad $u=x+c$;\quad $y=(x+c)\cos x$.
\exer{2.1.22}
$\dst{y_1'\over y_1}=\dst{4x-3\over(x-2)(x-1)}=\dst{5\over
x-2}-\dst{1\over x-1}$;\quad
$\ln|y_1|=5\ln|x-2|-\ln|x-1|=\dst{\ln\left|(x-2)^5\over
x-1\right|}$;\quad
$y_1=\dst{(x-2)^5\over x-1}$;\quad
$y=\dst{u(x-2)^5\over x-1}$;\quad
$\dst{u'(x-2)^5\over x-1}=\dst{(x-2)^2\over x-1}$;\quad
$u'=\dst{1\over (x-2)^3}$;\quad
$u=-\dst{1\over 2}\dst{1\over(x-2)^2} +c$;\quad $y=-\dst{1\over
2}{(x-2)^3\over (x-1)}+c\dst{(x-2)^5\over (x-1)}$.
\exer{2.1.24}
$\dst{y_1'\over y_1}=-\dst{3\over x}$;\quad
$\ln|y_1|=-3\ln|x|=\ln|x|^{-3}$;\quad
$y_1=\dst{1\over x^3}$;\quad
$y=\dst{u\over x^3}$;\quad
$\dst{u'\over x^3}=\dst{e^x\over x^2}$;\quad
$u'=xe^x$;\quad
$u=xe^x-e^x+c$;\quad
$y=\dst{e^x\over x^2}-\dst{e^x\over x^3}+\dst{c\over x^3}$.
\exer{2.1.26}
$\dst{y_1'\over y_1}=-\dst{4x\over1+x^2}$;\quad
$\ln|y_1|=-2\ln(1+x^2)=\ln(1+x^2)^{-2}$;\quad
$y_1=\dst{1\over(1+x^2)^2}$;\quad
$y=\dst{u\over(1+x^2)^2}$;\quad
$\dst{u'\over(1+x^2)^2}={2\over(1+x^2)^2}$;\quad
$u'=2$;\quad
$u=2x+c$;\quad
$y=\dst{2x+c\over(1+x^2)^2}$;\quad
$y(0)=1\Rightarrow c=1$;\quad
$y=\dst{2x+1\over(1+x^2)^2}$.
\exer{2.1.28}
$\dst{y_1'\over y_1}=-\cot x$;\quad
$\ln|y_1|=-\ln|\sin x|$;\quad
$y_1=\dst{1\over\sin x}$;\quad
$y=\dst{u\over\sin x}$;\quad
$\dst{u'\over\sin x}=\cos x$;\quad
$u'=\sin x\cos x$;\quad
$u=\dst{\sin^2x\over2}+c$;\quad
$y=\dst{\sin x\over2}+c\csc x$;\quad
$y(\pi/2)=1\Rightarrow c={1\over2}$;\quad
$y=\dst{1\over2}(\sin x+\csc x)$.
\exer{2.1.30}
$\dst{y_1'\over y_1}=-\dst{3\over x-1}$;\quad
$\ln|y_1|=-3\ln|x-1|
=\ln|x-1|^{-3}$;\quad
$y_1=\dst{1\over(x-1)^3}$;\quad
$y=\dst{u\over(x-1)^3}$;\quad
$\dst{u'\over(x-1)^3}=
\dst{1\over(x-1)^4}+\dst{\sin
x\over(x-1)^3}$;\quad
$u'=\dst{1\over x-1}+\sin x$;\quad
$u=\ln|x-1|-\cos x+c$;\quad
$y=\dst{\ln|x-1|-\cos x+c\over(x-1)^3}$;\quad
$y(0)=1\Rightarrow c=0$;\quad
$y=\dst{\ln|x-1|-\cos x\over(x-1)^3}$.
\exer{2.1.32}
$\dst{y_1'\over y_1}=-\dst{2\over x}$;\quad
$\ln|y_1|=2\ln|x|=\ln(x^2)$;\quad
$y_1=x^2$;\quad
$y=ux^2$;\quad
$u'x^2=-x$;\quad
$u'=-\dst{1\over x}$;\quad
$u=-\ln|x|+c$;\quad
$y=x^2(c-\ln|x|)$;\quad
$y(1)=1\Rightarrow c=1$;\quad
$y=x^2(1-\ln x)$.
\exer{2.1.34}
$\dst{y_1'\over y_1}=-\dst{3\over x-1}$;\quad
$\ln|y_1|=-3\ln|x-1|=\ln|x-1|^{-3}$;\quad
$y_1=\dst{1\over(x-1)^3}$;\quad
$y=\dst{u\over(x-1)^3}$;\quad
$\dst{u'\over(x-1)^3}=\dst{1+(x-1)\sec^2x\over(x-1)^4}$;\quad
$u'=\dst{1\over x-1}+\sec^2x$;\quad
$u=\ln|x-1|+\tan x+c$;\quad
$y=\dst{\ln|x-1|+\tan x+c\over(x-1)^3}$;\quad
$y(0)=-1\Rightarrow c=1$;\quad
$y=\dst{\ln|x-1|+\tan
x+1\over(x-1)^3}$.
\exer{2.1.36}
$\dst{y_1'\over y_1}=\dst{2x\over x^2-1}$;\quad
$\ln|y_1|=\ln|x^2-1|$;\quad
$y_1=x^2-1$;\quad
$y=u(x^2-1)$;\quad
$u'(x^2-1)=x$;\quad
$u'=\dst{x\over x^2-1}$;\quad
$u=\dst{1\over2}\ln|x^2-1|+c$;\quad
$y=(x^2-1)\left(\dst{1\over2}\ln|x^2-1|+c\right)$;\quad
$y(0)=4\Rightarrow c=-4$;\quad
$y=(x^2-1)\left(\dst{1\over2}\ln|x^2-1|-4\right)$.
\exer{2.1.38}
$\dst{y_1'\over y_1}=-2x$;\quad
$\ln|y_1|=-x^2$;\quad
$y_1=e^{-x^2}$;\quad
$y=ue^{-x^2}$;\quad
$u'e^{-x^2}=x^2$;\quad
$u'=x^2e^{x^2}$;\quad
$u=c+\dst{\int_0^xt^2e^{t^2}\,dt}$;\quad
$y=e^{-x^2}\left(c+\dst{\int_0^xt^2e^{t^2}\,dt}\right)$;\quad
$y(0)=3\Rightarrow c=3$;\quad
$y=e^{-x^2}\left(3+\dst{\int_0^xt^2e^{t^2}\,dt}\right)$.
\exer{2.1.40}
$\dst{y_1'\over y_1}=-1$;\quad
$\ln|y_1|=-x$;\quad
$y_1=e^{-x}$;\quad
$y=ue^{-x}$;\quad
$u'e^{-x}=\dst{e^{-x}\tan x\over x}$;\quad
$u'=\dst{\tan x\over x}$;\quad
$u=c+\dst{\int_1^x\dst{\tan t\over t}\,dt}$;\quad
$y=e^{-x}\left(c+\dst{\int_1^x\dst{\tan t\over t}\,dt}\right)$;\quad
$y(1)=0\Rightarrow c=0$;\quad
$y=e^{-x}\dst{\int_1^x\dst{\tan t\over t}\,dt}$.
\exer{2.1.42}
$\dst{y_1'\over y_1}=-1-{1\over x}$;\quad
$\ln|y_1|=-x-\ln|x|$;\quad
$y_1=\dst{e^{-x}\over x}$;\quad
$y=\dst{ue^{-x}\over x}$;\quad
$\dst{u'e^{-x}\over x}=\dst{e^{x^2}\over x}$;\quad
$u'=e^xe^{x^2}$;\quad
$u=c+\dst{\int_1^xe^te^{t^2}\,dt}$;\quad
$y=\dst{{e^{-x}\over x}\left(c+\int_1^xe^te^{t^2}\,dt\right)}$;\quad
$y(1)=2\Rightarrow c=2e$;\quad
$y=\dst{{1\over
x}\left(2e^{-(x-1)}+e^{-x}\int_1^xe^te^{t^2}\,dt\right)}$.
\exer{2.1.44}
{\bf (b)} Eqn. (A) is equivalent to
$$
y'-{2\over x}=-{1\over x}
\eqno{\rm (B)}
$$
on $(-\infty,0)$ and $(0,\infty)$. Here
$\dst{y_1'\over y_1}=\dst{2\over x}$;\quad $\ln|y_1|=2\ln|x|$;\quad
$y_1=x^2$;\quad
$y=ux^2$;\quad $u'x^2=-\dst{1\over x}$;\quad $u'=-\dst{1\over
x^3}$;\quad
$u=\dst{1\over2x^2}+c$, so $y=\dst{1\over2}+cx^2$ is the general
solution of (A) on $(-\infty,0)$ and $(0,\infty)$.
{\bf (c)}
From the proof of \part{b}, any solution of (A) must be of the form
$$
y=\left\{\begin{array}{ll}\dst{{1\over2}+c_1x^2}, &x
\ge 0,\\[2\jot]
\dst{{1\over2}+c_2x^2}, &x < 0,\end{array}\right.
\eqno{\rm (C)}
$$
for $x\ne0$, and any function of the form (C)
satisfies (A) for $x\ne0$. To complete the proof we
must show that any function of the form (C) is
differentiable and satisfies (A) at $x=0$. By
definition,
$$
y'(0)=\lim_{x\to0}{y(x)-y(0)\over x-0}=\lim_{x\to0}{y(x)-1/2\over
x}
$$
if the limit exists. But
$$
{y(x)-1/2\over x}=\left\{\begin{array}{cl} c_1x,&x>0\\
c_2x,&x<0,\end{array}\right.
$$
so $y'(0)=0$. Since $0y'(0)-2y(0)=0\cdot0-2(1/2)=-1$, any function of
the form (C) satisfies (A) at