forked from jamesfang8499/math3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
5.tex
2844 lines (2467 loc) · 101 KB
/
5.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{函数的奇偶性}
在研究二次函数之前,我们先来研究函数的一个性
质——函数的奇偶性.
我们先来描绘$y=x^2$的图象.
先作出下面的数值表:
\begin{center}
\begin{tabular}{c|ccccccccccc}
\hline
$x$ &$\cdots$& $-2$ & $-1.6$ & $-1$ & $-0.5$ & $0$ & $0.5$ & $1$ & $1.5$ & $2$ & $\cdots$ \\
\hline
$y$ &$\cdots$ & $4$ & $2.25$ & $1$ & $0.25$ & $0$ & $0.25$ & $1$ & $2.25$ & $4$ & $\cdots$\\
\hline
\end{tabular}
\end{center}
用表里各组对应值作为点的坐标,作出各个点,然后用
平滑的曲线把它们连结起来,就得出$y=x^2$的图象(图5.1),
这个图象叫做抛物线.函数$y=x^2$的图象,以后简称为抛物线
$y=x^2$.
\begin{figure}[htp]
\centering
\begin{tikzpicture}[>=latex, scale=.8]
\draw[->](-3,0)--(3,0)node[right]{$x$};
\draw[->](0,-1)--(0,5)node[right]{$y$};
\foreach \x in {-2,-1,1,2}
{
\draw (\x,0)node[below]{$\x$}--(\x, 0.1);
}
\foreach \x in {1,2,...,4}
{
\draw (0,\x)node[left]{$\x$}--(.1,\x);
}
\draw[domain=-2:2, samples=100, very thick] plot(\x,{\x*\x});
\end{tikzpicture}
\caption{}
\end{figure}
从上面表格中可以看到这个函数有一个特点:当自变量
取绝对值相等而符号相反的两个值时(如$x$取1.5和$-1.5$),
它们对应的函数值相等($y$都取2.25),这说明$y$轴垂直平分以
点$(x,f(x))$, $(-x,f(-x))$为端点的线段,换句话说,点
$(x,f(x))$, $(-x,f(x))$是关于$y$轴对称的,因此抛物线$y=x^2$
是关于$y$轴对称的.
我们把具有这种特征
的函数叫做偶函数.$f(x)$
是偶函数的标志是:当自
变量$x$取一对互为相反
数的值时,函数的值不
变,就有$f(x)=f(-x)$.
一般地说,对于函数
$f(x)$, 设$x$和$-x$都属于函
数的定义域,如果
\[f(-x)=f(x)\]
那么函数$f(x)$叫做\textbf{偶函数},偶函数的图象关于$y$轴对称.
我们再来画函数$y=\frac{1}{8}x^3$的图象
先作出下面的数值表:
\begin{center}
\begin{tabular}{c|ccccccccccc}
\hline
$x$ &$\cdots$&$-4$&$-3$&$-2$&$-1$&0&1&2&3&4&$\cdots$\\
\hline
$y$ &$\cdots$&$-8$&$-3\tfrac{3}{8}$&$-1$&$-\tfrac{1}{8}$&0&$\tfrac{1}{8}$&1&$3\tfrac{3}{8}$&8&$\cdots$\\
\hline
\end{tabular}
\end{center}
根据表里这些对应值,作出函数$y=x^3$的图象如图
5.2.这个图象称为立方抛物线.
\begin{figure}[htp]
\centering
\begin{tikzpicture}[>=latex, scale=.5]
\draw[->](-5,0)--(5,0)node[right]{$x$};
\draw[->](0,-9)--(0,9)node[right]{$y$};
\foreach \x in {1,2,3,4}
{
\draw (\x,0)node[below]{$\x$}--(\x, 0.1);
}
\foreach \x in {-2,-4}
{
\draw (\x,0)node[above]{$\x$}--(\x, -0.1);
}
\foreach \x in {-8,-6,...,-2,2,4,...,8}
{
\draw (0,\x)node[left]{$\x$}--(0.1,\x);
}
\node at (-.5,-.5){$O$};
\draw[domain=-4:4, samples=100, very thick] plot(\x,{\x*\x*\x/8});
\end{tikzpicture}
\caption{}
\end{figure}
从上面表格中可以看到这个函数也有一个特征:因为,
$\frac{1}{8}(-x)^3=-\frac{1}{8}x^3$, 所以当自变量取两个互为相反数的值时,
对应的函数值也是互为相反数.所以如果点$(x,f(x))$在函
数的图象上,那么必有另一点$(-x,-f(x))$也在函数的图象
上,而原点恰是以$(x,f(x))$, $(-x,-f(x))$为端点的线段
的中点,换句话说,点$(x,f(x))$, $(-x,-f(x))$是关于原
点对称的.因此立方抛物线
$y=\frac{1}{8}x^3$是关于原点对称的,我
们把具有这种特征的函数叫做
奇函数,$f(x)$是奇函数的标志
是:当自变量$x$取一对互为相
反数的值时,函数的值也是
互为相反数,就是$f(-x)=-f(x)$.
一般地说,对于函数$f(x)$, 设$x$与$-x$都属于函数的定义
域,如果$$f(-x)=-f(x)$$ 那么函数$f(x)$叫做\textbf{奇函数}.奇函数的图象关于原点对称.
考虑一个函数是偶函数、奇函数,或者既不是偶函数又
不是奇函数,叫做研究函数的奇偶性,对于一个奇函数或者
偶函数,要了解它的性质和图象,只要了解当自变量取正
值时的性质和图象就可以了.例如,要作函数$y=\frac{1}{8}x^3$的图
象,因为它是奇函数,所以只要作出自变量取正值时的函数
图象,就可以利用奇函数的图象必定关于原点对称这一特点,
作出自变量取负值时的图象.
\begin{example}
研究下列函数的奇偶性:
\[f(x)=x^4+x^2,\qquad f(x)=x^3+x,\qquad f(x)=x+1\]
\end{example}
\begin{solution}
\begin{enumerate}
\item 对于$f(x)=x^4+x^2$, 我们有:
\[f(-x)=(-x)^4+(-x)^2=x^4+x^2=f(x)\]
$\therefore\quad $函数$f(x)=x^4+x^2$是偶函数.
\item 对于$f(x)=x^3+x$, 我们有:
\[f(-x)=(-x)^3+(-x)=-(x^3+x)=-f(x)\]
$\therefore\quad $函数$f(x)=x^3+x$是奇函数.
\item 对于$f(x)=x+1$, 我们有:
\[f(-x)=-x+1\]
这里$f(-x)\ne f(x)$, 并且$f(-x)\ne -f(x)$, 所以函数$f(x)=
x+1$既不是偶函数又不是奇函数.
\end{enumerate}
\end{solution}
\begin{ex}
\begin{enumerate}
\item 研究下面函数的奇偶性:(其中$k,b$是常数)
\begin{multicols}{2}
\begin{enumerate}
\item $y=kx\quad (k\ne 0)$
\item $y=\frac{k}{x}\quad (k\ne 0)$
\item $y=kx+b\quad (k\ne 0)$
\item $y=\sqrt{1+x^2}$
\item $y=|x|$
\item $y=\sqrt[3]{x}$
\item $y=\sqrt{x}+1$
\item $y=x^2+x+1$
\end{enumerate}
\end{multicols}
\item 证明:
\begin{enumerate}
\item 两个偶函数的和是偶函数;
\item 两个奇函数的和是奇函数;
\item 两个偶函数的乘积是偶函数,
\item 两个奇函数的乘积是偶函数;
\item 偶函数与奇函数的乘积是奇函数.
\end{enumerate}
\end{enumerate}
\end{ex}
\subsection{函数$y=ax^2\; (a\ne 0)$的图象和性质}
在上一章里,我们研究了$x$的一次函数$y=ax+b$, 现在
我们要研究另一类重要的函数,这类函数的解析式是$x$的二
次式,我们把它叫做$x$的二次函数.
先看几个实例:
\begin{example}
一石块离地面高为$h$, 设其速度为零,自由地落
到地面,运动的时间为$t$, 如果不考虑空气的阻力,于是$h$与
$t$之间将有函数关系:
\begin{equation}
h=\frac{1}{2}gt^2
\end{equation}
这里$g$是重力加速度.
\end{example}
\begin{example}
农机厂第一个月水泵的产量为50(台),第三个月
的产量为$y$(台),与月平均增长
率之间的关系是:$y=50(1+x)^2$,即:
\begin{equation}
y=50x^2+100x+50
\end{equation}
\end{example}
\begin{example}
设在半径是20厘米的
圆面上,从中心挖去一个半径为$x$厘米的圆面(图5.3),剩下的圆
环面积是$y$平方厘米,那么变量$y$和$x$间有下面的函数关系:
\begin{equation}
y=400\pi-\pi x^2
\end{equation}
\end{example}
\begin{figure}[htp]
\centering
\begin{tikzpicture}[>=latex]
\draw [pattern=north east lines] (0,0) circle (1.5);
\draw (0,0)[fill=white] circle (1);
\draw[->] (0,0)node[below]{$O$}--node[left]{$x$}(45:1);
\draw (0,0) -- (15:1.5);
\end{tikzpicture}
\caption{}
\end{figure}
从上面这些例子可以看出,它们有一个共同特点,那就
是每一个函数关系中,等号右边都是自变量的二次式.这些
函数都可以用
\begin{equation}
y=ax^2+bx+c
\end{equation}
来表示,这里$a$是不等于零的实数,$b,c$是任意实数.
我们把函数$y=ax^2+bx+c\; (a\ne 0)$叫做$x$的二次函数.
下面我们先从最简单的情况开始研究,即研究在(5.4)中
取$b=0,c=0$的二次函数$y=ax^2\; (a\ne 0)$.
先来看$a>0$的情形.
我们已经在上一节和第三章中画过$y=x^2$和$y=\frac{1}{2}x^2$的图
象,现在把这两个图象和$y=2x^2$的图象都画在同一个坐标系
里.
先作下面的表:
\begin{center}
\begin{tabular}{c|ccccccccc}
\hline
$x$ &$\cdots$ & $-2$ & $-\tfrac{3}{2}$ & $-1$ & 0 & 1&$\tfrac{3}{2}$& 2&$\cdots$\\
\hline
$y=2x^2$ &$\cdots$ & 8&$\tfrac{9}{2}$ &2 & 0 & 2&$\tfrac{9}{2}$ &8&$\cdots$\\
$y=x^2$ &$\cdots$ & 4&$\tfrac{9}{4}$&1 & 0 & 1&$\tfrac{9}{4}$&4&$\cdots$\\
$y=\tfrac{1}{2}x^2$ &$\cdots$ & $\tfrac{9}{8}$&$\tfrac{1}{2}$ & 0 & $\tfrac{1}{2}$ & $\tfrac{9}{8}$&2&$\cdots$\\
\hline
\end{tabular}
\end{center}
\begin{figure}[htp]
\centering
\begin{tikzpicture}[>=latex]
\draw[->] (-3,0)--(3,0)node[right]{$x$};
\draw [->] (0,-1)--(0,8)node[right]{$y$};
\foreach \y in {1,2,...,7}
{
\draw (0,\y)--(.1,\y)node[right]{$\y$};
}
\foreach \x/\xtext in {-4/-2,-3/-\frac{3}{2},-2/-1,-1/-\frac{1}{2},1/\frac{1}{2},2/1,3/\frac{3}{2},4/2}
{
\draw (\x/2,0)node[below]{$\xtext$}--(\x/2,.1);
}
\draw [domain=-3:3, samples=100, very thick]plot(\x,{\x*\x*0.5});
\draw [domain=-2.2:2.2, samples=100, very thick]plot(\x,{\x*\x});
\draw [domain=-2:2, samples=100, very thick]plot(\x,{\x*\x*2});
\node at (-.25,.25){$O$};
\foreach \x in {.5,1,...,2}
{
\draw[dashed] (\x,0)--(\x,2*\x*\x);
}
\node at (2,8)[right]{$y=2x^2$};
\node at (2.5,5)[above]{$y=x^2$};
\node at (3,4.5)[right]{$y=\frac{1}{2}x^2$};
\end{tikzpicture}
\caption{}
\end{figure}
从这个表可以看到,对于同一个$x$值,函数$y=2x^2$所对应
的值是函数$y=x^2$所对应的值的2倍.所以要画出函数$y=2x^2$
的图象,可以用$y=x^2$的图象为基础.
除了让这图象上的原点不动外,其它每一点的纵坐标都
拉长到原来的2倍,这样得到的新的点集就是$y=2x^2$的图象.
作图时我们只描出图象上几个关于$y$轴对称的点,如上表所
示,然后用平滑的曲线把它们连接起来.
同理,要作出函数$y=\frac{1}{2}x^2$的图象,也可以用$y=x^2$的图
象为基础.除了让$y=x^2$的图象上的原点不动外,其它每一点
的纵标都压缩到原来的$\frac{1}{2}$,便得到$y=\frac{1}{2}x^2$的图象.作图时
我们只描出图象上关于$y$轴对称的点,如上表所示,然后用
平滑曲线把它们连接起来.这样,就得到这三个函数的图象如图5.4.
再来看$a<0$的情形:
例如,我们要画函数$y=-x^2$的图象,也可以在函数$y=x^2$
的图象的基础上来研究.
作下面的表:
\begin{center}
\begin{tabular}{c|ccccccccc}
\hline
$x$ &$\cdots$ & $-2$ & $-\tfrac{3}{2}$ & $-1$ & 0 & 1&$\tfrac{3}{2}$& 2&$\cdots$\\
\hline
$y=x^2$ &$\cdots$ & 4&$\tfrac{9}{4}$&1 & 0 & 1&$\tfrac{9}{4}$&4&$\cdots$\\
$y=-x^2$ &$\cdots$ & $-4$&$-\tfrac{9}{4}$&$-1$ & 0 & $-1$&$-\tfrac{9}{4}$&$-4$&$\cdots$\\
\hline
\end{tabular}
\end{center}
从这个表可以看到,对于同一个$x$值,函数$y=-x^2$所对
应的值,恰巧是函数$y=x^2$所对应的值的相反数,当$x$遍取一
切实数值时,把函数$y=x^2$图象上的每一点纵坐标改为它的
相反数就得到函数$y=-x^2$的图象上的点,而以$(x,-x^2)$和
$(x,x^2)$为坐标的点是关于$x$轴的对称点,因此把图象$y=x^2$沿
$x$轴折转过来就可以得到$y=-x^2$的图象.$y=-x^2$的图象是在
$x$轴下方,开口向下(图5.5).
同样,从函数$y=2x^2$和$y=4x^2$的图象可得出函数$y=
-2x^2$和$y=-4x^2$的图象(图5.6).这些图象在x轴下方,开
口向下.
\begin{figure}[htp]\centering
\begin{minipage}[t]{0.48\textwidth}
\centering
\begin{tikzpicture}[>=latex, scale=.6]
\draw[->] (-4,0)--(4,0)node[right]{$x$};
\draw [->] (0,-8.5)--(0,8.5)node[right]{$y$};
\foreach \x in {-3,-2,-1,1,2,3}
{
\draw (\x,0)node[below]{$\x$}--(\x,.2);
}
\draw [domain=-2.7:2.7, samples=100, dashed, very thick]plot(\x,{\x*\x});
\draw [domain=-2.7:2.7, samples=100, very thick]plot(\x,{-\x*\x});
\node at (.4,-.4){$O$};
\node at (2.5,6.25)[right]{$y=x^2$};
\node at (2.5,-6.25)[right]{$y=-x^2$};
\end{tikzpicture}
\caption{}
\end{minipage}
\begin{minipage}[t]{0.48\textwidth}
\centering
\begin{tikzpicture}[>=latex, scale=.6]
\draw[->] (-4,0)--(4,0)node[right]{$x$};
\draw [->] (0,-8)--(0,8)node[right]{$y$};
\foreach \y in {-8,-7,...,-1,1,2,...,7}
{
\draw (0,\y)--(.1,\y)node[right]{$\y$};
}
\foreach \x in {-3,-2,-1,1,2,3}
{
\draw (\x,0)node[below]{$\x$}--(\x,.2);
}
\draw [domain=-3:3, samples=100, very thick, dashed]plot(\x,{\x*\x*0.5});
\draw [domain=-2:2, samples=100, very thick, dashed]plot(\x,{\x*\x*2});
\draw [domain=-3:3, samples=100, very thick]plot(\x,{-\x*\x*0.5});
\draw [domain=-2:2, samples=100, very thick]plot(\x,{-\x*\x*2});
\node at (-.4,.4){$O$};
\node at (2,8)[right]{$y=2x^2$};
\node at (3,4.5)[right]{$y=\frac{1}{2}x^2$};
\node at (2,-8)[right]{$y=-2x^2$};
\node at (3,-4.5)[right]{$y=-\frac{1}{2}x^2$};
\end{tikzpicture}
\caption{}
\end{minipage}
\end{figure}
总结上面这两种情况,我们知道函数$y=ax^2$的图象是一
条抛物线.
从图象上我们能看到二次函数$y=ax^2$的下面一些性质:
\begin{blk}{性质1}
抛物线$y=ax^2$可向$x$轴左右方向无限延伸.这就是说
函数$y=ax^2$的定义域为实数集$\mathbb{R}$.
\end{blk}
\begin{blk}{性质2}
抛物线$y=ax^2$在$a>0$时,在$x$轴上方且在$y$轴的左
右两侧同时向上无限延伸,这就是说函数$y=ax^2$在$a>0$时,
函数值域为非负实数,即$\mathbb{R}^{+}\cup \{0\}$; 在$a<0$时,抛物线
$y=ax^2$在$x$轴下方且在y轴两侧同时向下无限延伸,这就是说
函数$y=ax^2$在$a<0$时,函数值域为非正实数,即$\mathbb{R}^{-}\cup \{0\}$.
\end{blk}
\begin{blk}{性质3}
抛物线$y=ax^2$在$a>0$时开口向上,在$a<0$时开口
向下,且$|a|$越大开口就越小.
\end{blk}
\begin{blk}{性质4}
抛物线$y=ax^2$关于$y$轴对称,这就是说函数$y=ax^2$是
个偶函数,事实上这个性质是可以证明的,即由于$f(-x)=
a(-x)^2=ax^2=f(x)$, 故函数$y=ax^2$是个偶函数.我们把$y$轴称
为抛物线$y=ax^2$的对称轴,其方程是$x=0$.
\end{blk}
\begin{blk}{性质5}
抛物线$y=ax^2$当$a>0$时,图象在$(-\infty,0)$是下
降的,在$(0,+\infty)$是上升的.这就是说函数$y=ax^2$当$a>0$
时,在$(-\infty,0)$是递减的;在$(0,+\infty)$是递增的(图5.7).
抛物线$y=ax^2$当$a<0$时,图象在$(-\infty,0)$是上升的,
在$(0,+\infty)$是下降的,这就是说函数$y=ax^2$当$a<0$时,
在$(-\infty,0)$是递增的;在$(0,+\infty)$是递减的(图5.8).
\end{blk}
\begin{figure}[htp]\centering
\begin{minipage}[t]{0.48\textwidth}
\centering
\begin{tikzpicture}[>=latex, scale=.7]
\draw[->] (-3.5,0)--(3.5,0)node[right]{$x$};
\draw [->] (0,-1)--(0,5)node[right]{$y$};
\draw [domain=-3:3, samples=100, very thick]plot(\x,{\x*\x*0.5});
\node at (2.5,4.5)[above]{$y=ax^2,\; (a>0)$};
\node at (.3,-.3){$O$};
\end{tikzpicture}
\caption{}
\end{minipage}
\begin{minipage}[t]{0.48\textwidth}
\centering
\begin{tikzpicture}[>=latex, scale=.7]
\draw[->] (-3.5,0)--(3.5,0)node[right]{$x$};
\draw [->] (0,-5)--(0,1)node[right]{$y$};
\draw [domain=-3:3, samples=100, very thick]plot(\x,{-\x*\x*0.5});
\node at (2.5,-4.5)[below]{$y=ax^2,\; (a<0)$};
\node at (-.3,.3){$O$};
\end{tikzpicture}
\caption{}
\end{minipage}
\end{figure}
事实上,这个性质是可以证明的,我们只证$a>0$的情
况,$a<0$的情况留给同学们自己证明.
证明:函数 $y=ax^2$当$a>0$时,在$(-\infty,0)$是递减的,在$(0,+\infty)$是递增的.
\begin{proof}
\begin{enumerate}
\item 设$x_1,x_2\in(-\infty,0)$且$x_1<x_2$,则
\[\begin{split}
f(x_2)-f(x_1)&=ax^2_2-ax^2_1=a(x^2_2-x^2_1)\\
&=a(x_2-x_1)(x_2+x_1)
\end{split}\]
$\because \quad x_1,x_2\in(-\infty,0)$,$\therefore\quad x_1<0,\; x_2<0$
$\therefore\quad x_1+x_2<0$,又$a>0$,$x_2-x_1>0$
$\therefore\quad a(x_2-x_1)(x_2+x_1)<0$,则$f(x_2)<f(x_1)$
$\therefore\quad f(x)$在$(-\infty,0)$上递减.
\item 设$x_1,x_2\in(0,+\infty)$且$x_1<x_2$,则
\[f(x_2)-f(x_1)=a(x_2-x_1)(x_2+x_1)>0\]
$\therefore\quad f(x_1)<f(x_2)$
$\therefore\quad f(x)$在$(0,+\infty)$上递增.
\end{enumerate}
这样,在$a>0$的情况下,函数$y=ax^2$在$(-\infty,0)$上递减,而在$(0,+\infty)$上递增.
\end{proof}
\begin{blk}{性质6}
对称轴和抛物线的交点叫做抛物线的顶点.抛物线$y=ax^2$的顶点是原点$(0,0)$.这就是说,
有序数对$(0,0)$适合关系$y=ax^2$.
\end{blk}
\begin{blk}{性质7}
抛物线$y=ax^2$的顶点的特点是:曲线由下降通过它转变到上升$(a>0)$,或者曲线由上升通过它转变到下降的一点$(a<0)$,相应地函数$f(x)=ax^2$($a>0$或$a<0$),在顶点横坐标$x_0=0$的左邻递减(递增),但是在$x_0=0$的右邻改为递增(递减),$x_0=0$是$f(x)=ax^2$在点$x_0=0$的邻近取极小
(大)值的一点,我们称点$x_0=0$是$f(x)=ax^2$的一个极小(大)
点,$f(0)=0$叫做$f(x)=ax^2$在极小(大)点$x_0=0$的极小(大)值.
\end{blk}
在这里需要明确的是,极值都是函数由递增转到递减,或
由递减转到递增的那一点取得的,而函数的最大值或最小
值,仅仅指的是函数值的最大或最小,并不要求由递增到递
减或由递减到递增的转变条件.
由性质5知道,二次函数$y=ax^2$,仅有一个极值点$x_0=0$,
在这种情形下,二次函数在点$x_0=0$的极值$f(0)=0$,与它
的最大值或最小值是一致的.事实上,当$a>0$时,$y=ax^2$对
于一切$x\in(-\infty,+\infty)$, 都有$f(x)=ax^2\ge 0$, 所以$f(0)=0$
是最小值;当$a<0$时,$y=ax^2$对于一切$x\in(-\infty,+\infty)$, 都
有$f(x)=ax^2\le 0$, 所以$f(0)=0$是最大值.对于二次函数,我
们常用实数平方不小零这个原理来求一般二次函数的极值
点和极值(也是二次函数的最值).
从以上讨论可以看到,对抛物线$y=ax^2$主要要掌握三件
东西:对称轴、顶点、开口方向,即$a$的正负.而
这三件东西又都和二次函数的极值点、极值有关,顶点的坐
标确定后,对称轴方程和极值点也就随之求出,故顶点位置
是个关键.
最后我们要指出,上面我们是由抛物线$y=ax^2$的特点来
看二次函数$y=ax^2$的性质的,但今后等我们逐步地学到了更
多的函数性质后,我们应该有意识地学会先研究函数的性
质,再由函数的性质去把握函数图象的大致形状,最后用描
点法画出图象,这时所画的函数图象就较为精确了.
\begin{ex}
\begin{enumerate}
\item 设从固定的半径$R$的圆板上,挖掉半径为$r$的同心圆板,
问所剩圆环面积$S$与$r$之间的关系是什么?
\item 用16m长的篱笆,围成一个一边靠墙的矩形养鸡场,如
果与墙垂直的一边长是$x$m,面积是$y{\rm m}^2$, 则$x$与$y$之间
有什么关系?
\item 用一块矩形空地来做花圃,这块地长20m,宽15m,
如在四周留出宽度都是$x$米的小路,中间余下种花的空
地面积是$y{\rm m}^2$, 则$y$与$x$之间有什么关系?
\item 汽车在前8秒钟内以匀加速度$a=0.8{\rm m/s}^2$行驶.
\begin{enumerate}
\item 利用公式$s=\frac{1}{2}at^2$, 求$t=3$(s),$t=5.5$(s), $t=2.5$(s) 时所行的路程$s$(m);
\item 画出$s$和$t$之间函数关系的图象;
\item 根据图象,求汽车走5m、10m、15m所需时间.
\end{enumerate}
\item
在坐标纸上画出函数$y=x^2$图象:
\begin{enumerate}
\item 根据图象,求当$x=1.5$; $x=2.3$; $x=-1.4$时,$y$
的值(精确到0.1);
\item 根据图象,求当$y=2$; $y=3$; $y=4.5$时,对应
的$x$的值(精确到0.1);
\item 利用图象求$\sqrt{5}$, $\sqrt{7}$的值(精确到0.1).
\end{enumerate}
\item 在同一坐标系里作以下函数的图象:
$$y=3x^2,\qquad y=3x^2,\qquad y=-3x^2,\qquad y=-\frac{1}{3}x^2$$
这些图象有哪些相同的地方?哪些不同的地方?
\item 试证当$a<0$时,二次函数$y=ax^2$在$(-\infty,0)$上递增,
而在$(0,+\infty)$上递减.
\item 证明抛物线$y=ax^2$与抛物线$y=x^2$是位似形.
\end{enumerate}
\end{ex}
\subsection{函数$y=ax^2+bx+c\; (a\ne 0)$的图象}
\subsubsection{函数$y=ax^2+c\; (a\ne 0)$的图象}
为确定起见,假设$c>0$, 从解析式$y=ax^2+c$和$y=ax^2$
明显地看出,对于自变量的相同值,$y=ax^2+c$的对应值,
总可以由$y=ax^2$的对应值加上$c$得到,这表示$y=ax^2+c$的图
象上的一切点比抛物线$y=ax^2$上具有相同横坐标的点高出$c$
个单位.因此,$y=ax^2+c$的图象,可以由抛物线$y=ax^2$沿着$y$
轴向上平移$c$个单位得到.如果$c<0$, 那么$y=ax^2+c$的图象是
由抛物线$y=ax^2$, 沿着$y$轴向下平移$|c|$个单位得到.
例如,我们把函数$y=2x^2$的图象向上移动1个单位,就
可以得到函数$y=2x^2+1$的图象;向下移动3个单位,就可
以得到函数$y=2x^2-3$的图象.
所以函数$y=ax^2+c$的图象仍旧是一条抛物线.当$a>0$时,
开口向上;$a<0$时,开口向下,对称轴方程是$x=0$($y$轴为
对称轴);顶点坐标是$(0,c)$. 当$a>0$时,在$x=0$处取得
$y_{\min}=c$.当$a<0$时,在$x=0$处取得$y_{\max}=c$(注:以后我们用
$y_{\min}$表示$y$的极小值;用$y_{\max}$表示$y$的极大值).
我们从图形的平移观点确定了$y=kx+b$的图象是一条平
行于直线$y=kx$的直线,也确定了$y=ax^2+c$的图象是抛物线,
它的顶点是$(0,c)$.更一般的结论是:
函数$y=f(x)+b$的图象是由$y=f(x)$的图象沿$y$轴平移而
来的,若$b>0$, 则向上平移$b$个单位.若$b<0$, 则向下平移
$|b|$个单位.
\subsubsection{函数$y=a(x+m)^2$的图象}
例如函数$y=\frac{1}{4}(x+2)^2$, $y=\frac{1}{4}(x-2)^2$都是这种类型
的函数.
我们把上面两个函数的图象与$y=\frac{1}{4}x^2$比较.分别列表如下:
\begin{center}
\begin{tabular}{c|ccccccccccc}
\hline
$x$ & $-5$& $-4$& $-3$& $-2$& $-1$& 0& 1& 2& 3& 4& 5\\
\hline
$y=\tfrac{1}{4}x^2$ & $6\tfrac{1}{4}$ & $4$ & $2\tfrac{1}{4}$ & $1$ & $\tfrac{1}{4}$ & $0$ & $\tfrac{1}{4}$ & $1$ & $2\tfrac{1}{4}$ &4&$6\tfrac{1}{4}$\\
$y=\tfrac{1}{4}(x+2)^2$& $2\tfrac{1}{4}$ & $1$ & $\tfrac{1}{4}$ & 0& $\tfrac{1}{4}$ & 1& $2\tfrac{1}{4}$ &4 & $6\tfrac{1}{4}$ & 9& $12\tfrac{1}{4}$\\
$y=\tfrac{1}{4}(x-2)^2$& $12\tfrac{1}{4}$ & $9$ & $6\tfrac{1}{4}$ & $4$ & $2\tfrac{1}{4}$ & $1$ & $\tfrac{1}{4}$ & $0$ & $\tfrac{1}{4}$ &1 & $2\tfrac{1}{4}$\\
\hline
\end{tabular}
\end{center}
\begin{figure}[htp]
\centering
\begin{tikzpicture}[>=latex, scale=.6]
\draw[->] (-7,0)--(7,0)node[right]{$x$};
\draw[->] (0,-1)--(0,9)node[right]{$y$};
\foreach \x in {-5,-4,...,-1,1,2,...,5}
{
\draw (\x,0)node[below]{$\x$}--(\x,.2);
}
\node at (.3,-.3){$O$};
\draw [domain=-5:5, samples=100, thick] plot(\x,{0.25*\x*\x});
\draw [domain=-7:3, samples=100, very thick] plot(\x,{0.25*(\x+2)*(\x+2)});
\draw (-2,-1)--(-2,8)node[above]{$x=-2$};
\node at (5,6.25)[right]{$y=\frac{1}{4}x^2$};
\node at (3,6.25)[above]{$y=\frac{1}{4}(x+2)^2$};
\end{tikzpicture}
\caption{}
\end{figure}
从表中可以看出,函数$y=\frac{1}{4}(x+2)^2$在自变量取某一值
$x=x_1$时,所对应的函数值$y=\frac{1}{4}(x+2)^2$, 恰巧和函数$y=\frac{1}{4}x^2$在自变量取值$x=x_1+2$时所对应的函数值$y=\frac{1}{4}(x+2)^2$
相同.这就告诉我们,在函数$y=\frac{1}{4}(x+2)^2$的图象上的点
$\left(x_1,\frac{1}{4}(x_1+2)^2\right)$与函数$y=\frac{1}{4}x^2$的图象上的点$\left(x_1+2,\frac{1}{4}(x_1+2)^2\right)$的纵坐标相等,因此这两点的连接线段平行$x$轴,
并且横坐标是$x_1$的点在横坐标是$x_1+2$的点的右边2个单位
处,利用这个关系,我们只需把函数$y=\frac{1}{4}x^2$的图象上的每一
点向左平移2个单位,就可以得到函数$y=\frac{1}{4}(x+2)^2$的图象
(图5.9).
同样,函数$y=\frac{1}{4}(x-2)^2$在自变量取某一值$x$时,所对
应的函数值$y=\frac{1}{4}(x_1-2)^2$, 恰巧和函数$y=\frac{1}{4}x^2$在自变量取
值$x=x_1-2$时,所对应的函数值$y=\frac{1}{4}(x_1-2)^2$相同,这就
告诉我们,在函数$y=\frac{1}{4}(x-2)^2$的图象上,横坐标是$x_1$的
点的纵坐标就等于函数$y=\frac{1}{4}x^2$的图象上横坐标是$x_1-2$的
点的纵坐标.利用这个关系,我们只需把函数$y=\frac{1}{4}x^2$的图象
上的每一点向右平移2个单位,就可以得到函数$y=\frac{1}{4}(x-2)^2$的图象(图
5.10).
\begin{figure}[htp]
\centering
\begin{tikzpicture}[>=latex, scale=.6]
\draw[->] (-5,0)--(9,0)node[right]{$x$};
\draw[->] (0,-1)--(0,9)node[right]{$y$};
\foreach \x in {-4,-3,...,-1,1,2,...,7}
{
\draw (\x,0)node[below]{$\x$}--(\x,.2);
}
\node at (.3,-.3){$O$};
\draw [domain=-5:5, samples=100, thick] plot(\x,{0.25*\x*\x});
\draw [domain=-3:7, samples=100, very thick] plot(\x,{0.25*(\x-2)*(\x-2)});
\draw (2,-1)--(2,8)node[above]{$x=2$};
\node at (5,6.25)[above]{$y=\frac{1}{4}x^2$};
\node at (7,6.25)[right]{$y=\frac{1}{4}(x-2)^2$};
\end{tikzpicture}
\caption{}
\end{figure}
由此可见,函数$y=a(x+m)^2$的
图象,由函数$y=ax^2$的图象沿$x$轴方向左右平移得到.
当$m>0$时,向左平移$m$个单位;当$m<0$时,向右平
移$|m|$个单位.
因此函数$y=a(x+m)^2$的图象,仍然是一条抛物线,$a>0$
时,开口向上;$a<0$时,开口向下,对称轴方程是$x=-m$,
顶点坐标是$(-m,0)$. 当$a>0$时,在$x=-m$处取得$y_{\min}=0$, 当$a<0$时,在$x=-m$处取得$y_{\max}=0$.
应当指出:
\begin{enumerate}
\item 上述的平移原理可以推广到一般情形.即函数$f(x+m)$的图象,是由函数$f(x)$的图象沿$x$轴方向左右平移得到.当
$m>0$时,向左平移$m$个单位;当$m<0$时,向右平移$|m|$个单位.
\item 具体作函数$y=a(x+m)^2$的图象时,不必先作出
$y=ax^2\; (a\ne 0)$的图象,再作相应的平移得到它,而是先确
定抛物线$y=a(x+m)^2$的顶点和对称轴,从顶点开始,左右
取对称的点,再用平滑曲线去连接.
\end{enumerate}
\begin{example}
作函数$y=2\left(x+2\frac{1}{2}\right)^2$的图象.
\end{example}
\begin{solution}
\begin{enumerate}
\item 顶点坐标$\left(-2\frac{1}{2},0\right)$, 对称方程$x=-2\frac{1}{2}$,
$a=2>0$, 开口向上.
\item 列表:
\begin{center}
\begin{tabular}{c|ccccccccccc}
\hline
$x$&$\cdots$& $-4\tfrac{1}{2}$ & $-4$ & $-3\tfrac{1}{2}$ & $-3$ & $-2\tfrac{1}{2}$ & $-2$ & $-1\tfrac{1}{2}$ & $-1$ & $-\tfrac{1}{2}$ &$\cdots$\\
\hline
$y$&$\cdots$ & $8$& $4\tfrac{1}{2}$ & $2$ & $\tfrac{1}{2}$ & $0$ & $\tfrac{1}{2}$ & $2$ & $4\tfrac{1}{2}$ & $8$ & $\cdots$ \\
\hline
\end{tabular}
\end{center}
\item 完成图象如图5.11.
\end{enumerate}
\begin{figure}[htp]
\centering
\begin{tikzpicture}[>=latex, scale=.6]
\draw[->] (-6,0)--(2,0)node[right]{$x$};
\draw[->] (0,-1)--(0,9)node[right]{$y$};
\foreach \x in {-5,-4,...,-1}
{
\draw (\x,0)node[below]{$\x$}--(\x,.1);
}
\foreach \y in {1,2,...,8}
{
\draw (0,\y)--(.1,\y)node[right]{$\y$};
}
\node at (.5,-.5){$O$};
\draw [domain=-4.5:-.5, samples=100, very thick]plot(\x, {2*(\x+2.5)*(\x+2.5)});
\draw[dashed](-2.5,-1)--(-2.5,8)node[above]{$x=-2\frac{1}{2}$};
\end{tikzpicture}
\caption{}
\end{figure}
\end{solution}
\subsubsection{函数$y=-\frac{1}{4}(x-2)^2-3$的图象}
函数$y=a(x+m)^2+k$的图象,是由函数$y=a(x+m)^2$的图象
沿$y$轴方向上下平移得
到.当$k>0$时,向上平移$k$个
单位;当$k<0$时,向下平移
$|k|$个单位.而$y=a(x+m)^2$的
图象,是由$y=ax^2$的图象沿$x$轴
方向左右平移得到.当$m>0$
时,向左平移$m$个单位;当$m<0$时,向右平移$|m|$个单位,
故函数$y=a(x+m)^2+k$的图象,是由函数$y=ax^2$的图象经上
下左右平移得到.
由此可见,函数$y=a(x+m)^2+k$的图象,也是一条抛
物线,当$a>0$时,开口向上,当$a<0$时,开口向下.对称轴
方程是$x=-m$, 顶点坐标是$(-m,k)$. 当$a>0$时,在$x=
-m$处取得$y_{\min}=k$,当$a<0$时,在$x=-m$处取得$y_{\max}=k$.
\begin{example}
研究函数$y=\frac{1}{4}(x+2)^2+3$的图象.
\end{example}
\begin{solution}
函数$y=\frac{1}{4}(x+2)^2+3$的图象,就是抛物线
$y=\frac{1}{4}(x+2)^2$向上平移3个单位,也就是抛物线$y=\frac{1}{4}x^2$向
左平移2个单位后,再向上平移3个单位.这条抛物线对你
轴方程是$x=-2$,开口向上,顶点坐标是$(-2,3)$. 在$x=-2$时,取得$y=3$.
\textbf{另解:}$\because\quad (x+2)^2\ge 0$
$\therefore\quad y=\frac{1}{4}(x+2)^2+3\ge 3$, 等式在$x=-2$时
成立,即在$x=-2$时,$y_{\min}=3$
由此得知抛物线$y=\frac{1}{4}(x+2)^2+3$的顶点是$(-2,3)$.
对称轴方程是$x=-2$,它可以由抛物线$y=\frac{1}{4}x^2$向左平移2
个单位,再向上平移3个单位得来.
\end{solution}
\begin{example}
作函数$y=-\frac{1}{4}(x-2)^2-3$的图象.
\end{example}
\begin{solution}
\begin{enumerate}
\item 函数$y=-\frac{1}{4}(x-2)^2-3$的图象是抛物线.由
$a=-\frac{1}{4}<0$知抛物线开口向下,顶点坐标是$(2,-3)$对称轴
方程是$x=2$.
\item 列表:
\begin{center}
\begin{tabular}{c|ccccccccccc}
\hline
$x$&$\cdots$& $-2$ & $-1$ & 0 & 1 & 2 & 3 & 4 & 5 & 6 &$\cdots$\\
\hline
$y$&$\cdots$ & $-7$& $-5\tfrac{1}{4}$ & $-4$ & $-3\tfrac{1}{4}$ & $-3$ & $-3\tfrac{1}{4}$ & $-4$ & $-5\tfrac{1}{4}$ & $-7$ & $\cdots$ \\
\hline
\end{tabular}
\end{center}
\item 作图如图5.12.
\end{enumerate}
\begin{figure}[htp]
\centering
\begin{tikzpicture}[>=latex, scale=.6]
\draw[->] (-3,0)--(7,0)node[right]{$x$};
\draw[->] (0,-8)--(0,1)node[right]{$y$};
\foreach \x in {-2,-1,1,2,...,6}
{
\draw (\x,0)node[below]{$\x$}--(\x,.1);
}
\foreach \y in {-1,-2,...,-7}
{
\draw (0,\y)--(.1,\y)node[right]{$\y$};
}
\node at (.5,-.5){$O$};
\draw [domain=-2:6, samples=100, very thick]plot(\x, {-.25*(\x-2)*(\x-2)-3});
\draw[dashed](2,1)--(2,-8)node[right]{$x=2$};
\node at (5,-2){$y=-\frac{1}{4}(x-2)^2-3$};
\end{tikzpicture}
\caption{}
\end{figure}
\end{solution}
\begin{example}
平移抛物线$y=ax^2$使顶点在$(2,4)$且$y$截距等于$-8$.
\end{example}
\begin{solution}
平移抛物线$y=ax^2$使顶点在$(2,4)$, 因此新抛物线的方程是:
\[ y=a(x-2)^2+4\]
又$y$截距等于$-8$, 即抛物线通过$(0,-8)$点,因此,
\[\begin{split}
-8&=a(0-2)^2+4\\
4a&=-12\\
a&=-3
\end{split}\]
所求抛物线方程是 $y=-3(x-2)^2+4$.
\end{solution}
\subsubsection{函数$y=ax^2+bx+c$的图象}
现在我们来研究函数$y=ax^2+bx+c$的图象.
因为
\[\begin{split}
ax^2+bx+c&=a\left(x^2+\frac{b}{a}x\right)+c\\
&=a\left[x^2+\frac{b}{a}x+\left(\frac{b}{2a}\right)^2\right]+c-\frac{b^2}{4a}\\
&=a\left(x+\frac{b}{2a}\right)^2+\frac{4ac-b^2}{4a}
\end{split}\]
所以函数$y=ax^2+bx+c$可以化成$y=a(x+m)^2+k$的形式,这里$m=\frac{b}{2a}$, $k=\frac{4ac-b^2}{4a}$.
由此可知,函数$y=ax^2+bx+c$的图象和函数$y=ax^2$的
图象完全相同,只是位置不同,它们都是抛物线.
抛物线$y=ax^2+bx+c$, 对称轴方程是
$x=-\frac{b}{2a}$,
顶点坐标是$\left(-\frac{b}{2a},\frac{4ac-b^2}{4a}\right)$.
\begin{itemize}
\item 当$a>0$时,二次函数$y=ax^2+bx+c$开口向上,在
$x=-\frac{b}{2a}$处取得$y_{\min}=\frac{4ac-b^2}{4a}$;
\item 当$a<0$时,函数开口向下,在$x=-\frac{b}{2a}$处取得$y_{\max}=\frac{4ac-b^2}{4a}$.
\end{itemize}
\begin{example}
指出下面抛物线的开口
方向,顶点坐标和对称轴方程,
并画出图象:
\begin{multicols}{2}
\begin{enumerate}
\item $y=2x^2+8x+5$
\item $y=-x^2+2x+1$
\end{enumerate}
\end{multicols}
\end{example}
\begin{solution}
\begin{enumerate}
\item 配方:
\[\begin{split}
y=2x^2+8x+5&=2(x^2+4x)+5\\
&=2(x^2+4x+4)+5-8\\
&=2(x+2)^2-3
\end{split}\]
性质:$\because\quad a=2>0$
$\therefore\quad $
抛物线开口向上,顶点坐标是$(-2,-3)$, 对称轴方程是$x=-2$.
作图象:
\begin{center}
\begin{tabular}{c|ccccccccccc}
\hline
$x$&$\cdots$& $-4$ & $-3\tfrac{1}{2}$ & $-3$ & $-2\tfrac{1}{2}$ & $-2$ & $-1\tfrac{1}{2}$ & $-1$ & $-\tfrac{1}{2}$ & 0 &$\cdots$\\
\hline
$y$&$\cdots$ & $5$& $1\tfrac{1}{2}$ & $-1$ & $-2\tfrac{1}{2}$ & $-3$ & $-2\tfrac{1}{2}$ & $-1$ & $1\tfrac{1}{2}$ & $5$ & $\cdots$ \\
\hline
\end{tabular}
\end{center}
图象如图5.13.
\item 配方:
\[\begin{split}
y=-x^2+2x+1&=-(x^2-2x-1)\\
&=-(x^2-2x)+1\\
&=-(x^2-2x+1)+2\\
&=-(x-1)^2+2
\end{split}\]
性质:$\because\quad a=-1<0$
$\therefore\quad $
抛物线开口向下,顶点坐标是$(1,2)$, 对称轴方程是$x=1$.
作图象:
\begin{center}
\begin{tabular}{c|ccccccccc}
\hline
$x$&$\cdots$& $-2$ & $-1$ & 0 & 1 & 2 & 3 & 4 &$\cdots$\\
\hline
$y$&$\cdots$ & $-7$& $-2$ & 1 & 2 & 1 & $-2$ & $-7$ & $\cdots$ \\
\hline
\end{tabular}
\end{center}
图象如图5.14.
\begin{figure}[htp]\centering
\begin{minipage}[t]{0.48\textwidth}
\centering
\begin{tikzpicture}[>=latex, scale=.6]
\draw[->] (-6,0)--(1,0)node[right]{$x$};
\draw[->] (0,-4)--(0,6.5)node[right]{$y$};
\foreach \x in {-4,-3,...,-1}
{
\draw (\x,0)node[below]{$\x$}--(\x,.1);
}
\foreach \y in {-1,-2,-3,1,2,...,5}
{
\draw (0,\y)--(.1,\y)node[right]{$\y$};
}
\node at (.5,-.5){$O$};
\draw[dashed] (-2,-4)--(-2,6)node[above]{$x=-2$};
\node at (-2,-3)[below]{$(-2,-3)$};
\draw [domain=-4.1:0.1, samples=100, very thick]plot(\x, {2*(\x+2)*(\x+2)-3});
\end{tikzpicture}
\caption{}
\end{minipage}
\begin{minipage}[t]{0.48\textwidth}
\centering
\begin{tikzpicture}[>=latex, scale=.6]
\draw[->] (-3,0)--(5,0)node[right]{$x$};
\draw[->] (0,-8)--(0,3)node[right]{$y$};
\foreach \x in {-2,-1,1,2,3,4}
{
\draw (\x,0)node[below]{$\x$}--(\x,.1);
}
\foreach \y in {-1,-2,...,-7,1,2}
{
\draw (0,\y)--(.1,\y)node[right]{$\y$};
}
\node at (.5,-.5){$O$};
\draw[dashed] (1,-8)--(1,3)node[right]{$x=1$};
\draw [domain=-2:4, samples=100, very thick]plot(\x, {-(\x-1)*(\x-1)+2});
\node at (1,2)[right]{$(1,2)$};
\end{tikzpicture}
\caption{}
\end{minipage}
\end{figure}
\end{enumerate}
\end{solution}
\begin{example}
\begin{enumerate}
\item $k$为何值时,抛物线$y=x^2+2kx+1$的顶点在直线$y=x$上?
\item 说明上述情况下的抛物线是由怎样的抛物线作怎样的平移得到的.
\end{enumerate}
\end{example}
\begin{solution}
\begin{equation}
y=x^2+2kx+1=(x+k)^2+1-k^2
\end{equation}
抛物线(5.5)的顶点坐标是$(-k,1-k)$. 顶点在直线$y=x$上
的充要条件是:
\[1-k2=-k\quad \Rightarrow\quad k^2-k-1=0\]
$\therefore\quad k=\frac{1\pm\sqrt{5}}{2}$
因此,当$k=\frac{1+\sqrt{5}}{2}$或$k=\frac{1-\sqrt{5}}{2}$时,抛物线(5.5)的顶点在直
线$y=x$上,这时抛物线方程是:
\begin{equation}
y=\left(x+\frac{1+\sqrt{5}}{2}\right)^2-\frac{1+\sqrt{5}}{2}
\end{equation}
和
\begin{equation}
\begin{split}
y&=\left(x+\frac{1-\sqrt{5}}{2}\right)^2-\frac{1-\sqrt{5}}{2}\\
&=\left(x-\frac{\sqrt{5}-1}{2}\right)+\frac{\sqrt{5}-1}{2}
\end{split}
\end{equation}
抛物线(5.6)是由抛物线$y=x^2$向左移$\frac{1+\sqrt{5}}{2}$个
单位再向下移$\frac{1+\sqrt{5}}{2}$个单位得来;抛物线(5.7)是由抛物线$y=x^2$向右移
$\frac{\sqrt{5}-1}{2}$个单位再向上移$\frac{\sqrt{5}-1}{2}$个单位
得来.
\end{solution}
\section*{习题5.1}
\addcontentsline{toc}{subsection}{习题5.1}
\begin{enumerate}
\item 把下列各图象画在同一坐标系里进行比较:
\begin{enumerate}
\item $y=x,\qquad y=x+2,\qquad y=x^2-2$
\item $y=-x^2,\qquad y=-x^2+2,\qquad y=-x^2-2$
\end{enumerate}
\item 把下列各图象画在同一坐标系里进行比较:
\[ y=x^2,\quad y=(x-1)^2,\quad y=(x-2)^2,\quad y=(x-3)^2\]
\[ y=(x+1)^2,\quad y=(x+2)^2,\quad y=(x+3)^2\]
\item 已知函数$y=2(x-3)^2$, 不作出图象而说出:
\begin{enumerate}
\item 图象的顶点,对称轴方程,开口方向;