~cytrogen/blog-public

blog-public/posts/3b.html -rw-r--r-- 59.8 KiB
88eebf3dCytrogen Deploy 2026-02-19 08:34:27 3 days ago
                                                                                
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
<!DOCTYPE html><html lang="zh" data-theme="dark"><head><meta charset="utf-8"><meta name="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1"><title>学术评估测验 - 总结 · Cytrogen 的个人博客</title><meta name="description" content="该文档是给自己复习用的。 并不包含所有的知识点,且知识点不一定正确。"><link rel="icon" href="../favicon.png"><link rel="canonical" href="https://cytrogen.icu/posts/3b.html"><link rel="webmention" href="https://webmention.io/cytrogen.icu/webmention"><link rel="me" href="https://m.otter.homes/@Cytrogen"><link rel="me" href="https://github.com/cytrogen"><meta name="fediverse:creator" content="@Cytrogen@m.otter.homes"><link rel="preload" href="../fonts/opensans-regular-latin.woff2" as="font" type="font/woff2" crossorigin="anonymous"><style>@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/opensans-regular-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  size-adjust: 107%;
  ascent-override: 97%;
  descent-override: 25%;
  line-gap-override: 0%;
}
</style><script>(function() {
  try {
    // 优先级:用户选择 > 系统偏好 > 默认浅色
    const saved = localStorage.getItem('theme');
    const theme = saved || 
      (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light');
    
    document.documentElement.setAttribute('data-theme', theme);
    document.documentElement.style.colorScheme = theme;
  } catch (error) {
    // 失败时使用默认主题,不阻塞渲染
    document.documentElement.setAttribute('data-theme', 'light');
  }
})();
</script><link rel="stylesheet" href="../css/ares.css"><script data-netlify-skip-bundle="true">(function() {
  document.addEventListener('DOMContentLoaded', function() {
    const theme = document.documentElement.getAttribute('data-theme');
    const pageWrapper = document.getElementById('page-wrapper');
    if (pageWrapper && theme) {
      pageWrapper.setAttribute('data-theme', theme);
    }
  });
})();

</script><!-- hexo injector head_end start -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.css">

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/hexo-math@4.0.0/dist/style.css">
<!-- hexo injector head_end end --><meta name="generator" content="Hexo 8.1.1"><link rel="alternate" href="atom.xml" title="Cytrogen 的个人博客" type="application/atom+xml">
</head><body><div id="page-wrapper"><a class="skip-link" href="#main-content">跳到主要内容</a><div class="wrap"><header><a class="logo-link" href="../index.html"><img src="../favicon.png" alt="logo"></a><div class="h-card visually-hidden"><img class="u-photo" src="https://cytrogen.icu/favicon.png" alt="Cytrogen"><a class="p-name u-url u-uid" href="https://cytrogen.icu">Cytrogen</a><p class="p-note">Cytrogen 的个人博客,Cytrogen's Blog</p><a class="u-url" rel="me noopener" target="_blank" href="https://m.otter.homes/@Cytrogen">Mastodon</a><a class="u-url" rel="me noopener" target="_blank" href="https://github.com/cytrogen">GitHub</a></div><nav class="site-nav"><div class="nav-main"><div class="nav-primary"><ul class="nav-list hidden-mobile"><li class="nav-item"><a class="nav-link" href="../index.html">首页</a></li></ul><div class="nav-tools"><div class="language-menu"><button class="language-toggle" type="button"><svg class="icon icon-globe" width="16" height="16" viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm7.5-6.923c-.67.204-1.335.82-1.887 1.855A7.97 7.97 0 0 0 5.145 4H7.5V1.077zM4.09 4a9.267 9.267 0 0 1 .64-1.539 6.7 6.7 0 0 1 .597-.933A7.025 7.025 0 0 0 2.255 4H4.09zm-.582 3.5c.03-.877.138-1.718.312-2.5H1.674a6.958 6.958 0 0 0-.656 2.5h2.49zM4.847 5a12.5 12.5 0 0 0-.338 2.5H7.5V5H4.847zM8.5 5v2.5h2.99a12.495 12.495 0 0 0-.337-2.5H8.5zM4.51 8.5a12.5 12.5 0 0 0 .337 2.5H7.5V8.5H4.51zm3.99 0V11h2.653c.187-.765.306-1.608.338-2.5H8.5zM5.145 12c.138.386.295.744.468 1.068.552 1.035 1.218 1.65 1.887 1.855V12H5.145zm.182 2.472a6.696 6.696 0 0 1-.597-.933A9.268 9.268 0 0 1 4.09 12H2.255a7.024 7.024 0 0 0 3.072 2.472zM3.82 11a13.652 13.652 0 0 1-.312-2.5h-2.49c.062.89.291 1.733.656 2.5H3.82zm6.853 3.472A7.024 7.024 0 0 0 13.745 12H11.91a9.27 9.27 0 0 1-.64 1.539 6.688 6.688 0 0 1-.597.933zM8.5 12v2.923c.67-.204 1.335-.82 1.887-1.855A7.97 7.97 0 0 0 10.855 12H8.5zm3.68-1h2.146c.365-.767.594-1.61.656-2.5h-2.49a13.65 13.65 0 0 1-.312 2.5zm2.802-3.5a6.959 6.959 0 0 0-.656-2.5H12.18c.174.782.282 1.623.312 2.5h2.49zM11.27 2.461c.247.464.462.98.64 1.539h1.835a7.024 7.024 0 0 0-3.072-2.472c.218.284.418.598.597.933zM10.855 4a7.966 7.966 0 0 0-.468-1.068C9.835 1.897 9.17 1.282 8.5 1.077V4h2.355z"></path></svg><span>中文</span></button><div class="language-dropdown"></div></div></div><div class="nav-controls"><div class="more-menu hidden-mobile"><button class="more-toggle" type="button"><span>更多</span><svg class="icon icon-chevron-down" width="12" height="12" viewBox="0 0 12 12" fill="currentColor" aria-hidden="true" focusable="false"><path d="M6 8.825c-.2 0-.4-.1-.5-.2l-3.3-3.3c-.3-.3-.3-.8 0-1.1s.8-.3 1.1 0l2.7 2.7 2.7-2.7c.3-.3.8-.3 1.1 0s.3.8 0 1.1l-3.3 3.3c-.1.1-.3.2-.5.2z"></path></svg></button><div class="more-dropdown"><ul class="dropdown-list"><li class="dropdown-item"><a class="nav-link" href="../archives/index.html">归档</a></li><li class="dropdown-item"><a class="nav-link" href="../categories/index.html">分类</a></li><li class="dropdown-item"><a class="nav-link" href="../tags/index.html">标签</a></li><li class="dropdown-item"><a class="nav-link" href="../about/index.html">关于</a></li><li class="dropdown-item"><a class="nav-link" href="../sitemap/index.html">领地地图</a></li></ul></div></div><div class="theme-switcher"><button class="theme-toggle" type="button" role="switch" aria-pressed="false" aria-label="切换主题"><div class="theme-icon moon-icon"><svg class="icon icon-moon" width="16" height="16" viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M6 .278a.768.768 0 0 1 .08.858 7.208 7.208 0 0 0-.878 3.46c0 4.021 3.278 7.277 7.318 7.277.527 0 1.04-.055 1.533-.16a.787.787 0 0 1 .81.316.733.733 0 0 1-.031.893A8.349 8.349 0 0 1 8.344 16C3.734 16 0 12.286 0 7.71 0 4.266 2.114 1.312 5.124.06A.752.752 0 0 1 6 .278z"></path></svg></div><div class="theme-icon sun-icon"><svg class="icon icon-sun" width="16" height="16" viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M8 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6zm0 1a4 4 0 1 0 0-8 4 4 0 0 0 0 8zM8 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 0zm0 13a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 13zm8-5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5zM3 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2A.5.5 0 0 1 3 8zm10.657-5.657a.5.5 0 0 1 0 .707l-1.414 1.415a.5.5 0 1 1-.707-.708l1.414-1.414a.5.5 0 0 1 .707 0zm-9.193 9.193a.5.5 0 0 1 0 .707L3.05 13.657a.5.5 0 0 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0zm9.193 2.121a.5.5 0 0 1-.707 0l-1.414-1.414a.5.5 0 0 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .707zM4.464 4.465a.5.5 0 0 1-.707 0L2.343 3.05a.5.5 0 1 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .708z"></path></svg></div></button></div><details class="mobile-menu-details hidden-desktop"><summary class="hamburger-menu" aria-label="nav.menu"><svg class="icon icon-bars" width="16" height="16" viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z"></path></svg><span class="menu-text">nav.menu</span></summary><div class="mobile-menu-dropdown"><ul class="mobile-nav-list"><li class="mobile-nav-item"><a class="mobile-nav-link" href="../index.html">首页</a></li><li class="mobile-nav-item"><a class="mobile-nav-link" href="../archives/index.html">归档</a></li><li class="mobile-nav-item"><a class="mobile-nav-link" href="../categories/index.html">分类</a></li><li class="mobile-nav-item"><a class="mobile-nav-link" href="../tags/index.html">标签</a></li><li class="mobile-nav-item"><a class="mobile-nav-link" href="../about/index.html">关于</a></li><li class="mobile-nav-item"><a class="mobile-nav-link" href="../sitemap/index.html">领地地图</a></li></ul></div></details></div></div></div></nav></header><main class="container" id="main-content" tabindex="-1"><div class="post"><article class="post-block h-entry"><div class="post-meta p-author h-card visually-hidden"><img class="author-avatar u-photo" src="../favicon.png" alt="Cytrogen"><span class="p-name">Cytrogen</span><a class="u-url" href="https://cytrogen.icu">https://cytrogen.icu</a></div><a class="post-permalink u-url u-uid visually-hidden" href="https://cytrogen.icu/posts/3b.html">永久链接</a><div class="p-summary visually-hidden"><p>该文档是给自己复习用的。</p>
<p>并不包含所有的知识点,且知识点不一定正确。</p></div><div class="visually-hidden"><a class="p-category" href="../categories/%E5%AD%A6%E6%9C%AF%E7%AC%94%E8%AE%B0/">学术笔记</a><a class="p-category" href="../tags/SAT/">SAT</a></div><h1 class="post-title p-name">学术评估测验 - 总结</h1><div class="post-info"><time class="post-date dt-published" datetime="2022-08-15T22:47:18.000Z">8/15/2022</time><time class="dt-updated visually-hidden" datetime="2026-02-09T17:16:55.213Z"></time></div><div class="post-content e-content"><html><head></head><body><p>该文档是给自己复习用的。</p>
<p>并不包含所有的知识点,且知识点不一定正确。</p>
<span id="more"></span>
<h1 id="目录"><a class="markdownIt-Anchor" href="#目录"></a> 目录</h1>
<details>
<ul>
<li><a href="#%E7%9B%AE%E5%BD%95">目录</a></li>
<li><a href="#%E5%8D%95%E8%AF%8D">单词</a></li>
<li><a href="#%E8%AF%AD%E6%B3%95">语法</a>
<ul>
<li><a href="#%E5%8F%A5%E5%AD%90%E6%8E%92%E5%BA%8F">句子排序</a></li>
<li><a href="#%E8%A1%A8%E8%BE%BE%E9%A3%8E%E6%A0%BC">表达风格</a></li>
<li><a href="#%E5%A2%9E%E5%87%8F%E5%8F%A5%E5%AD%90">增减句子</a></li>
<li><a href="#%E7%89%B9%E6%AE%8A%E5%8D%95%E5%A4%8D%E6%95%B0">特殊单复数</a></li>
<li><a href="#%E4%B8%A4%E8%80%85%E5%B9%B6%E5%88%97">两者并列</a></li>
<li><a href="#%E6%97%B6%E6%80%81">时态</a></li>
<li><a href="#%E5%9B%BA%E5%AE%9A%E6%90%AD%E9%85%8D">固定搭配</a></li>
<li><a href="#%E6%AF%94%E8%BE%83%E5%AF%B9%E8%B1%A1%E7%9A%84%E4%B8%80%E8%87%B4%E6%80%A7">比较对象的一致性</a></li>
<li><a href="#%E6%A0%87%E7%82%B9%E7%AC%A6%E5%8F%B7">标点符号</a></li>
<li><a href="#%E8%BF%9E%E8%AF%8D--%E9%80%BB%E8%BE%91%E8%AF%8D">连词 &amp; 逻辑词</a></li>
<li><a href="#%E5%8F%A5%E5%AD%90%E5%90%88%E5%B9%B6">句子合并</a></li>
<li><a href="#%E4%BB%A3%E8%AF%8D">代词</a></li>
<li><a href="#%E9%80%BB%E8%BE%91%E4%B8%BB%E8%AF%AD%E4%B8%80%E8%87%B4">逻辑主语一致</a></li>
<li><a href="#%E4%BB%8E%E5%8F%A5">从句</a></li>
</ul>
</li>
<li><a href="#%E6%95%B0%E5%AD%A6">数学</a>
<ul>
<li><a href="#%E6%A0%87%E5%87%86%E5%B7%AE">标准差</a></li>
<li><a href="#%E6%A0%87%E5%87%86%E8%AF%AF">标准误</a></li>
<li><a href="#%E5%BC%A7%E9%95%BF">弧长</a></li>
<li><a href="#%E7%99%BE%E5%88%86%E6%AF%94%E5%B7%AE%E5%88%AB">百分比差别</a></li>
<li><a href="#%E8%A7%92%E5%BA%A6">角度</a></li>
<li><a href="#%E5%BC%A7%E5%BA%A6">弧度</a></li>
<li><a href="#%E4%BA%8C%E6%AC%A1%E5%87%BD%E6%95%B0">二次函数</a></li>
<li><a href="#%E5%8D%95%E4%BD%8D%E6%8D%A2%E7%AE%97">单位换算</a></li>
<li><a href="#%E6%96%B9%E7%A8%8B%E7%BB%84">方程组</a></li>
<li><a href="#%E5%AE%9E%E9%AA%8C%E5%AF%B9%E7%85%A7%E7%BB%84">实验对照组</a></li>
<li><a href="#%E5%B9%B3%E5%9D%87%E5%80%BC">平均值</a></li>
<li><a href="#%E5%87%BD%E6%95%B0%E8%A1%A8%E8%BE%BE%E5%BC%8F">函数表达式</a></li>
<li><a href="#%E4%BA%8C%E6%AC%A1%E6%96%B9%E7%A8%8B%E7%9A%84%E6%A0%B9">二次方程的根</a></li>
<li><a href="#%E5%8D%95%E8%AF%8D-1">单词</a></li>
</ul>
</li>
</ul>
</details>
<center> ————————</center>
<h1 id="单词"><a class="markdownIt-Anchor" href="#单词"></a> 单词</h1>
<details>
<table>
<thead>
<tr>
<th>字母</th>
<th>单词</th>
<th>意思</th>
</tr>
</thead>
<tbody>
<tr>
<td>A</td>
<td>accredited</td>
<td>经认可的</td>
</tr>
<tr>
<td></td>
<td>accumulated</td>
<td>积聚、堆积</td>
</tr>
<tr>
<td></td>
<td>acquaintances</td>
<td>认识的人、熟人</td>
</tr>
<tr>
<td></td>
<td>adaptable</td>
<td>能适应的、适合的、可修改的</td>
</tr>
<tr>
<td></td>
<td>address</td>
<td>发表、对付、着手处理、解决</td>
</tr>
<tr>
<td></td>
<td>adopting</td>
<td>采取、接受、收养、正式通过、过继</td>
</tr>
<tr>
<td></td>
<td>advocate</td>
<td>提倡者、拥护者</td>
</tr>
<tr>
<td></td>
<td>afflict</td>
<td>使苦恼、折磨</td>
</tr>
<tr>
<td></td>
<td>agile</td>
<td>敏捷的、灵巧的</td>
</tr>
<tr>
<td></td>
<td>ambitious</td>
<td>有野心的</td>
</tr>
<tr>
<td></td>
<td>amid</td>
<td>在其中</td>
</tr>
<tr>
<td></td>
<td>anguish</td>
<td>剧痛、痛苦</td>
</tr>
<tr>
<td></td>
<td>answer</td>
<td>回答、反驳、适应、符合</td>
</tr>
<tr>
<td></td>
<td>anticipated</td>
<td>预期的、期望的</td>
</tr>
<tr>
<td></td>
<td>antifungal</td>
<td>抗真菌的</td>
</tr>
<tr>
<td></td>
<td>antique</td>
<td>古董、古物</td>
</tr>
<tr>
<td></td>
<td>aphids</td>
<td>蚜虫</td>
</tr>
<tr>
<td></td>
<td>apparatus</td>
<td>装置、器具</td>
</tr>
<tr>
<td></td>
<td>appearance</td>
<td>外观、外表</td>
</tr>
<tr>
<td></td>
<td>arousal</td>
<td>唤醒、觉醒</td>
</tr>
<tr>
<td></td>
<td>ascertain</td>
<td>查明</td>
</tr>
<tr>
<td></td>
<td>asserted</td>
<td>明确肯定、断言</td>
</tr>
<tr>
<td></td>
<td>assessing</td>
<td>评价、评估</td>
</tr>
<tr>
<td></td>
<td>assuring</td>
<td>使人放心的、使人有自信的</td>
</tr>
<tr>
<td></td>
<td>astonish</td>
<td>使惊讶</td>
</tr>
<tr>
<td></td>
<td>astrophysicists</td>
<td>天体物理学家</td>
</tr>
<tr>
<td></td>
<td>asymmetric</td>
<td>不对称的</td>
</tr>
<tr>
<td></td>
<td>augment</td>
<td>增长、增加</td>
</tr>
<tr>
<td></td>
<td>autobiographical</td>
<td>自传的</td>
</tr>
<tr>
<td></td>
<td>auxiliary</td>
<td>辅助的、备用的</td>
</tr>
<tr>
<td></td>
<td>avian</td>
<td>鸟类的</td>
</tr>
<tr>
<td>B</td>
<td>beanstalks</td>
<td>豆茎</td>
</tr>
<tr>
<td></td>
<td>betokened</td>
<td>预示</td>
</tr>
<tr>
<td></td>
<td>biomarkers</td>
<td>生物标记</td>
</tr>
<tr>
<td></td>
<td>birthed</td>
<td>生成了、生育了</td>
</tr>
<tr>
<td></td>
<td>blunt</td>
<td>坦率地、钝的</td>
</tr>
<tr>
<td></td>
<td>bolder</td>
<td>更大胆的</td>
</tr>
<tr>
<td></td>
<td>borrowing</td>
<td>借款、贷款</td>
</tr>
<tr>
<td></td>
<td>boudoir</td>
<td>闺房</td>
</tr>
<tr>
<td></td>
<td>breed</td>
<td>饲养、繁殖</td>
</tr>
<tr>
<td></td>
<td>broad-bean</td>
<td>蚕豆</td>
</tr>
<tr>
<td>C</td>
<td>carriage</td>
<td>马车、客车</td>
</tr>
<tr>
<td></td>
<td>casual</td>
<td>偶然的、不经意的</td>
</tr>
<tr>
<td></td>
<td>causal</td>
<td>因果的</td>
</tr>
<tr>
<td></td>
<td>Centenary</td>
<td>一百年</td>
</tr>
<tr>
<td></td>
<td>chambers</td>
<td>房间、室</td>
</tr>
<tr>
<td></td>
<td>chickadees</td>
<td>山雀</td>
</tr>
<tr>
<td></td>
<td>citation</td>
<td>引用</td>
</tr>
<tr>
<td></td>
<td>cite</td>
<td>引用</td>
</tr>
<tr>
<td></td>
<td>civility</td>
<td>礼貌、礼仪</td>
</tr>
<tr>
<td></td>
<td>clamber</td>
<td>攀登、爬上</td>
</tr>
<tr>
<td></td>
<td>cobbled together</td>
<td>拼凑起来的</td>
</tr>
<tr>
<td></td>
<td>coined</td>
<td>创造了、创设了</td>
</tr>
<tr>
<td></td>
<td>cognition</td>
<td>认识、识别</td>
</tr>
<tr>
<td></td>
<td>coherently</td>
<td>结合地</td>
</tr>
<tr>
<td></td>
<td>commemoration</td>
<td>纪念、庆典</td>
</tr>
<tr>
<td></td>
<td>commitment</td>
<td>委托</td>
</tr>
<tr>
<td></td>
<td>compelled</td>
<td>强迫、迫使</td>
</tr>
<tr>
<td></td>
<td>compensation</td>
<td>补偿、工资</td>
</tr>
<tr>
<td></td>
<td>component</td>
<td>元件、组件、成分</td>
</tr>
<tr>
<td></td>
<td>compounds</td>
<td>化合物</td>
</tr>
<tr>
<td></td>
<td>comprehended</td>
<td>理解、领会</td>
</tr>
<tr>
<td></td>
<td>comprehension</td>
<td>理解、包含</td>
</tr>
<tr>
<td></td>
<td>conceived</td>
<td>构想、设想</td>
</tr>
<tr>
<td></td>
<td>concentrations</td>
<td>浓度</td>
</tr>
<tr>
<td></td>
<td>concoction</td>
<td>调制、调和</td>
</tr>
<tr>
<td></td>
<td>conduit</td>
<td>导管、水管</td>
</tr>
<tr>
<td></td>
<td>conglomerations</td>
<td>团块、聚集</td>
</tr>
<tr>
<td></td>
<td>conquests</td>
<td>征服、获取</td>
</tr>
<tr>
<td></td>
<td>consensual</td>
<td>交感的、在两方愿意下成立的</td>
</tr>
<tr>
<td></td>
<td>consistent</td>
<td>一致的、并立的</td>
</tr>
<tr>
<td></td>
<td>conspicuous</td>
<td>显眼的</td>
</tr>
<tr>
<td></td>
<td>constellation</td>
<td>星座</td>
</tr>
<tr>
<td></td>
<td>cosmos</td>
<td>宇宙</td>
</tr>
<tr>
<td></td>
<td>counterintuitive</td>
<td>违反直觉的</td>
</tr>
<tr>
<td></td>
<td>cultivation</td>
<td>培养、耕作</td>
</tr>
<tr>
<td></td>
<td>curatorial</td>
<td>管理者的</td>
</tr>
<tr>
<td>D</td>
<td>decommissioned</td>
<td>停用、退役</td>
</tr>
<tr>
<td></td>
<td>delineation</td>
<td>略图、描述</td>
</tr>
<tr>
<td></td>
<td>demanded</td>
<td>要求</td>
</tr>
<tr>
<td></td>
<td>demeanour</td>
<td>行为、举止</td>
</tr>
<tr>
<td></td>
<td>depleting</td>
<td>耗尽、使枯竭</td>
</tr>
<tr>
<td></td>
<td>deprivation</td>
<td>剥夺</td>
</tr>
<tr>
<td></td>
<td>derived</td>
<td>导出的、衍生的</td>
</tr>
<tr>
<td></td>
<td>devoted</td>
<td>投入</td>
</tr>
<tr>
<td></td>
<td>differing</td>
<td>不同</td>
</tr>
<tr>
<td></td>
<td>dilate</td>
<td>扩大、膨胀、详述</td>
</tr>
<tr>
<td></td>
<td>diminished</td>
<td>减弱的</td>
</tr>
<tr>
<td></td>
<td>disfluencies</td>
<td>不流利</td>
</tr>
<tr>
<td></td>
<td>disparity</td>
<td>不一致、差异</td>
</tr>
<tr>
<td></td>
<td>dispersal</td>
<td>散布、传播</td>
</tr>
<tr>
<td></td>
<td>displacements</td>
<td>换置、取代</td>
</tr>
<tr>
<td></td>
<td>disproportion</td>
<td>不均衡</td>
</tr>
<tr>
<td></td>
<td>dissolution</td>
<td>分解、溶解</td>
</tr>
<tr>
<td></td>
<td>distanced</td>
<td>远离、疏离</td>
</tr>
<tr>
<td></td>
<td>ditched</td>
<td>抛弃</td>
</tr>
<tr>
<td></td>
<td>diverse</td>
<td>不同的、变化多的</td>
</tr>
<tr>
<td></td>
<td>divulge</td>
<td>泄露、透露</td>
</tr>
<tr>
<td></td>
<td>domestication</td>
<td>驯养</td>
</tr>
<tr>
<td></td>
<td>dropped</td>
<td>降低、放弃</td>
</tr>
<tr>
<td>E</td>
<td>efforts</td>
<td>努力</td>
</tr>
<tr>
<td></td>
<td>elicited</td>
<td>引出、探出</td>
</tr>
<tr>
<td></td>
<td>elusive</td>
<td>难懂的、易忘的</td>
</tr>
<tr>
<td></td>
<td>embodied cognition</td>
<td>体化认知</td>
</tr>
<tr>
<td></td>
<td>emergent</td>
<td>紧急的、以外的</td>
</tr>
<tr>
<td></td>
<td>emit</td>
<td>发出、发射</td>
</tr>
<tr>
<td></td>
<td>endeavor</td>
<td>努力、尽力</td>
</tr>
<tr>
<td></td>
<td>endurance</td>
<td>忍耐</td>
</tr>
<tr>
<td></td>
<td>engrossed</td>
<td>全神贯注的</td>
</tr>
<tr>
<td></td>
<td>enormous</td>
<td>巨大的、庞大的</td>
</tr>
<tr>
<td></td>
<td>enshrouding</td>
<td>掩盖、遮掩</td>
</tr>
<tr>
<td></td>
<td>ensuring</td>
<td>确保、使(人)获得、使安全</td>
</tr>
<tr>
<td></td>
<td>envisioned</td>
<td>想象、展望</td>
</tr>
<tr>
<td></td>
<td>equilibrium</td>
<td>平衡、均衡</td>
</tr>
<tr>
<td></td>
<td>established</td>
<td>(幼苗)成活</td>
</tr>
<tr>
<td></td>
<td>evoke</td>
<td>唤起</td>
</tr>
<tr>
<td></td>
<td>excluded</td>
<td>被排除、不包括</td>
</tr>
<tr>
<td></td>
<td>exerted</td>
<td>外露的</td>
</tr>
<tr>
<td></td>
<td>existing</td>
<td>现存的、现有的</td>
</tr>
<tr>
<td>F</td>
<td>faint</td>
<td>模糊的</td>
</tr>
<tr>
<td></td>
<td>fashionable</td>
<td>时髦的</td>
</tr>
<tr>
<td></td>
<td>fathom</td>
<td>摸索</td>
</tr>
<tr>
<td></td>
<td>feral</td>
<td>凶猛的</td>
</tr>
<tr>
<td></td>
<td>fickle</td>
<td>变幻无常的、浮躁的、薄情的</td>
</tr>
<tr>
<td></td>
<td>fierce</td>
<td>凶猛的</td>
</tr>
<tr>
<td></td>
<td>filaments</td>
<td>丝状物</td>
</tr>
<tr>
<td></td>
<td>firm</td>
<td>坚定的、坚强的</td>
</tr>
<tr>
<td></td>
<td>fixation</td>
<td>定置、固定</td>
</tr>
<tr>
<td></td>
<td>flockmates</td>
<td>同伴</td>
</tr>
<tr>
<td></td>
<td>foppishness</td>
<td>浮华的</td>
</tr>
<tr>
<td></td>
<td>foraging</td>
<td>搜寻</td>
</tr>
<tr>
<td></td>
<td>forgeries</td>
<td>伪造</td>
</tr>
<tr>
<td></td>
<td>fostered</td>
<td>培养、促进</td>
</tr>
<tr>
<td></td>
<td>freelance</td>
<td>自由职业</td>
</tr>
<tr>
<td></td>
<td>fusion</td>
<td>聚变</td>
</tr>
<tr>
<td>G</td>
<td>gained</td>
<td>获得、得到</td>
</tr>
<tr>
<td></td>
<td>genetic profile</td>
<td>基因图谱、遗传基因</td>
</tr>
<tr>
<td></td>
<td>genome</td>
<td>基因组</td>
</tr>
<tr>
<td></td>
<td>given</td>
<td>鉴于</td>
</tr>
<tr>
<td></td>
<td>grapple</td>
<td>抓住、掌握</td>
</tr>
<tr>
<td></td>
<td>gratify</td>
<td>使高兴、使满足</td>
</tr>
<tr>
<td></td>
<td>grieve</td>
<td>使悲伤</td>
</tr>
<tr>
<td></td>
<td>guarantees</td>
<td>担保</td>
</tr>
<tr>
<td>H</td>
<td>hampers</td>
<td>妨碍、束缚、限制</td>
</tr>
<tr>
<td></td>
<td>harbored</td>
<td>庇护</td>
</tr>
<tr>
<td></td>
<td>harmonious</td>
<td>和谐的</td>
</tr>
<tr>
<td></td>
<td>hastily</td>
<td>匆忙地、急躁地</td>
</tr>
<tr>
<td></td>
<td>heritage</td>
<td>遗产、继承物</td>
</tr>
<tr>
<td></td>
<td>hippocampus</td>
<td>海马</td>
</tr>
<tr>
<td></td>
<td>homogeneously</td>
<td>同一的</td>
</tr>
<tr>
<td></td>
<td>hyphae</td>
<td>菌丝</td>
</tr>
<tr>
<td>I</td>
<td>implication</td>
<td>牵连、含义</td>
</tr>
<tr>
<td></td>
<td>inclination</td>
<td>倾向、趋向</td>
</tr>
<tr>
<td></td>
<td>indissoluble</td>
<td>不能分解的、坚固的</td>
</tr>
<tr>
<td></td>
<td>indulge</td>
<td>放任、迁就</td>
</tr>
<tr>
<td></td>
<td>inland reservoirs</td>
<td>内陆水库</td>
</tr>
<tr>
<td></td>
<td>infer</td>
<td>推断</td>
</tr>
<tr>
<td></td>
<td>infrared</td>
<td>红外线的</td>
</tr>
<tr>
<td></td>
<td>innate</td>
<td>先天的</td>
</tr>
<tr>
<td></td>
<td>inoculated</td>
<td>接种</td>
</tr>
<tr>
<td></td>
<td>inscrutable</td>
<td>难以了解的</td>
</tr>
<tr>
<td></td>
<td>insolent</td>
<td>粗野的、无礼的</td>
</tr>
<tr>
<td></td>
<td>insuring</td>
<td>保证、确保</td>
</tr>
<tr>
<td></td>
<td>integrate</td>
<td>复杂地</td>
</tr>
<tr>
<td></td>
<td>intensity</td>
<td>强度</td>
</tr>
<tr>
<td></td>
<td>interpersonal</td>
<td>人与人之间的</td>
</tr>
<tr>
<td></td>
<td>intimacies</td>
<td>亲密、亲切</td>
</tr>
<tr>
<td></td>
<td>intimate</td>
<td>私人的</td>
</tr>
<tr>
<td></td>
<td>intoxicated</td>
<td>极其兴奋的</td>
</tr>
<tr>
<td></td>
<td>invoke</td>
<td>实行、调用、恳请、祈求</td>
</tr>
<tr>
<td></td>
<td>irremediably</td>
<td>无可救药地</td>
</tr>
<tr>
<td></td>
<td>irrespective</td>
<td>不顾一切的</td>
</tr>
<tr>
<td></td>
<td>irritate</td>
<td>激怒</td>
</tr>
<tr>
<td>J</td>
<td>jibes</td>
<td>相符</td>
</tr>
<tr>
<td></td>
<td>jolting</td>
<td>震动</td>
</tr>
<tr>
<td></td>
<td>junked</td>
<td>丢弃、废弃</td>
</tr>
<tr>
<td></td>
<td>juvenile</td>
<td>少年的</td>
</tr>
<tr>
<td>L</td>
<td>legumes</td>
<td>豆类蔬菜</td>
</tr>
<tr>
<td></td>
<td>leguminous</td>
<td>豆科的</td>
</tr>
<tr>
<td></td>
<td>lens</td>
<td>透镜、镜头、晶状体</td>
</tr>
<tr>
<td></td>
<td>lilt</td>
<td>轻快的调子或动作</td>
</tr>
<tr>
<td>M</td>
<td>malleable</td>
<td>有延展性的、易适应的</td>
</tr>
<tr>
<td></td>
<td>meaty</td>
<td>似肉的、多肉的</td>
</tr>
<tr>
<td></td>
<td>Medieval</td>
<td>中世纪的</td>
</tr>
<tr>
<td></td>
<td>mesh</td>
<td>网状物、陷阱</td>
</tr>
<tr>
<td></td>
<td>mesocosms</td>
<td>中型实验生态系</td>
</tr>
<tr>
<td></td>
<td>metabolism</td>
<td>新陈代谢</td>
</tr>
<tr>
<td></td>
<td>microbial</td>
<td>微生物的</td>
</tr>
<tr>
<td></td>
<td>mimicked</td>
<td>模仿过的</td>
</tr>
<tr>
<td></td>
<td>miraculous</td>
<td>奇迹的、不可思议的</td>
</tr>
<tr>
<td></td>
<td>mobbing</td>
<td>聚众扰乱</td>
</tr>
<tr>
<td></td>
<td>monoculture</td>
<td>单一栽培、单一农作物</td>
</tr>
<tr>
<td></td>
<td>mortified</td>
<td>使受辱</td>
</tr>
<tr>
<td></td>
<td>mutual</td>
<td>相互的、共有的</td>
</tr>
<tr>
<td>N</td>
<td>novel</td>
<td>新奇的、异常的</td>
</tr>
<tr>
<td>O</td>
<td>obstacle</td>
<td>障碍、妨碍物</td>
</tr>
<tr>
<td></td>
<td>occasions</td>
<td>机会、场合</td>
</tr>
<tr>
<td></td>
<td>occupy</td>
<td>占领</td>
</tr>
<tr>
<td></td>
<td>odorless</td>
<td>没有气味的</td>
</tr>
<tr>
<td></td>
<td>ongoing</td>
<td>进行的、前进的</td>
</tr>
<tr>
<td></td>
<td>opposes</td>
<td>反对、抵制</td>
</tr>
<tr>
<td></td>
<td>ordinary</td>
<td>平凡、普通</td>
</tr>
<tr>
<td></td>
<td>orientation</td>
<td>定方位、方向</td>
</tr>
<tr>
<td>P</td>
<td>paleontologists</td>
<td>古生物学者</td>
</tr>
<tr>
<td></td>
<td>pang</td>
<td>剧痛、悲痛</td>
</tr>
<tr>
<td></td>
<td>panoply</td>
<td>全套披甲</td>
</tr>
<tr>
<td></td>
<td>parasites</td>
<td>寄生虫</td>
</tr>
<tr>
<td></td>
<td>parids</td>
<td>山雀、雏鸟</td>
</tr>
<tr>
<td></td>
<td>patches</td>
<td>斑块</td>
</tr>
<tr>
<td></td>
<td>pathogens</td>
<td>病原体</td>
</tr>
<tr>
<td></td>
<td>pelvis</td>
<td>骨盆</td>
</tr>
<tr>
<td></td>
<td>penetrated</td>
<td>穿透</td>
</tr>
<tr>
<td></td>
<td>perceived</td>
<td>感觉、认为</td>
</tr>
<tr>
<td></td>
<td>perceptibly</td>
<td>显然地</td>
</tr>
<tr>
<td></td>
<td>perch</td>
<td>栖木、高位</td>
</tr>
<tr>
<td></td>
<td>perched</td>
<td>栖息着的</td>
</tr>
<tr>
<td></td>
<td>perils</td>
<td>极大危险</td>
</tr>
<tr>
<td></td>
<td>perspective</td>
<td>观点的、透视的</td>
</tr>
<tr>
<td></td>
<td>pertained</td>
<td>涉及、关于</td>
</tr>
<tr>
<td></td>
<td>phenomenon</td>
<td>现象、迹象</td>
</tr>
<tr>
<td></td>
<td>pigmentation</td>
<td>着色</td>
</tr>
<tr>
<td></td>
<td>piqued</td>
<td>伤害…… 的自尊心</td>
</tr>
<tr>
<td></td>
<td>plagues</td>
<td>折磨、使得灾祸</td>
</tr>
<tr>
<td></td>
<td>pledged</td>
<td>保证、许诺、发誓</td>
</tr>
<tr>
<td></td>
<td>pollsters</td>
<td>民意调查者</td>
</tr>
<tr>
<td></td>
<td>polycultural</td>
<td>多文化的</td>
</tr>
<tr>
<td></td>
<td>porous</td>
<td>多孔的、能渗透的</td>
</tr>
<tr>
<td></td>
<td>prescriptive</td>
<td>规定的、指定的</td>
</tr>
<tr>
<td></td>
<td>preserving</td>
<td>保留、保存</td>
</tr>
<tr>
<td></td>
<td>presumably</td>
<td>推测上、大概</td>
</tr>
<tr>
<td></td>
<td>presuming</td>
<td>假定、推测、擅自、意味着、相信</td>
</tr>
<tr>
<td></td>
<td>pretending</td>
<td>假装、伪装</td>
</tr>
<tr>
<td></td>
<td>prevailing</td>
<td>盛行的、优势的</td>
</tr>
<tr>
<td></td>
<td>prevalence</td>
<td>流行、盛行</td>
</tr>
<tr>
<td></td>
<td>probes</td>
<td>探针、探头、探测仪</td>
</tr>
<tr>
<td></td>
<td>prodigious</td>
<td>惊人的</td>
</tr>
<tr>
<td></td>
<td>prone</td>
<td>有…… 倾向的</td>
</tr>
<tr>
<td></td>
<td>proscriptive</td>
<td>禁止的、放逐的</td>
</tr>
<tr>
<td></td>
<td>prospective</td>
<td>潜在的、有望的</td>
</tr>
<tr>
<td></td>
<td>purpose</td>
<td>目的、用途、效果、意向</td>
</tr>
<tr>
<td>R</td>
<td>rational</td>
<td>理性的、合理的</td>
</tr>
<tr>
<td></td>
<td>reassert</td>
<td>再断言、重复主张</td>
</tr>
<tr>
<td></td>
<td>recedes</td>
<td>逐渐远离</td>
</tr>
<tr>
<td></td>
<td>recruit</td>
<td>征募、招聘</td>
</tr>
<tr>
<td></td>
<td>removed</td>
<td>移除</td>
</tr>
<tr>
<td></td>
<td>repercussions</td>
<td>反响</td>
</tr>
<tr>
<td></td>
<td>report</td>
<td>报告、报道</td>
</tr>
<tr>
<td></td>
<td>resists</td>
<td>阻止、抵抗、对抗</td>
</tr>
<tr>
<td></td>
<td>retrieval</td>
<td>取回、恢复</td>
</tr>
<tr>
<td></td>
<td>revered</td>
<td>崇敬的</td>
</tr>
<tr>
<td></td>
<td>revival</td>
<td>复兴、苏醒</td>
</tr>
<tr>
<td></td>
<td>ripple effect</td>
<td>连锁反应、骨牌效应、波纹效应</td>
</tr>
<tr>
<td></td>
<td>rudimentary</td>
<td>基本的、初步的</td>
</tr>
<tr>
<td>S</td>
<td>sanction</td>
<td>认可、核准、同意、裁决</td>
</tr>
<tr>
<td></td>
<td>scarcely</td>
<td>简直不、一定不、仅仅</td>
</tr>
<tr>
<td></td>
<td>scenario</td>
<td>情节、剧本</td>
</tr>
<tr>
<td></td>
<td>scrutinize</td>
<td>仔细检查</td>
</tr>
<tr>
<td></td>
<td>secrete</td>
<td>隐藏</td>
</tr>
<tr>
<td></td>
<td>securing</td>
<td>固定住的</td>
</tr>
<tr>
<td></td>
<td>seductive</td>
<td>诱惑的、引人注意的</td>
</tr>
<tr>
<td></td>
<td>self-referential</td>
<td>自我指认的</td>
</tr>
<tr>
<td></td>
<td>separated</td>
<td>分离、分开</td>
</tr>
<tr>
<td></td>
<td>sever</td>
<td>切断、脱离</td>
</tr>
<tr>
<td></td>
<td>sight</td>
<td>视野</td>
</tr>
<tr>
<td></td>
<td>silhouette</td>
<td>轮廓、剪影</td>
</tr>
<tr>
<td></td>
<td>site</td>
<td>地址</td>
</tr>
<tr>
<td></td>
<td>solemn</td>
<td>严肃的、庄严的</td>
</tr>
<tr>
<td></td>
<td>solidarity</td>
<td>团结</td>
</tr>
<tr>
<td></td>
<td>solitude</td>
<td>孤独、孤寂</td>
</tr>
<tr>
<td></td>
<td>stabilized</td>
<td>稳定</td>
</tr>
<tr>
<td></td>
<td>stead</td>
<td>用处、好处</td>
</tr>
<tr>
<td></td>
<td>sterile</td>
<td>无菌的</td>
</tr>
<tr>
<td></td>
<td>sticklebacks</td>
<td>棘鱼</td>
</tr>
<tr>
<td></td>
<td>stimuli</td>
<td>刺激物</td>
</tr>
<tr>
<td></td>
<td>Styrofoam</td>
<td>泡沫聚苯乙烯</td>
</tr>
<tr>
<td></td>
<td>subdues</td>
<td>征服、克制、制服</td>
</tr>
<tr>
<td></td>
<td>subterranean</td>
<td>地下的、秘密的</td>
</tr>
<tr>
<td></td>
<td>subtly</td>
<td>巧妙地</td>
</tr>
<tr>
<td></td>
<td>supercilious</td>
<td>傲慢的、自大的</td>
</tr>
<tr>
<td></td>
<td>surface tension</td>
<td>表面张力</td>
</tr>
<tr>
<td></td>
<td>surviving</td>
<td>依然健在的、未死的</td>
</tr>
<tr>
<td></td>
<td>symbiotic</td>
<td>共生的</td>
</tr>
<tr>
<td>T</td>
<td>tactile</td>
<td>触觉的</td>
</tr>
<tr>
<td></td>
<td>temporal</td>
<td>暂时的</td>
</tr>
<tr>
<td></td>
<td>tendencies</td>
<td>趋向</td>
</tr>
<tr>
<td></td>
<td>tentative</td>
<td>犹豫不定的</td>
</tr>
<tr>
<td></td>
<td>theorize</td>
<td>理论化</td>
</tr>
<tr>
<td></td>
<td>threads</td>
<td>纤维</td>
</tr>
<tr>
<td></td>
<td>toil</td>
<td>苦干、跋涉</td>
</tr>
<tr>
<td></td>
<td>tonal</td>
<td>音调的</td>
</tr>
<tr>
<td></td>
<td>traverse</td>
<td>穿过、经过</td>
</tr>
<tr>
<td>U</td>
<td>unamimously</td>
<td>全体一致地、无异议地</td>
</tr>
<tr>
<td></td>
<td>unbeknownst</td>
<td>最不为人知的</td>
</tr>
<tr>
<td></td>
<td>undertake</td>
<td>保证、承担、同意、接受<br>表从事</td>
</tr>
<tr>
<td></td>
<td>unimpeded</td>
<td>无阻的</td>
</tr>
<tr>
<td></td>
<td>universally</td>
<td>普遍的、一般的</td>
</tr>
<tr>
<td></td>
<td>unlike</td>
<td>不像</td>
</tr>
<tr>
<td></td>
<td>unparalleled</td>
<td>无比的、无双的</td>
</tr>
<tr>
<td></td>
<td>unparatable</td>
<td>不可口的、使人不快的</td>
</tr>
<tr>
<td></td>
<td>unspecified</td>
<td>未特别指出的、未特别提到的</td>
</tr>
<tr>
<td></td>
<td>utterly</td>
<td>完全地、全然</td>
</tr>
<tr>
<td>V</td>
<td>vacant</td>
<td>空置的</td>
</tr>
<tr>
<td></td>
<td>vexed</td>
<td>使烦恼、使苦恼</td>
</tr>
<tr>
<td></td>
<td>violated</td>
<td>违反、妨碍</td>
</tr>
<tr>
<td></td>
<td>viscoelastic</td>
<td>粘弹性的</td>
</tr>
<tr>
<td></td>
<td>vividness</td>
<td>鲜艳、逼真</td>
</tr>
<tr>
<td></td>
<td>volatile</td>
<td>可变的、不稳定的<br>挥发物</td>
</tr>
<tr>
<td>W</td>
<td>wasps</td>
<td>黄蜂</td>
</tr>
<tr>
<td></td>
<td>whence</td>
<td>从何处、从哪个</td>
</tr>
<tr>
<td></td>
<td>winced</td>
<td>畏缩、退避</td>
</tr>
<tr>
<td></td>
<td>withheld</td>
<td>保留、扣留</td>
</tr>
<tr>
<td>Y</td>
<td>yardstick</td>
<td>计算标准</td>
</tr>
</tbody>
</table>
</details>
<h1 id="语法"><a class="markdownIt-Anchor" href="#语法"></a> 语法</h1>
<h2 id="句子排序"><a class="markdownIt-Anchor" href="#句子排序"></a> 句子排序</h2>
<details>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">有时句子排序可以仅靠看主语来得出答案。</span><br><span class="line">例如当插入语的主语是代词时,就要排除掉没有出现过该指代的物体或人的句子。</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="表达风格"><a class="markdownIt-Anchor" href="#表达风格"></a> 表达风格</h2>
<details>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">表达风格的题不能使用带有修辞的选项,要使用带书面表达的。</span><br></pre></td></tr></tbody></table></figure>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">书面表达:</span><br><span class="line">find one's way [to / into] sth:成功地达到了某个效果</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="增减句子"><a class="markdownIt-Anchor" href="#增减句子"></a> 增减句子</h2>
<details>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">插入句对句子而言是否有意义,例如尾句的插入句对该段落的总结有没有意义。</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="特殊单复数"><a class="markdownIt-Anchor" href="#特殊单复数"></a> 特殊单复数</h2>
<details>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">mice 是 mouse 的复数。</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="两者并列"><a class="markdownIt-Anchor" href="#两者并列"></a> 两者并列</h2>
<details>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">两个 that 从句的并列:"... that... and that ...."</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="时态"><a class="markdownIt-Anchor" href="#时态"></a> 时态</h2>
<details>
<table>
<thead>
<tr>
<th style="text-align:center"></th>
<th style="text-align:center">一般时</th>
<th style="text-align:center">进行时</th>
<th style="text-align:center">完成时</th>
<th style="text-align:center">完成进行时</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:center">现在</td>
<td style="text-align:center">一般现在时</td>
<td style="text-align:center">现在进行时</td>
<td style="text-align:center">现在完成时</td>
<td style="text-align:center">现在完成进行时</td>
</tr>
<tr>
<td style="text-align:center">过去</td>
<td style="text-align:center">一般过去时</td>
<td style="text-align:center">过去进行时</td>
<td style="text-align:center">过去完成时</td>
<td style="text-align:center">过去完成进行时</td>
</tr>
<tr>
<td style="text-align:center">将来</td>
<td style="text-align:center">一般将来时</td>
<td style="text-align:center">将来进行时</td>
<td style="text-align:center">将来完成时</td>
<td style="text-align:center">将来完成进行时</td>
</tr>
<tr>
<td style="text-align:center">过去将来</td>
<td style="text-align:center">一般过去将来时</td>
<td style="text-align:center">过去将来进行时</td>
<td style="text-align:center">过去将来完成时</td>
<td style="text-align:center">过去将来完成进行时</td>
</tr>
</tbody>
</table>
<details>
<blockquote>
<p>一般现在时:<br>
<code>teach</code><br>
<code>teaches</code></p>
<blockquote>
<p><code>usually</code><br>
<code>every day</code></p>
</blockquote>
</blockquote>
<blockquote>
<p>一般过去时:<br>
<code>taught</code></p>
<blockquote>
<p><code>yesterday</code><br>
<code>just now</code></p>
</blockquote>
</blockquote>
<blockquote>
<p>一般将来时:<br>
<code>will teach</code><br>
<code>be going to teach</code><br>
<code>shall teach</code></p>
<blockquote>
<p><code>later</code><br>
<code>in the future</code></p>
</blockquote>
</blockquote>
<blockquote>
<p>一般过去将来时:<br>
<code>would teach</code><br>
<code>should teach</code></p>
<blockquote>
<p>宾语从句中,例 <code>I knew he would come</code><br>
虚拟语气中,例 <code>If I were you, I would go</code><br>
<code>should</code> 少用</p>
</blockquote>
</blockquote>
<blockquote>
<p>现在进行时:<br>
<code>am teaching</code><br>
<code>is teaching</code><br>
<code>are teaching</code></p>
<blockquote>
<p><code>now</code></p>
</blockquote>
</blockquote>
<blockquote>
<p>过去进行时:<br>
<code>was teaching</code><br>
<code>were teaching</code></p>
<blockquote>
<p><code>at that time</code><br>
<code>while</code></p>
</blockquote>
</blockquote>
<blockquote>
<p>将来进行时:<br>
<code>will be teaching</code><br>
<code>be going to teaching</code><br>
<code>shall be teaching</code></p>
<blockquote>
<p><strong>一般将来时</strong>,只是强调动作的进行状态</p>
</blockquote>
</blockquote>
<blockquote>
<p>过去将来进行时:<br>
<code>would be teaching</code><br>
<code>should be teaching</code></p>
<blockquote>
<p><strong>一般过去将来时</strong>,只是强调动作的进行状态</p>
</blockquote>
</blockquote>
<blockquote>
<p>现在完成时:<br>
<code>has taught</code><br>
<code>have taught</code></p>
<blockquote>
<p><code>already</code><br>
<code>just</code><br>
<code>yet</code></p>
</blockquote>
</blockquote>
<blockquote>
<p>过去完成时:<br>
<code>had taught</code></p>
<blockquote>
<p><code>by the end of last year/term</code><br>
从句是过去式</p>
</blockquote>
</blockquote>
<blockquote>
<p>将来完成时:<br>
<code>will have taught</code><br>
<code>be going to have taught</code><br>
<code>shall have taught</code></p>
<blockquote>
<p><code>by then</code><br>
<code>by the end of next month/year</code></p>
</blockquote>
</blockquote>
<blockquote>
<p>过去将来完成时:<br>
<code>would have taught</code><br>
<code>should have taught</code></p>
<blockquote>
<p>虚拟语气中,表示对过去已经发生的事情的建议<br>
<code>I would have gone there, if I had been invited</code><br>
<code>You shouldn't have done it</code></p>
</blockquote>
</blockquote>
<blockquote>
<p>现在完成进行时:<br>
<code>has been teaching</code><br>
<code>have been teaching</code></p>
<blockquote>
<p><code>since</code><br>
<code>for</code></p>
</blockquote>
</blockquote>
<blockquote>
<p>过去完成进行时:<br>
<code>had been teaching</code></p>
<blockquote>
<p><strong>过去完成时</strong>,只是强调动作的过程以及延续性</p>
</blockquote>
</blockquote>
<blockquote>
<p>将来完成进行时:<br>
<code>will have been teaching</code><br>
<code>be going to have been teaching</code><br>
<code>shall have been teaching</code></p>
<blockquote>
<p>很少使用</p>
</blockquote>
</blockquote>
<blockquote>
<p>过去将来完成进行时:<br>
<code>would have been teaching</code><br>
<code>should have been teaching</code></p>
<blockquote>
<p><strong>过去将来完成时</strong>,但这个很少用</p>
</blockquote>
</blockquote>
</details>
<div class="danger">
<p>时态题不需要也不可能完全和上下句时态相同,所以不能盲目地看上下句,而是要看这句话在上下文里表达的是什么语义逻辑</p>
</div>
</details>
<h2 id="固定搭配"><a class="markdownIt-Anchor" href="#固定搭配"></a> 固定搭配</h2>
<details>
<blockquote>
<p><code>prevents sth from</code></p>
</blockquote>
<blockquote>
<p><code>be subject to</code><br>
<em>受到…… 影响</em><em>受…… 支配</em><em>服从于……</em></p>
<blockquote>
<p><code>be subjected to</code><br>
<em>使遭受(糟糕的东西、坏东西)</em></p>
</blockquote>
</blockquote>
<blockquote>
<p><code>and which</code><br>
<em>而其中</em><em>和其中</em><em>以及哪些</em></p>
</blockquote>
<blockquote>
<p><code>by which</code><br>
<em>由……</em><em>凭……</em></p>
</blockquote>
<blockquote>
<p><code>distinct from</code><br>
<em>不同于……</em></p>
</blockquote>
<blockquote>
<p><code>dreamed up</code><br>
<em>梦见了</em></p>
</blockquote>
<blockquote>
<p><code>for which</code><br>
<em>为其中的……</em><em>为之……</em></p>
</blockquote>
<blockquote>
<p><code>slunk out</code><br>
<em>鬼鬼祟祟地从某处离开</em></p>
</blockquote>
</details>
<h2 id="比较对象的一致性"><a class="markdownIt-Anchor" href="#比较对象的一致性"></a> 比较对象的一致性</h2>
<details>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">先要找出这句话要比较谁和谁,其次查看比较对象的单复数,最终找出相对应的代词替代后者比较对象。</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="标点符号"><a class="markdownIt-Anchor" href="#标点符号"></a> 标点符号</h2>
<details>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br></pre></td><td class="code"><pre><span class="line">双逗号、双破折号:形成插入语</span><br><span class="line">冒号:连接两个完整句,后句为前句的补充</span><br><span class="line">单逗号:无法连接两个完整句</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="连词-逻辑词"><a class="markdownIt-Anchor" href="#连词-逻辑词"></a> 连词 &amp; 逻辑词</h2>
<details>
<blockquote>
<p><code>although</code> <code>though</code><br>
<em>尽管</em><br>
让步与转折</p>
</blockquote>
<blockquote>
<p><code>given that</code><br>
<em>鉴于</em></p>
</blockquote>
<blockquote>
<p><code>thus</code><br>
<em>因此</em><br>
因果</p>
</blockquote>
<blockquote>
<p><code>namely</code><br>
<em>换句话说</em><em></em></p>
</blockquote>
<blockquote>
<p><code>rather</code><br>
<em>而是</em></p>
</blockquote>
<blockquote>
<p><code>regardless of</code><br>
<em>无论怎样</em></p>
</blockquote>
<blockquote>
<p><code>subsequent to</code><br>
<em>之后的</em></p>
</blockquote>
<blockquote>
<p><code>crucially</code><br>
<em>关键是</em></p>
</blockquote>
</details>
<h2 id="句子合并"><a class="markdownIt-Anchor" href="#句子合并"></a> 句子合并</h2>
<details>
<ol>
<li>表达正确,即意思应和原句相同</li>
<li>尽可能简洁,即句子结构以简单句为最简洁<br>
最简洁的句子结构通常不用倒装</li>
<li>同一概念表达了一次以上的话,简洁性就会下降</li>
</ol>
</details>
<h2 id="代词"><a class="markdownIt-Anchor" href="#代词"></a> 代词</h2>
<details>
<blockquote>
<p><code>such</code><br>
指示代词<br>
前一句话需要提到 <code>such</code> 后面接的名词</p>
</blockquote>
</details>
<h2 id="逻辑主语一致"><a class="markdownIt-Anchor" href="#逻辑主语一致"></a> 逻辑主语一致</h2>
<details>
<blockquote>
<p><em>分词作状语,其逻辑主语为句子主语</em><br>
例如:<code>Hearing the news, she felt her blood rushing to her face.</code><br>
句子主语 <code>she</code><code>hearing</code> 的逻辑主语</p>
</blockquote>
</details>
<h2 id="从句"><a class="markdownIt-Anchor" href="#从句"></a> 从句</h2>
<details>
<table>
<thead>
<tr>
<th>状语从句</th>
<th>备注</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>be it by ...</code></td>
<td><strong>倒装</strong><br>在句末时前面可以放 <em>破折号</em></td>
</tr>
</tbody>
</table>
</details>
<center>————————</center>
<h1 id="数学"><a class="markdownIt-Anchor" href="#数学"></a> 数学</h1>
<h2 id="标准差"><a class="markdownIt-Anchor" href="#标准差"></a> 标准差</h2>
<details>
<blockquote>
<p><em>Standard Derivation</em><br>
<code>基础数据分析</code> <code>概率论</code></p>
</blockquote>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">衡量一个数据的大小需要根据它和均值之间差了多少个标准差。</span><br></pre></td></tr></tbody></table></figure>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">标准差集中:数据越聚在一起(特别是在数据的正中间),标准差越小</span><br><span class="line">标准差分散:数据分布得越平均,或者很多数据在两边,标准差越大</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="标准误"><a class="markdownIt-Anchor" href="#标准误"></a> 标准误</h2>
<details>
<blockquote>
<p><em>Standard Error</em><br>
<code>统计推断</code></p>
</blockquote>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br></pre></td><td class="code"><pre><span class="line">关键词:</span><br><span class="line">confidence interval</span><br><span class="line">margin of error</span><br></pre></td></tr></tbody></table></figure>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">sample size 越大, margin or error 越小</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="弧长"><a class="markdownIt-Anchor" href="#弧长"></a> 弧长</h2>
<details>
<blockquote>
<p><em>Arc Length</em><br>
<code>几何</code> <code></code></p>
</blockquote>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">公式:</span><br><span class="line">(Θ/360)(2πr)</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="百分比差别"><a class="markdownIt-Anchor" href="#百分比差别"></a> 百分比差别</h2>
<details>
<blockquote>
<p><em>Percent Increase</em><br>
<code>比例</code></p>
</blockquote>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">公式:</span><br><span class="line">(大数字 - 小数字) / 小数字</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="角度"><a class="markdownIt-Anchor" href="#角度"></a> 角度</h2>
<details>
<blockquote>
<p><em>Degrees</em><br>
<code>几何</code></p>
</blockquote>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">π 是 180 度</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="弧度"><a class="markdownIt-Anchor" href="#弧度"></a> 弧度</h2>
<details>
<blockquote>
<p><em>Radians</em><br>
<code>几何</code></p>
</blockquote>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">π 弧度 = 180 角度</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="二次函数"><a class="markdownIt-Anchor" href="#二次函数"></a> 二次函数</h2>
<details>
<blockquote>
<p><em>Quadratic Function</em><br>
<code>代数</code> <code>函数</code></p>
</blockquote>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">开口朝上为正数,开口朝下为负数。</span><br></pre></td></tr></tbody></table></figure>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br></pre></td><td class="code"><pre><span class="line">m (x^2) -&gt; 没有最大值</span><br><span class="line">-m (x^2) -&gt; 最大值为 0</span><br><span class="line">-(x^2) + m -&gt; 最大值为 m</span><br><span class="line">-(x + m)^2 -&gt; 最大值为 0</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="单位换算"><a class="markdownIt-Anchor" href="#单位换算"></a> 单位换算</h2>
<details>
<blockquote>
<p><em>Unit</em><br>
<code>单位</code></p>
</blockquote>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">英制单位</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="方程组"><a class="markdownIt-Anchor" href="#方程组"></a> 方程组</h2>
<details>
<blockquote>
<p><em>System of Equations</em><br>
<code>代数</code></p>
</blockquote>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">方程组无解:</span><br><span class="line">两个方程代表的直线斜率相同</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="实验对照组"><a class="markdownIt-Anchor" href="#实验对照组"></a> 实验对照组</h2>
<details>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">想要从两组中得到某物的因果关系,那需要做到随机分组。</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="平均值"><a class="markdownIt-Anchor" href="#平均值"></a> 平均值</h2>
<details>
<blockquote>
<p><em>Mean</em><br>
<code>基础数据分析</code></p>
</blockquote>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">数据组 A 和数据组 B 近乎一样,仅是多了一个最小值,那么 A 的平均值一定比 B 的小。</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="函数表达式"><a class="markdownIt-Anchor" href="#函数表达式"></a> 函数表达式</h2>
<details>
<blockquote>
<p><em>Function Expression</em><br>
<code>代数</code></p>
</blockquote>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">当 f(x) 等于一个分数,且分母中包含 x 时,先要让分母等于 0 ,排除掉不可能的 x 。</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="二次方程的根"><a class="markdownIt-Anchor" href="#二次方程的根"></a> 二次方程的根</h2>
<details>
<blockquote>
<p><em>Roots of Quadratic Equation</em><br>
<code>代数</code></p>
</blockquote>
<figure class="highlight plaintext"><table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br></pre></td><td class="code"><pre><span class="line">韦达定理:</span><br><span class="line">二次方程的根的总和为 -(b/a)</span><br><span class="line">二次方程的根的积为 c/a</span><br></pre></td></tr></tbody></table></figure>
</details>
<h2 id="单词-2"><a class="markdownIt-Anchor" href="#单词-2"></a> 单词</h2>
<details>
<table>
<thead>
<tr>
<th>英文</th>
<th>解析</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>……is twice as large as……</td>
<td>前者是后者的两倍</td>
<td></td>
</tr>
<tr>
<td>……is <code>n</code> less than……</td>
<td>前者比后者少 <code>n</code></td>
<td></td>
</tr>
</tbody>
</table>
</details></body></html></div></article></div></main><footer><div class="paginator"><a class="prev" href="94b.html">上一篇</a><a class="next" href="ec37.html">下一篇</a></div><!-- Webmention 显示区域--><div class="webmention-section webmention-empty" data-page-url="posts/3b.html" data-full-url="https://cytrogen.icu/posts/3b.html" data-mode="static">
              <h3 class="webmention-title">Webmentions (<span class="webmention-count">0</span>)</h3>
              <div class="webmention-list"></div>
              <span>暂无 Webmentions</span>
            </div><div class="copyright"><p class="footer-links"><a href="../friends/index.html">友链</a><span class="footer-separator"> ·</span><a href="../links/index.html">邻邦</a><span class="footer-separator"> ·</span><a href="../contact/index.html">联络</a><span class="footer-separator"> ·</span><a href="../colophon/index.html">营造记</a><span class="footer-separator"> ·</span><a href="../atom.xml">RSS订阅</a></p><p>© 2025 - 2026 <a href="https://cytrogen.icu">Cytrogen</a>, powered by <a href="https://hexo.io/" target="_blank">Hexo</a> and <a href="https://github.com/cytrogen/hexo-theme-ares" target="_blank">hexo-theme-ares</a>.</p><p><a href="https://blogscn.fun" target="_blank" rel="noopener">BLOGS·CN</a></p></div></footer></div></div><a class="back-to-top" href="#top" aria-label="返回顶部"><svg width="20" height="20" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"><path d="M3.293 9.707a1 1 0 010-1.414L9.586 2a2 2 0 012.828 0l6.293 6.293a1 1 0 01-1.414 1.414L11 3.414V17a1 1 0 11-2 0V3.414L2.707 9.707a1 1 0 01-1.414 0z"></path></svg></a><script>document.addEventListener('DOMContentLoaded', function() {
  const codeBlocks = document.querySelectorAll('figure.highlight');
  
  codeBlocks.forEach(block => {
    let caption = block.querySelector('figcaption');
    if (!caption) {
      caption = document.createElement('figcaption');
      block.insertBefore(caption, block.firstChild);
    }

    const info = document.createElement('div');
    info.className = 'info';
    
    const filename = caption.querySelector('span');
    if (filename) {
      filename.className = 'filename';
      info.appendChild(filename);
    }
    
    const lang = block.className.split(' ')[1];
    if (lang) {
      const langSpan = document.createElement('span');
      langSpan.className = 'lang-name';
      langSpan.textContent = lang;
      info.appendChild(langSpan);
    }

    const sourceLink = caption.querySelector('a');
    if (sourceLink) {
      sourceLink.className = 'source-link';
      info.appendChild(sourceLink);
    }

    const actions = document.createElement('div');
    actions.className = 'actions';

    const codeHeight = block.scrollHeight;
    const threshold = 300;

    if (codeHeight > threshold) {
      block.classList.add('folded');
      
      const toggleBtn = document.createElement('button');
      toggleBtn.textContent = '展开';
      toggleBtn.addEventListener('click', () => {
        block.classList.toggle('folded');
        toggleBtn.textContent = block.classList.contains('folded') ? '展开' : '折叠';
      });
      actions.appendChild(toggleBtn);
    }

    const copyBtn = document.createElement('button');
    copyBtn.textContent = '复制';
    copyBtn.addEventListener('click', async () => {
      const codeLines = block.querySelectorAll('.code .line');
      const code = Array.from(codeLines)
        .map(line => line.textContent)
        .join('\n')
        .replace(/\n\n/g, '\n');
      
      try {
        await navigator.clipboard.writeText(code);
        copyBtn.textContent = '已复制';
        copyBtn.classList.add('copied');
        
        setTimeout(() => {
          copyBtn.textContent = '复制';
          copyBtn.classList.remove('copied');
        }, 3000);
      } catch (err) {
        console.error('复制失败:', err);
        copyBtn.textContent = '复制失败';
        
        setTimeout(() => {
          copyBtn.textContent = '复制';
        }, 3000);
      }
    });
    actions.appendChild(copyBtn);

    caption.innerHTML = '';
    caption.appendChild(info);
    caption.appendChild(actions);

    const markedLines = block.getAttribute('data-marked-lines');
    if (markedLines) {
      const lines = markedLines.split(',');
      lines.forEach(range => {
        if (range.includes('-')) {
          const [start, end] = range.split('-').map(Number);
          for (let i = start; i <= end; i++) {
            const line = block.querySelector(`.line-${i}`);
            if (line) line.classList.add('marked');
          }
        } else {
          const line = block.querySelector(`.line-${range}`);
          if (line) line.classList.add('marked');
        }
      });
    }
  });
});</script><script async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js" id="MathJax-script"></script><script>(function() {
  document.addEventListener('DOMContentLoaded', function() {
    const themeToggle = document.querySelector('.theme-toggle');
    
    if (!themeToggle) return;
    
    const getCurrentTheme = () => {
      return document.documentElement.getAttribute('data-theme') || 'light';
    };
    
    const updateUI = (theme) => {
      const isDark = theme === 'dark';
      themeToggle.setAttribute('aria-pressed', isDark.toString());
    };
    
    const setTheme = (theme) => {
      document.documentElement.setAttribute('data-theme', theme);
      document.documentElement.style.colorScheme = theme;
      
      const pageWrapper = document.getElementById('page-wrapper');
      if (pageWrapper) {
        pageWrapper.setAttribute('data-theme', theme);
      }
      
      // Find and remove the temporary anti-flicker style tag if it exists.
      // This ensures the main stylesheet takes full control after the initial load.
      const antiFlickerStyle = document.getElementById('anti-flicker-style');
      if (antiFlickerStyle) {
        antiFlickerStyle.remove();
      }
      
      localStorage.setItem('theme', theme);
      updateUI(theme);
    };
    
    const toggleTheme = () => {
      const current = getCurrentTheme();
      const newTheme = current === 'light' ? 'dark' : 'light';
      setTheme(newTheme);
    };
    
    updateUI(getCurrentTheme());
    
    themeToggle.addEventListener('click', toggleTheme);
    
    if (window.matchMedia) {
      const mediaQuery = window.matchMedia('(prefers-color-scheme: dark)');
      mediaQuery.addEventListener('change', function(e) {
        if (!localStorage.getItem('theme')) {
          const theme = e.matches ? 'dark' : 'light';
          setTheme(theme);
        }
      });
    }
  });
})();
</script><script src="../js/details-toggle.js" defer></script><script>(function() {
  document.addEventListener('DOMContentLoaded', function() {
    const backToTopBtn = document.querySelector('.back-to-top');
    
    if (!backToTopBtn) return;
    
    const toggleButtonVisibility = () => {
      const scrollTop = window.pageYOffset || document.documentElement.scrollTop;
      const shouldShow = scrollTop > 200;
      
      if (shouldShow) {
        backToTopBtn.classList.add('is-visible');
      } else {
        backToTopBtn.classList.remove('is-visible');
      }
    };
    
    let ticking = false;
    const handleScroll = () => {
      if (!ticking) {
        requestAnimationFrame(() => {
          toggleButtonVisibility();
          ticking = false;
        });
        ticking = true;
      }
    };
    
    const scrollToTop = (event) => {
      event.preventDefault();
      window.scrollTo({
        top: 0,
        behavior: 'smooth'
      });
    };
    
    window.addEventListener('scroll', handleScroll);
    backToTopBtn.addEventListener('click', scrollToTop);
    
    toggleButtonVisibility();
  });
})();</script></body></html>