forked from jamesfang8499/math1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1.tex
3743 lines (3123 loc) · 144 KB
/
1.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{自然数和零,分数及它们的运算}
自然数是我们数个数和排次序的工具.例如:数
一数班上有几个学生;在一次体育比赛中,排列运动
员所得的名次等.都要使用自然数$1, 2, 3,\ldots$
仔细分析这些自然数是很有意思的:
其中头一个数是1,这是起码单位,表示一个;
其次,“2”就是“1加1”,表示比一个多一
个,即$2=1+1$;“3”就是“2加1”,表示比
两个多一个,即$3=2+1$,也就是“1加1再加
1”,即$3=1+1+1$.
同样地,这样逐次加1,就能得到一串顺序排列
的自然数.例如:
3加1得到4,即
$4=3+1=2+1+1=1+1+1+1$
……
9加1得到10,即$10= 9+1=\cdots=\underbrace{1+1+\cdots+1}_{10\text{个}}$.
……
显然,这样的逐次加1,是可以无止境地连续做
下去的,因而就可以得到无穷无尽的自然数.这就使
我们可以把任何一堆事物的“个数”逐个点清.事实
上,在我们逐个儿清点一大堆事物的“个数”,或者
逐个儿排列某些事物的次序时,所做的正是由1开始
“逐次加1”的工作.所以,“加1”正是自然数的
最根本运算.
这就告诉我们:\textbf{由最小的自然数1开始,逐次进
行“加1”运算,就可以得到一个连一个的(简称连
续的)许多自然数.}而且,\textbf{自然数的个数是无穷无尽
的.}正因为这样,自然数这个工具就充分满足了我
们\textbf{数数}和\textbf{排次序}的需要.
这些自然数,我们通常用一串数码符号表示为:
$1,2,3,4,\ldots$
在今后的学习中,为便于一般性的讨论,对任一
个自然数,常用小写字母$a,b,c,\ldots,n,\ldots$表示.
用一个字母表示任一个自然数时,要注意根据上
面所说自然数的特征,明确字母的含义.例如:
自然数$a$,就是$a$个1相加;也就是1加$(a- 1)$
次1;也就是$(a-1)$再加1,(自然数1是例外),
即:
\[a=\underbrace{1+1+\cdots+1}_{a\text{个} 1}=1+\underbrace{1+\cdots+1}_{(a-1)\text{个} 1} = (a-1)+1\]
同样地,用字母$b$或$c$或$m$等表示任一个自然数
时,也有以上类似含义.
自然数的全体,我们叫做自然数集合,简称\textbf{自然
数集}(或自然数系).这个集合,可以用一个大写字
母$\mathbb{N}$表示,记作:
\[\mathbb{N}=\{1,2,3,\ldots,n,\ldots \} \]
在自然数集合中,每一个\textbf{单数}$1, 3, 5,\ldots, 2n-1,\ldots 2n-1,\ldots$也叫做\textbf{奇数}.相邻两个奇数的差是2;
每一个\textbf{双数}$2 , 4 , \ldots, 2n\ldots$也叫做\textbf{偶数}.相邻
两个偶数的差也是2,而且每一个偶数都能被2整除.
\begin{ex}
\begin{enumerate}
\item 给定任一个自然数$b$,试写出紧接这个数后面连续的三个
自然数.
\item 如果给一个比3大的自然数$m$,那么,在这个数前边的三
个连续自然数一定是$1, 2, 3$吗?$1, 2, 3$与自然数
$m$连续吗?
\item 给一个奇数$c$,试写出与它连续的三个奇数.
\item 如果$n$表示一个自然数,你能否判断$n+n$和$n+1+n$,是奇
数还是偶数?并举例验证你的结论.
\item 假设自然数$a$比自然数$b$大5,试比较以下各对自然数的
大小.并指出大多少?
\begin{center}
\begin{tabular}{lll}
$a+1$与$b$&
$a + 1$与$b-2$&
$a-3$与$b + 1$\\
$a-4$与$b+1$&
$a-4$与$b+ 3$\\
\end{tabular}
\end{center}
\end{enumerate}
\end{ex}
在小学中,还学习过数零.其符号是“0”,其
意义是表示数量的没有和位置的空白.
现将在小学学习过的有关自然数和零的四则运算
法则总结如下:
设$a,b$是两个自然数,
\begin{enumerate}[I. ]
\item 加法
例如:$5+3=5+1+1+1=8$.
一般地,$a+b=a+\underbrace{1 +\cdots +1}_{b\text{个}} =c$.
($c$也是自然数).这就是说:任一个自然数$a$加上自然数$b$,就
等于$a$进行$b$次加1运算后,所得到的自然数$c$.
\item 减法——加法的逆运算
例如:$8-3=5$或$8-5=3$.
一般地,$c-a=b$或$c-b=a$.
\item 乘法——同一个数的连加运算
例如:$3\times 5=3+3+3+3+3=15$.
一般地,$a\times b =\underbrace{a+a+a+\cdots+a}_{b\text{个}}=ab$
这就是说:自然数$a\times b$就等于$b$个$a$连加后,所得到的自然数$ab$.
\textbf{注意:}在用字母表示数的算式中,运算符号的乘
号“$\times$”,可以用符号“$\cdot$”代替,也可以省略不
写.即$a\times b=a\cdot b=ab$.这里的符号$ab$,既可以表示
$a, b$相乘;也可以表示它们相乘所得到的乘积.
\item 除法——乘法的逆运算
例如:$15\div 3=5$或$15\div 5=3$.
一般地,$ab\div a= b$,或$ab\div b = a$.
特别注意:在除法运算中,\textbf{零不能作除数}.
\item 零与自然数$a$的运算法则.
\begin{center}
\begin{tabular}{ll}
$a+0=a$& $a\cdot 0=0$\\
$a-0=a$& $0\div a=0$
\end{tabular}
\end{center}
\end{enumerate}
\begin{ex}
\begin{enumerate}
\item 任意两个自然数$a,b$的和,能够是零吗?能够比$a$(或比
$b$)小吗?
\item 任意两个自然数的差,一定是自然数呜?试举例说明你的
结论.
\item 怎么样的两个自然数的积,正好等于其中的一个数?
\item 怎么样的两个自然数的商,正好等于其中的一个数?怎么
样的两个自然数的商等于1?
\item 自然数和零的和、差、积、商(零不作除数),都一定还
是自然数或零吗?举例说明你的结论.
\end{enumerate}
\end{ex}
\subsection{自然数和零的运算性质}
对于任意自然数和零的运算,普遍成立的运算律
和运算特征,就是它们的共同性质,我们简称为\textbf{运算
通性}.
下面对小学中已经学习过的\textbf{运算通性}进行整理,
并说明它们的普遍正确性.
设字母$a, b, c$都表示任一个自然数.
\begin{blk}{加法交换律}
\[a+b=b+a \]
\end{blk}
\begin{note}
这个交换律之所以正确,可以这样分析:
设有两堆物品,甲堆有$a$个,乙堆有$b$个.假如我们先
数甲堆的个数,然后接着就数乙堆的个数,数到最后
一个数,就是两堆物品的总个数$a+b$;假如我们调过
来,先数乙堆的个数,再接着数甲堆的个数,数到最
后一个数,也就是这两堆的总个数$b+a$.这两种顺序
的数个数方法,结果当然是同一个数.因此,无论
$a, b$是什么样自然数,都有:
\[a+b=b+a \]
例如:$796+107=107+796$.
\end{note}
\begin{blk}{加法结合律}
\[(a+b)+c=a+(b+c)=a+b+c \]
\end{blk}
\begin{note}
由自然数加法的含义,我们可以知道:算
式$(a+b) +c$的意义就是:对$a$先作$b$次“加1"
后,再做$c$次“加1”.也就是对$a$一共要做$(b+c)$
次“加1”.而这正好是$a+ (b+c)$的含义.因而,
这个等式是正确的.
例如:$(701+153)+1001 =701+(153+1001)$.
\end{note}
\begin{blk}{乘法交换律}
\[a\cdot b=b\cdot a \]
\end{blk}
\begin{note}
现有参加团体操的少先队员,排成$a$行$b$列
的方阵队形.可以这样来统计总人数:“$a$行中,每
行都有$b$人”,所以
\[\text{总人数}=\underbrace{b+b+\cdots+b}_{a\text{个}}=b\cdot a \; \text{(个)} \]
也可以按“$b$列中,每列都有$a$人”的方法统计,所以
\[\text{总人数}=\underbrace{a+a+\cdots+a}_{b\text{个}}=a\cdot b \; \text{(个)} \]
这里两种统计方法,结果应该是相同的,即$b\cdot a=a\cdot b$.
例如:$90367 \times 14578=10578 \times 90367$.
\end{note}
\begin{blk}{分配律}
\[(a+b)\cdot c=a\cdot c+b\cdot c \]
\end{blk}
\begin{note}
因为
\begin{align*}
(a+b)\cdot c&=\underbrace{(a+b)+(a+b)+\cdots+(a+b)}_{\text{共$c$个括号}} \tag{乘法的意义}\\
&=(\underbrace{a+a+\cdots+a}_{c\text{个}})+(\underbrace{b+b+\cdots +b}_{c\text{个}})\tag{加法结合律与交换律}\\
&=a\cdot c+b\cdot c \tag{乘法的意义}
\end{align*}
所以$(a+b)\cdot c=a\cdot c+b\cdot c $
\end{note}
\begin{blk}{乘法结合律}
\[(a\cdot b)\cdot c=a\cdot (b\cdot c) \]
\end{blk}
\begin{note}
因为
\begin{align*}
(a\cdot b)\cdot c&=(b\cdot a)\cdot c \tag{乘法交换律}\\
&=(\underbrace{b+b+\cdots +b}_{a\text{个}})\cdot c \tag{乘法的意义}\\
&=(\underbrace{b\cdot c+b\cdot c+\cdots +b\cdot c}_{a\text{个}}) \tag{分配律} \\
&=(b\cdot c)\cdot a \tag{乘法的意义}\\
&=a\cdot (b\cdot c) \tag{乘法交换律}\\
\end{align*}
所以$(a\cdot b)\cdot c=a\cdot (b\cdot c)$.
例如: $(501\x 235) \x 1709=501\x (235 \x 1709)$.
\end{note}
\begin{blk}{数0和自然数1的运算特性}
\begin{center}
\begin{tabular}{cc}
$0+0=0$ & $0\x 0=0$\\
$0+a=a+0=a$ & $a\x 0=0\x a=0$\\
$a\x 1=a$ & $a\div 1=a$\\
\end{tabular}
\end{center}
\end{blk}
这些特性显然是正确的.
\begin{ex}
\begin{enumerate}
\item 利用加法的交换、结合律说明:
\[(a+b)+c=c+(b+a)\]
\item 利用加法、乘法的意义,说明$a\cdot b+a\cdot c=a(b+c)$成立.
\end{enumerate}
\end{ex}
以上讨论的对于任意自然数和零都成立的\textbf{运算通
性},在运算中起着重要作用.
\begin{example}
试求:$1+2+3+\cdots+100=$?
\end{example}
\begin{analyze}
如果一个个的顺次相加,显得太繁了.我们
仔细分析这100个连续的自然数的规律和特点,运用加
法的运算丫是可以大大化简计算提高速度的.因为:
\[1+100=2+99=\cdots=50+51=101\]
所以,将所给算式中的各个加数,经过交换、结合以
后,就可以很快求出结果.
\end{analyze}
\begin{solution}
\begin{align*}
1+2+3+&\cdots+50+51+\cdots+100\\
&=\underbrace{(1+100)+(2+99)+\cdots+(50+51)}_{\text{共50个括号}} \tag{加法交换结合律} \\
&=101\x 50 \tag{乘法的意义}\\
&=5050
\end{align*}
\end{solution}
\begin{example}
计算$a+(a+d)+(a+2d)+\cdots+(a+99d)=$?
\end{example}
\begin{rmk}
这里的字母$a, d$都表示自然数或零,$2d,
3d,\ldots, 99d$都表示乘积,在数字与字母表示的数相
乘时,今后总是将数字写在前边,如$5\x a=a\x 5=
5a$, $b\x 4\x m=4bm$等.它们的含义,也一律解释成:
$5a=a+a+a+a+a$,$4bm=bm+bm+bm+bm$等.
\end{rmk}
\begin{solution}
\begin{align*}
& a+(a+d)+(a+2d)+\cdots+(a+99d)\\
&=\underbrace{a+a+\cdots+a}_{\text{100个}}+(d+2d+\cdots+99d) \tag{加法交换、结合律} \\
&=100a + (d+2d+\cdots+99d) \tag{乘法的意义}\\
&=100a+d(1+2+\cdots+99) \tag{分配律}\\
&=100a+d[\underbrace{(1+99)+(2+98)+\cdots+(49+51)}_{\text{49个括号}}+50] \tag{加法交换、结合律}\\
&=100a+(4900+50)d \tag{乘法的意义、交换律}\\
&=100a+4950d\tag{加法法则}
\end{align*}
\end{solution}
\begin{ex}
利用自然数和零的运算通性计算
\begin{enumerate}
\item $1+2+3+\cdots+1001=$?
\item $a+2a+3a+\cdots+100a=$?($a$是自然数)
\item $(a+b)+(2a+2b)+(7a+7b)=$?
\end{enumerate}
\end{ex}
\subsection{乘方运算及指数运算律}
前面已经知道,乘法运算就是同一个数的\textbf{连加}运
算.由于乘法满足交换律,我们可以将乘法用公式表
示它的含义是:
\[n\x a=\underbrace{a+a+\cdots+a}_{\text{$n$个}}\qquad \text{(当然也就是$a\x n$)} \]
这就是说:\textbf{$n\x a$就是$n$个$a$的连加}.
也许有人会问:要是$n$个$a$连乘,会不会又是一种
新的运算呢?答案是肯定的.这就是下面要引进的乘
方运算.
\textbf{同一个数的连乘运算},叫做乘方运算.这个数连
乘的次数,只要记在它的右上方就表明了这一运算.
例如:$3\x3$记作$3^2$;即$3^2=3\x3=9$.
$3\x3\x3$记作$3^3$;即$3^3=3\x3\x3= 27$.
$3\x3\x3\x3\x3$记作$3^5$;
即$3^5=3\x3\x3\x3\x3=243$……
$\underbrace{3\x3\x\cdot \x3}_{\text{$n$个3}}$记作$3^n$;即$3^n =\underbrace{3\x3\x\cdot \x3}_{\text{$n$个3}}$.
为了方便,显然可以把3也记作$3^1$,即$3^1=3$.
一般地,同一个数$a$的$n$
次连乘,记作$a^n$,即
\[\underbrace{a\x a\x a\x \cdot \x a}_{\text{$n$个}}=a^n \]
其中$a$叫做\textbf{底数},自然数$n$叫做\textbf{指数},其结果$a^n$叫做
\textbf{幂}.(读成“$a$的$n$次幂”或“$a$的$n$次方”).
特别地,从中可得出:
\begin{itemize}
\item $a=a^1$;
\item $a\x a=a^2$,$a^2$也叫做“$a$的平方”;
\item $a\x a\x a=a^3$,$a^3$也叫做“$a$的立方”.
\end{itemize}
由于零自连乘仍是零,所以,零的$n$次方总等于零,即
\[0^n=0 \]
\begin{example}
计算:
$2^3$;$5^2$;$2^6$;$7^8$;$4^3 $;$0^{10}$
\end{example}
\begin{solution}
\[\begin{split}
2^3&=2\x2\x2=8\\
5^2&=5\x5=25\\
2^6&=\underline{2\x2\x2}\x\underline{2\x2\x2}=64\\
7^3&=7\x7\x7=343\\
4^3&=4\x4\x4=64\\
0^{10}&=0
\end{split}\]
\end{solution}
\begin{example}
列表写出1—10的平方和立方.
\end{example}
\begin{solution}
\begin{center}
\begin{tabular}{c|cccccccccc}
\hline
$a$ & 1&2&3&4&5&6&7&8&9&10\\
\hline
$a^2$&1&4&9&16&25&36&49&64&81&100\\
$a^3$&1&8&27&64&125&216&343&512&729&1000\\
\hline
\end{tabular}
\end{center}
\end{solution}
\begin{example}
不必算出数值,利用乘方的意义说明下列等
号两边相等:
\begin{enumerate}
\item $9^4\x9^3=9^7$;
\item $a^{11}\x a^7=a^{18}$.
\end{enumerate}
\end{example}
\begin{note}
\begin{enumerate}
\item 由乘方的意义可知
\[9^4=9\x 9\x 9\x 9,\qquad 9^3=9\x 9\x 9 \]
所以
\begin{align*}
9^4\x 9^3&=(9\x 9\x 9\x 9)\x (9\x 9\x 9)\tag{乘方的意义}\\
&=9\x 9\x 9\x 9\x 9\x 9\x 9\tag{乘法结合律}\\
&=9^7\tag{乘方的意义}\\
\end{align*}
\item \begin{align*}
a^{11}\x a^7&=(\underbrace{a\x a\x \cdots \x a}_{\text{11个$a$}})\x (\underbrace{a\x a\x \cdots \x a}_{\text{7个$a$}})\tag{乘方的意义}\\
&=\underbrace{a\x a\x \cdots \x a}_{\text{18个$a$}} \tag{乘法结合律}\\
&=a^{18}\tag{乘方的意义}\\
\end{align*}
\end{enumerate}
\end{note}
这个例子告诉我们:底数相同的幂相乘时,要点
在于\textbf{指数相加},计算结果的底数是不会改变的.这一
事实是否普遍成立呢?有待进一步说明.
\begin{ex}
\begin{enumerate}
\item 计算:$11^2$;$9^3$;$6^3$.
\item 利用乘方意义,说明下列等式正确:
\begin{enumerate}
\item $7^2\x 7^3\x 7=7^6$;
\item $5^{10}\x 5^{101}=5^{111}$;
\item $b^2\x b^4=b^6$.
\end{enumerate}
\end{enumerate}
\end{ex}
\begin{blk}{指数运算律(一)}
同底数幂相乘,指数相加,底数不变.即:
\[a^m\cdot a^n=a^{m+n} \]
\end{blk}
\begin{note}
由于
\begin{align*}
a^m\cdot a^n &=(\underbrace{a\cdot a\cdots a}_{\text{$m$个}})\cdot (\underbrace{a\cdot a\cdots a}_{\text{$n$个}}) \tag{乘方的意义}\\
&=\underbrace{a\cdot a\cdots a\cdot a\cdot a \cdots a}_{\text{$m+n$个}}\tag{乘法结合律}\\
&=a^{m+n} \tag{乘方的意义}\\
\end{align*}
所以,对于任意底数$a$和任意自然数指数$m, n$,
都有:
\[a^m\cdot a^n=a^{m+n} \]
\end{note}
\begin{example}
利用指数运算律,计算下面的值:
\[9\x 9^2,\qquad 2^3\x2\x2^3,\qquad a^5\cdot a^{11},\qquad 3^3\cdot 3+2\cdot 2^2 \]
\end{example}
\begin{solution}
$$9\x 9^2=9^3=729$$
\begin{align*}
2^2\x 2\x 2^3&=(2^2\x 2)\x 2^3 \tag{乘法结合律}\\
&=2^3\x 2^3 \tag{指数运算律}\\
&=2^6=64
\end{align*}
\[a^5\cdot a^{11}=a^{16} \]
\[3^3\cdot 3+2\cdot 2^2=3^4+2^3=81+8=89 \]
\end{solution}
\begin{example}
计算:
\[2^3\cdot 4,\qquad 3\x 81 \]
\end{example}
\begin{solution}
要利用指数运算律进行计算,必须使两相乘
部分成为\textbf{同底数幂}.因此,
\[2^3\cdot 4=2^3\cdot 2^2=2^5=32 \]
\[3\x 81=3\x 3^4=3^5=243 \]
\end{solution}
\begin{ex}
\begin{enumerate}
\item 利用指数运算律,计算:
\[3^2\x 3^2,\qquad 9^2\x 9^2,\qquad 3^4\x 9,\qquad a\x a^2\x a^3 \]
\item 利用运算通性及乘方的意义和指数运算律,说明以下等式
是正确的.
\[(3\x 2)^3=3^3\x 2^3,\qquad (a\cdot b)^2=a^2\cdot b^2\]
\end{enumerate}
\end{ex}
\begin{blk}{指数运算律(二)}
乘积的幂,等于各因数的幂相乘,即:
\[(a\cdot b)^n=a^n\cdot b^n\]
\end{blk}
\begin{note}
由于
\begin{align*}
(a\cdot b)^n&=\underbrace{(a\cdot b)\cdot(a\cdot b)\cdots(a\cdot b)}_{\text{$n$个括号}} \tag{乘方的意义}\\
&=\underbrace{a\cdot a\cdots a}_{\text{$n$个}} \cdot \underbrace{b\cdot b\cdots b}_{\text{$n$个}} \tag{乘法交换、结合率}\\
&=a^n\cdot b^n \tag{乘方的意义}
\end{align*}
所以$(a\cdot b)^n=a^n\cdot b^n$.
\end{note}
\begin{example}
计算:
\begin{enumerate}
\item $21^2,\quad 15^3,\quad 18^2$
\item $15^2\x 6^3,\quad 45\x 15^3,\quad (ab)^2\cdot (ac)^3,\quad 125^3\x 8^3$
\end{enumerate}
\end{example}
\begin{solution}
\begin{enumerate}
\item $21^2=(3\x 7)^2=3^2\x 7^2=9\x 49=441$
\[\begin{split}
15^3&=(3\x 5)^3=3^3\x 5^3\\
&=27\x 125=3375
\end{split}\]
\[18^2=(2\x 9)^2=2^2\x 9^2=4\x 81=324\]
\item \begin{align*}
15^2\x 6^3 &=(3\x 5)^2 \x (2\x 3)^3\\
&=3^2\x 5^2\x 2^3\x 3^3\tag{指数运算律(二)}\\
&=(3^2\x 3^3)\x 5^2\x 2^3 \tag{乘法交换率、结合律}\\
&=3^5\x 5^2\x 2^3\tag{指数运算律(一)}\\
&=729\x 25\x 8=145800
\end{align*}
\begin{align*}
45\x 15^3&=5\x 9\x (3\x 5)^3\\
&=5\x 9\x 3^3\x 5^3\tag{指数运算律(二)}\\
&=(5\x 5^3)\x (3^2\x 3^3) \tag{乘法交换率、结合律}\\
&=5^4\x 3^5\tag{指数运算律(一)}\\
&=625\x 243=151875
\end{align*}
\begin{align*}
(a\cdot b)^2\cdot (a\cdot c)^3 &= a^2\cdot b^2\cdot a^3\cdot c^3\tag{指数运算律(二)}\\
&=(a^2\cdot a^3)\cdot b^2\cdot c^3 \tag{乘法交换率、结合律}\\
&=a^5\cdot b^2\cdot c^3 \tag{指数运算律(一)}\\
\end{align*}
\begin{align*}
125^3\x 8^3&=(125\x 8)^3 \tag{指数运算律(二)}\\
&=1000^3=1000000000
\end{align*}
\end{enumerate}
\end{solution}
\begin{ex}
\begin{enumerate}
\item 计算:$64^2,\quad (2\x5)^2\x10^3,\quad (2+3)^2\x15,\quad a\cdot (abc)^3$
\item 利用运算通性与指数运算律,说明以下等式是正确的:
\[ (411^2)^3 = 411^6,\qquad (b^7)^3=b^{21} \]
\end{enumerate}
\end{ex}
\begin{blk}{指数运算律(三)}
幂的乘方,指数相乘,底数不变,
即:
\[(a^m)^n=a^{mn}\]
\end{blk}
\begin{note}
\begin{align*}
(a^m)^n&= \underbrace{a^m\cdot a^m\cdots a^m}_{\text{$n$个}} \tag{乘方的意义}\\
&=\overbrace{\underbrace{(a\cdot a\cdots a)}_{\text{$m$个$a$}}\cdot \underbrace{(a\cdot a\cdots a)}_{\text{$m$个$a$}}\cdots \underbrace{(a\cdot a\cdots a)}_{\text{$m$个$a$}}}^{\text{$n$个括号}}\\
&=\underbrace{a\cdot a\cdot a\cdots a}_{\text{$mn$个$a$}}\tag{乘法结合律}\\
&=a^{mn}\tag{乘方的意义}
\end{align*}
所以$(a^m)^n=a^{mn}$.
\end{note}
\begin{example}
计算:$2^3\x 4^2,\qquad 40\x 100^3,\qquad 12\x 45^2$
\end{example}
\begin{solution}
$$2^3\x 4^2=2^3\x (2^2)^2=2^3\x 2^4=2^7=128$$
\[\begin{split}
40\x 100^3&=2^2\x 10\x(10^2)^3\\
&=2^2\x 10\x 10^6=4\x 10^7\\
&=40000000
\end{split}\]
\[\begin{split}
12\x 45^2&=3\x 4\x (5\x 3^2)^2=2^2\x 5^2\x 3^5\\
&=(2\x 5)^2 \x 3^5=24300
\end{split}\]
\end{solution}
\begin{example}
计算:
$$a^2\cdot (a^7)^3,\qquad b\cdot (b^2)^n,\qquad (ac)^2\cdot (a^m c)^3$$
并说明每一步的理由.
\end{example}
\begin{solution}
\begin{align*}
a^2\cdot (a^7)^3&=a^2\cdot a^{21} \tag{指数运算律(三)}\\
&= a^{23} \tag{指数运算律(一)}\\
\end{align*}
\begin{align*}
b\cdot (b^2)^n&=b\cdot b^{2n} \tag{指数运算律(三)}\\
&= b^{1+2n} \tag{指数运算律(一)}\\
\end{align*}
\begin{align*}
(ac)^2\cdot (a^m c)^3&=a^2\cdot c^2\cdot a^{3m}\cdot c^3 \tag{指数运算律(三)}\\
&=(a^2\cdot a^{3m})\cdot (c^2\cdot c^3) \tag{乘法交换、结合律}\\
&= a^{2+3m}\cdot c^5 \tag{指数运算律(一)}\\
\end{align*}
\end{solution}
\begin{ex}
\begin{enumerate}
\item 计算:
$$(4^2)^3,\qquad 2 \x (2^2)^3,\qquad a^2\cdot (a^2)^2,\qquad b^n\cdot (b^2)^m$$
$$(2^3)^2 \cdot (8-7),\qquad 15^4 \x [12^2-(2^2 \x3)^2]$$
\item 利用运算通性及指数运算律,说明以下等式是正确的:
\begin{enumerate}
\item $3^6\div 3^4=3^2$
\item $a^7\div a^2=a^5,\qquad (a\ne 0)$
\item $b^4\div b^4=1, \qquad (b\ne 0)$
\end{enumerate}
\end{enumerate}
\end{ex}
\begin{blk}{指数运算律(四)}
同底数幂相除,指数相减,底数不变.即:
\[a^m \div a^n=a^{m-n}\]
其中$m>n$, $a\ne 0$
\end{blk}
\begin{rmk}
因为$a\ne 0$, $m>n$
\begin{align*}
a^m \div a^n&=\frac{\overbrace{a\cdot a\cdots a}^{\text{$m$个$a$}}}{\underbrace{a\cdot a\cdots a}_{\text{$n$个$a$}}} \tag{乘方的意义}\\
&=\frac{\overbrace{a\cdot a\cdots a}^{\text{$(m-n)$个$a$}}}{1} \tag{除法的性质}\\
&=a^{m-n}\tag{乘方的意义}\\
\end{align*}
所以,当$a\ne 0$时,$m>n$时,就有
\[a^m \div a^n=a^{m-n}\]
\end{rmk}
\begin{example}
计算:$3^6\div 3^4,\qquad 15^3\div 15^2,\qquad a^{10}\div a^8 \; (a\ne 0)$
\end{example}
\begin{solution}
\[3^6\div 3^4=3^{6-4}=3^2=9 \]
\[15^3\div 15^2=15^1=15\]
\[a^{10}\div a^8=a^2\qquad (a\ne 0)\]
\end{solution}
\begin{example}
计算,并说明每一步的根据.
\[64^2\div 2^{10},\qquad (b^2)^3\div b\; (b\ne 0),\qquad (b^m)^2\div b^m\; (b\ne 0) \]
\end{example}
\begin{solution}
\begin{align*}
64^2\div 2^{10}&=(2^6)^2\div 2^{10} \tag{乘方的意义}\\
&=2^{12}\div 2^{10} \tag{指数运算律(三)}\\
&=2^2 \tag{指数运算律(四)}\\
&=4\tag{乘方的意义}
\end{align*}
\begin{align*}
(b^2)^3\div b &=b^6\div b \tag{指数运算律(三)}\\
&=b^5 \; (b\ne 0)\tag{指数运算律(四)}\\
\end{align*}
\begin{align*}
(b^m)^2\div b^m &=b^{2m}\div b^m \tag{指数运算律(三)}\\
&=b^{2m-m}\tag{指数运算律(四)}\\
&=b^m \; (b\ne 0)
\end{align*}
\end{solution}
\begin{example}
利用乘方的意义,说明下面等式是正确的:
\[7^5\div 7^5=1,\qquad a^4\div a^4=1\; (a\ne 0) \]
\end{example}
\begin{solution}
直接由乘方和除法的意义可知:
\[ 7^5\div 7^5=\frac{7^5}{7^5}=\frac{7\x7\x7\x7\x7}{7\x7\x7\x7\x7}=1 \]
\[a^4\div a^4=\frac{a^4}{a^4}=\frac{a\cdot a\cdot a\cdot a}{a\cdot a\cdot a\cdot a}=1\; (a\ne 0)\]
\end{solution}
这个例题告诉我们,\textbf{两个同底数(不为0)、同
指数的幂相除,其商等于1.}这个事实也就启示我
们,只要规定:
\[a^0=1\quad (a\ne 0) \]
指数运算法则(四):$a^m\div a^n=a^{m-n}\; (a\ne 0)$
就对$m=n$的情形仍然有效.
例如:$7^5\div 7^5=7^{5-5}=7^0=1$;
$a^4\div a^4=a^{4-4}=a^0=1\; (a\ne 0)$;$27^2\div 3^6=3^6\div 3^6=3^0=1$等等.
\begin{ex}
利用指数运算律计算:
\begin{enumerate}
\item $6^7\div 6^5,\qquad 27^2\div 3^2,\qquad 27^2\div 9^2,\qquad 3^4\div 81$
$(a^2)^4\div a\; (a\ne 0),\qquad (a^m)^3\div a^m\; (a\ne 0)$
\item $2^{15}\div 2^5\x 2^{10},\qquad 2^{15}\x 2^5\div 2^{10},\qquad 2^{15}\div 2^5\div 2^{10}$
$4\x 4^2 +6^{10}\div 6^{10}-(8^0+7)^2$
\end{enumerate}
\end{ex}
在自然数和零的范围内,加法、乘法以及乘方运
算的结果,仍是自然数或零;但减法和除法运算的结
果都不能保证还是自然数或零,这是因为,在自然数
和零的范围内,还有不够减和除不尽的时候,如:
$3\div 5=$?与$3-5=$?为了解决这两个问题,我们
还将逐步引进一些新数,并讨论它们的运算.
\subsection{分数及其运算}
在我们的日常生活和工作中,还会遇到一些量,
要求我们去“量一量”、“分一分”,把所得的结果
用数表达出来.例如:用米尺“量一量”房子的长度
和宽度是多少?三个人分一个大西瓜,每人分多少?
解决这些问题,就要用到“小数”及“分数”的工具
了.例如,用米尺量得房子长6.50米,宽4.25米;每
人分得西瓜$\frac{1}{3}$个等.
在小学学习分数与小数时,我们已经知道:小数
都可以化成分数,而且遇到两个自然数相除但除不尽
时,商数就可以用一个分数表示出来,比如:
$6.5=\frac{65}{10}$;$4.25=4\frac{25}{100}$;$3\div 5=\frac{3}{5}$等等.
应该指出,\textbf{任一个分数,如$\frac{3}{5}$,$\frac{22}{7}$,$\frac{355}{113}$
等,都
可以看成是两个自然数的比}.因此,任一个分数,我
们都可以用字母的形式表示为:
\[\frac{a}{b},\quad \text{或}\quad \frac{c}{d}, \quad \text{或} \quad \frac{m}{n} \text{等} \]
其中,字母$a, b, c, d, m,n$等都表示任一自然
数.
还应该指出,在今后的学习中,我们还可以把自
然数和零都看成是分数的特例,即:
\begin{itemize}
\item 任一自然数$a$,看成分母为1、分子为$a$的一个
分数,$a=\frac{a}{1}$;
\item 零,看成分母为任意一个自然数$a$、分子为零的
一个分数,$0=\frac{0}{a}$.
\end{itemize}
以下对于分数的性质和运算,做一番简要的复
习、归纳:
\begin{blk}{分数的特点}
由于$\frac{1}{b}\; (b\ne 0)$是一个分数单位,且$b\x\left(\frac{1}{b}\right)=1$,所以,对于任一个分数$\frac{a}{b}\; (b\ne 0)$,都具有以
下特点:
\[b\x\left(\frac{a}{b}\right)=a \]
\end{blk}
例如:$5\x\left(\frac{3}{5}\right)=3$;$4\x\left(\frac{17}{4}\right)=17$等,
这就是说:分数$\frac{a}{b}$是一个数,只有这个数才能够使它
与数$b$的乘积,正好等于$a$.即,使$b\x(?)=a$的唯
一数,就是分数$\frac{a}{b}$.
\begin{blk}{分数的基本性质}
设任一分数$\frac{a}{b}\; (b\ne 0)$,
另外有任一个不为零
的数$m$.我们就有
\[\frac{a}{b}=\frac{am}{bm}=\frac{a\div m}{b\div m} \]
\end{blk}
这就是说,\textbf{分数的分子、分母同时乘以或除以一
个不为零的数,分数的值不变}.例如:$\frac{6}{8}=\frac{18}{24}=\frac{3}{4}$
等.
分数的这个基本性质,是通分、约分及分数运算
的主要根据,必须很好掌握.
\begin{ex}
\begin{enumerate}
\item 填空:\[(\qquad )\x \frac{1}{7}=1 \]\[4\x\frac{(\qquad)}{(\qquad )}=5\]\[m\cdot \frac{(\qquad)}{(\qquad )}=n,\; (m\ne 0)\]
\item 填空:\[\frac{6}{9}=\frac{2}{(\qquad)}=\frac{(\qquad)}{126}\]\[\frac{(\qquad )}{b\cdot c}=\frac{a}{b}=\frac{a^2}{(\qquad )}\quad (a,b,c\ne 0)\]
\end{enumerate}
\end{ex}
\begin{blk}{分数的运算及其性质}
分数的四则运算,实质上都是归结为自然数的运
算来进行的.但也要注意在分数运算中的特殊性,就
是:应用基本性质进行\textbf{通分},化为同分母(相同分数
单位)的分数,才能进行加、减法;而且,四则运算
的结果,又必须应用基本性质进行\textbf{约分},得到最简分
数为止.
\end{blk}
现在,用字母的算式把分数的运算法则总结如
下:
\begin{blk}{加、减法}
\[\frac{a}{b}\pm\frac{c}{d}=\frac{ad}{bd}\pm\frac{bc}{bd}=\frac{ad\pm bc}{bd} \]
\end{blk}
如:$\frac{2}{3}+\frac{1}{4}=\frac{8}{12}+\frac{3}{12}=\frac{11}{12}$;$\frac{2}{3}-\frac{1}{4}=\frac{8}{12}-\frac{3}{12}=\frac{5}{12}$等.
\begin{blk}{除法}
\[\frac{a}{b}\div \frac{c}{d}=\frac{a}{b}\x\frac{d}{c}=\frac{ad}{bc}\]
\end{blk}
如:$\frac{1}{2}\div\frac{2}{3}=\frac{1}{2}\x \frac{3}{2}=\frac{3}{4}$.
\begin{blk}{乘方}
\[\left(\frac{a}{b}\right)^m=\underbrace{\left(\frac{a}{b}\right)\cdot \left(\frac{a}{b}\right)\cdots \left(\frac{a}{b}\right)}_{\text{$m$个}}=\frac{a^m}{b^m}\]
\end{blk}
这就是说:
\textbf{分数的乘方,等于分子、分母各自同次乘方}.这
个运算法则,我们作如下说明:
\begin{note}
因为$m$为自然数,
\begin{align*}
\left(\frac{a}{b}\right)^m&=\underbrace{\left(\frac{a}{b}\right)\cdot \left(\frac{a}{b}\right)\cdots \left(\frac{a}{b}\right)}_{\text{$m$个}}
\tag{乘方的意义}\\
&=\frac{\overbrace{a\cdot a\cdots a}^{\text{$m$个}}}{\underbrace{b\cdot b\cdots b}_{\text{$m$个}}} \tag{分数乘法法则}\\
&= \frac{a^m}{b^m}\tag{乘方的意义}\\
\end{align*}
所以$\left(\frac{a}{b}\right)^m=\frac{a^m}{b^m}$
\end{note}
例如:
\[ \begin{split}
\left(\frac{3}{5}\right)^3&=\left(\frac{3}{5}\right)\x \left(\frac{3}{5}\right)\x \left(\frac{3}{5}\right)\\
&=\frac{3^3}{5^3}=\frac{27}{125}
\end{split} \]
\[ \left(\frac{c}{d}\right)^4=\frac{c^4}{d^4} \]
分数运算,既然都是归结为自然数的运算,因
此,不难说明分数运算也是满足运算律的.例如:
分数加法的\textbf{交换律}是
$\frac{a}{b}+\frac{c}{d}=\frac{c}{d}+\frac{a}{b}$.
\begin{note}
因为
\begin{align*}
\frac{a}{b}+\frac{c}{d}&=\frac{ad+bc}{bd} \tag{分数加法法则}\\
&=\frac{bc+ad}{bd}\tag{自然数加法交换律}\\
&=\frac{bc}{bd}+\frac{ad}{bd}\\
&=\frac{c}{d}+\frac{a}{b}\tag{分数的基本性质}\\
\end{align*}
所以,$\frac{a}{b}+\frac{c}{d}=\frac{c}{d}+\frac{a}{b}$.
\end{note}
同样,分数运算中,加法结合律、乘法结合律,
交换律以及分配律、指数运算律都是正确的.
\begin{ex}
\begin{enumerate}
\item 试说明分数乘法的结合律和分配律.
\item 如果$m,n$都是自然数或零,试说明指数运算律:
\[\left(\frac{a}{b}\right)^m \cdot \left(\frac{a}{b}\right)^n=\left(\frac{a}{b}\right)^{m+n} \]
\end{enumerate}
\end{ex}
运用分数运算的性质,同样可以简化计算,提高
速度.
\begin{example}
计算 $\left(\frac{3}{5}\x\frac{1}{7}+\frac{6}{7}\x \frac{3}{5}\right)\x\left(\frac{211}{122}\x\frac{122}{211}-\frac{2}{5}\right)^2$
\end{example}
\begin{solution}
\begin{align*}
\text{原式}&=\frac{3}{5}\left(\frac{1}{7}+\frac{6}{7}\right)+\left(1-\frac{2}{5}\right)^2\tag{分配律、分数乘法法则}\\
&=\frac{3}{5}\x\left(\frac{3}{5}\right)^2 \tag{分数加、减法法则}\\
&=\left(\frac{3}{5}\right)^{1+2}=\left(\frac{3}{5}\right)^3\tag{指数运算律(一)}\\
&=\frac{3^3}{5^3}=\frac{27}{125} \tag{分数的乘方运算律}
\end{align*}
\end{solution}
\begin{ex}
运用运算性质计算:
\begin{enumerate}
\item $5\frac{3}{8}+10\frac{1}{3}+4\frac{5}{8}$
\item $5.9+7.3+5.1+1.7$
\item $3^2\x 4\frac{7}{27}$
\item $\left(\frac{2}{3}\right)^2+\left(\frac{4}{9}\right)^5\div \left(\frac{9}{4}\right)^2\x \left(\frac{9}{4}\right)^3$
\end{enumerate}
\end{ex}
在分数(包括其特例的自然数和零)范围内,加
法、乘法(包括乘方)、除法运算的结果都能保证是
分数(包括自然数和零).就是说,有了分数以后,
“除不尽”的矛盾就能解决了.但在作减法时仍然存
在着“不够减”的矛盾,如:$3-5=?$,$\frac{1}{3}-\frac{1}{2}=?$
等.这个矛盾我们将在下一节解决它.
\section*{习题1.1}
\addcontentsline{toc}{subsection}{习题1.1}
\begin{enumerate}
\item 如果字母$a$表示任一个自然数,试完成下列各题:
\begin{enumerate}
\item 写出包括$a$在内的三个连续自然数.
\item 小方很快地写出“$a-2, a-1, a$”是三个连续自
然数,你说对吗?为什么?
\item 假如$a$表示自然数5,那么,$a-3,a+3$各表示
什么数?
\item 假如$a+10$表示自然数100,那么$a$表示那一个自
然数?$a-10$又表示那一个自然数?
\end{enumerate}
\item 如果自然数$a$进行6次“加一”以后,得到自然数$b$.
试比较以下各对自然数的大小,并指出大多少?
\begin{multicols}{2}
\begin{enumerate}
\item $a+3$ 与 $b+1$
\item $a+4$ 与 $b-2$
\item $a+5$ 与 $b-5$
\item $a+1$ 与 $b+1$
\end{enumerate}
\end{multicols}
\item 举例验证:对于任一个自然数$n$来说,“$n+n=2n$总是
一个偶数”;“$2n + 1$与$2n-1$都是奇数.”
\item 用含有字母的算式,表示下列所说的各数:
\begin{enumerate}
\item 与自然数$a$连续的三个自然数(包括$a$)的总和.
\item 自然数$b$的三倍与最小自然数的和.
\item 自然数$n$与$m$的差的五倍.
\end{enumerate}
\item 试求出在下列条件下,字母$n$表示那些个自然数:
\begin{enumerate}
\item $n-5$ 表示 1
\item $3n$ 表示 120
\item $n+7$ 表示 8
\item $4n$ 表示 3的倍数
\end{enumerate}
\item 利用运算通性,说明下式正确:
\begin{enumerate}
\item $(a+1)\cdot (b+1)=a\cdot b+a+b+1$
\item $(a+b)\cdot (c+d)=ac+ad+bc+bd$
\end{enumerate}
\item 计算:(尽量利用“通性”,简化计算)
\begin{enumerate}
\item $1+3+5+7+9+\cdots+99$
\item $(2+b)+(2+2b)+\cdots+(2+20b)$
\item $102\x 99$ (提示:将原题化为$(100+2)\x(100-1)$计算 )
\item $(2a+1)+(4a+1)+\cdots +(20a+1)$
\end{enumerate}
\item 填出下列表中各数:
\begin{center}
\begin{tabular}{c|cccccccccc}
\hline
$n$ & 11&12&13&14&15&16&17&18&19&20\\
\hline
$n^2$\\
$n^3$\\
\hline
\end{tabular}
\end{center}
\item 利用指数运算律(一)计算:
\begin{enumerate}
\item $2^3\cdot 2,\qquad 10^2\cdot 10\cdot 10^3,\qquad a^2\cdot a^3\cdot a^4$
\item $2^2\cdot 128,\qquad a^2\cdot b\cdot a^3,\qquad 81\x 3^2$
\item $a\cdot a^2\cdot a^3\cdots a^{100}$
\end{enumerate}
\item 利用指数运算律计算:
\begin{enumerate}
\item $21^2\x 15^2,\qquad 6^2\x(12\x 9)^3,\qquad (a\cdot b)^3\cdot b^2$
\item $3\x 3^3+4\x 4^3-15^2,\qquad (2^2+3^2)^2,\qquad (2^2)^2+(3^2)^2$
\item $(2\x3\x5)^2-2^3\x10^2,\qquad (a^2)^4\cdot (a^2)^2$
\end{enumerate}
\item 试说明: $$a^{m+1} \cdot a^{n}=a^{n+1} \cdot a^{m},\qquad
(a \cdot b)^{m+2}=a^{2} \cdot(a b)^{m} \cdot b^{2}
$$