-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquizlet_mason2000_full_book.csv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 2682.
2962 lines (2962 loc) · 156 KB
/
quizlet_mason2000_full_book.csv
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
acerb,acid,acri,acu - prefix_root_suffix 尖,酸;
acerbic - (v.) 苦澀的,刻薄的;
exacerbate - (v.) 加重,惡化;
acid - 酸;
acrid - 辛辣的,刻薄的;
acrimonious - (a.) 尖苛的,嚴厲的;
acrimony - (n.) 尖苛,刻薄; <-> civility; comity;
acuity - (n.) 敏銳;
acumen - (n.) 精明;
acute - (a.) 靈敏的;
act - prefix_root_suffix 行動;
activate - 啟動;
reactionary - (a.) 保守的,反動的;
counteract - 消除,抵銷;
enact - 制定(法律),扮演(角色);
reactant - 反應物;
reactionary - 保守的,反動的;
exactitude - (n.) 正確性,精確性;
exacting - (a.) 嚴格的,嚴厲的;
aer - prefix_root_suffix 空氣;
air - 空氣;
aerate - 充氣,使進入空氣;
aerial - 空中的,空氣中的;
aeronautics - 航空學;
anaerobic - 厭氧的,厭氧微生物;
ag,ig - prefix_root_suffix 做,動;
agile - 靈敏的;
agitated - (a.) 激動的,不安的;
coagulate - 使凝結 co(一起)+ag(做);
exigent - (a.) 警急的,要求多的; == critical, acute; e.g., exigent circumstances; (記法:exit(出口)+ig(做,動)->向出口衝->緊急的)
prodigal - (a.) 非常浪費的,揮霍的; == extravagant, profligate, spendthrift, squandering; <-> economical, frugal, thrifty; (記法:pro(向前)+dig(挖)+al(=all所有)->挖出所有的存款->揮霍的);
reagent - 試劑(導致化學反應);
agog - prefix_root_suffix 引導;
agog - 渴望的,極興奮的;
demagogue - 蠱惑民心的政客,煽動家 dem(人民)+agog(引導);
pedagogy - 教育學,教育法;
pedagogic - 教育學的;
pedagogue - 學究,老師;
agon - prefix_root_suffix 掙扎,打鬥;
agony - 痛苦,極大的痛苦;
antagonistic - (a.) 敵對的,對抗性的;
protagonist - (n.) 主演,主角,主唱者; (記法:主角都很痛苦)
agr, egr - prefix_root_suffix 田地,農業;
agriculture - 農業
agrarian - (a.) 土地的;
peregrinate - (n.) 遊歷,旅行; (記法:per(完全)+egr(=agr田地)->遊歷,旅行)
al - prefix_root_suffix 成長;
coalesce - (v.) 聯合,合併; (記法:co, col, com, con共同+al成長)
coalition - (n.) 同盟,聯合; (記法:co, col, com, con共同+al成長)
ail - prefix_root_suffix 病;
ail - 生病;
alg - prefix_root_suffix 痛;
analgesic - (a.) 鎮痛劑,止痛的;
nostalgia - 思鄉病 (記法:nost(家)+alg(痛)+ia)
alien - prefix_root_suffix 疏遠;
alien - 外星人;
alienation - (n.) 疏遠,離間;
inalienable - (a.) 不可剝奪的;
alt - prefix_root_suffix 高;
altitude - 高度;
exalt - (v.) 讚揚,歌頌; == extol, laud; <-> lambaste(嚴厲指責), pan(嚴厲批評), deprecate(輕視,抗議), excoriate(批評), disparage(藐視,貶損), vilify(毀謗);
alter, altr - prefix_root_suffix 改變,其他;
alter - 改變
alternative - (a.) 替代的;輪流的,交替的;非主流的,另類的;
altruism - (n.) 利他主義 (記法:altru(其他)+ism(主義))
am - prefix_root_suffix 愛
amiable - (a.) 和藹的,親切的
amateur - 業餘愛好者
amicable - 友好的
amity - (n.) 親善,國與國之間的友好關係
enmity - (n.) 敵意,不合 == animosity(animus, negative meaning)
enamored - (a.) 迷戀的
inimical - (a.) 有敵意的,不合的
amble, ambul - prefix_root_suffix 行走,走來走去
ambulance - 救護車
amble - 從容漫步
ambulatory - (適宜於)步行的 walking
perambulate - 巡行於,勘查 per(完全)+amble(行走)
preamble - 前言,序言,先兆 pre(前)+amble(行走)
ramble - 閒逛,漫步
scramble - 爬行,攀爬
shamble - 蹣跚而行
ampl - prefix_root_suffix 大
ample - 充足的,豐富的
amplify - (v.) 放大,詳述
ances - prefix_root_suffix 原始的
ancestor - 祖先,祖宗
ancestry - (n.) 家系
anim - prefix_root_suffix 生命,精神 (anima, life and soul, positive meaning)
animal - 動物
animadvert - (v.) 批評,非難 (記法:anim(心智)+ad(在)+vert(轉)->壞事使得大家都注意->批評)
animate - 使有生命,激勵,鼓舞
animated - 活生生的,栩栩如生的
animation - 生氣(liveliness),熱烈,動畫
animosity - (n.) 憎恨,仇恨 (animus, negative meaning) (記法:animo(=animal動物)+sity(=city城市)->動物恨城市)
animus - (n.) 敵意,憎恨 (animus, negative meaning)
pusillanimous - (a.) 膽小的 (記法:音讀pussy(小貓)->膽小的) == cowardly, timid (animus, negative meaning);
unanimous - (a.) 全體一致的 (記法:uni(一個)+anim(生命))
ann, enn - prefix_root_suffix 年
annual - 一年的,年度的
perennial - (a.) 終年的,永久的; (記法:per(完全)+enn(年))
anthrop - prefix_root_suffix 人
anthropology - 人類學
misanthrope - (n.) 憤世忌俗者 (記法:mis(恨)+anthrop(人))
philanthropic - (a.) 博愛的,仁慈的,慈善的; (記法:phil(愛)+anthrop(人))
ante, anti - prefix_root_suffix 先前
antique - 古代的,古董的
antecedent - (a.)在先前的;前身的 (n.) 先例,祖先
antedate - 先於,早於
antiquated - (a.) 過時的,陳舊的,老式的 == obsolete;
apt,ept,eft - prefix_root_suffix 能力
adept - 熟練的,內行的;
adaptive - (a.) 適應的;
apt - (a.) 適合的,易於....的,有....傾向的; == suitable, appropriate;
aptitude - 適宜,才能,資質;
deft - (a.) 靈巧的 == skillful and quick
inept - (a.) 無能的,不恰當的
aqua, aque - prefix_root_suffix 水
aquarium - 魚缸,水族館;
aquarious - 水瓶座
aqueous - (a.) 水的
arbit - prefix_root_suffix 判斷,裁決
arbitrary - 專橫的,不理智的;任意的,無理由的
arbitrage - 套利,套匯;仲裁
arbitrate - 仲裁,公斷
arbor - prefix_root_suffix 樹
arboreal - 樹木的
arboretum - 植物園
arch, archy - prefix_root_suffix 統治
hierarchy - 階層,等級制度
anarchy - 無政府,政治混亂
monarch - 君王,帝王 (mon(單一) + arch(統治))
monarchy - 君主制
patriarchal - (a.) 家長的,父權制的; (記法:patri(父親)+arch(統治))
ard,ars - prefix_root_suffix 熱
arson - 縱火,放火
ardent - 熱烈的,激烈的
arsenal - 軍械庫
arm - prefix_root_suffix 武裝,武器
arm - 武裝,武器
armada - 艦隊
armistice - 休戰,停戰 (arm(武器) + i + st(站,停止))
art - prefix_root_suffix 技巧,藝術
art - 技巧,藝術
artifice - (n.) 奸計,詭計 (記法:arti(技巧)+fic(做)+e); == clever trickery; deception;
articul, artic - prefix_root_suffix 清楚地說 speak distinctly
article - 文章,論文
articulate - (a.) 清楚表達,口齒伶俐的;
asper - prefix_root_suffix 粗暴
asperity - 嚴酷,粗魯
exasperate - (v.) 激怒,使惱怒
aster, astr - prefix_root_suffix 星星
astronomy - 天文學
asteroid - (n.) 小行星
asterisk - 星號(*)
asteroid - 小行星
astronomical - (a.) 天文學的,龐大的
auc, aug, aut, aux - prefix_root_suffix 增加
auction - 拍賣
augment - (v.) 增加
august - (a.) 威嚴的,高貴的
authentic - (a.) 可信的,真實的,可靠的
authoritative - (a.) 威權的,官方的,專斷的
auxiliary - (a.) 輔助的,協助的 (記法:促進增加的:輔助的)
aud - prefix_root_suffix 大膽
audacious - 大膽的,無謂的,愚勇的 == daredevil;
avi, avis - prefix_root_suffix 鳥
aviation - 航空,飛行
avid - (a.) 熱切的,狂熱的;渴望的 == eager, greedy;
ban - prefix_root_suffix 禁止
ban - 禁止
banish - (v.) 放逐;驅逐出境
bar - prefix_root_suffix 棒子,障礙,律師
barrier - 障礙物,關卡
barrage - 彈幕;如彈幕噴發的(a barrage of)
barricade - 路障,街壘
barrister - 律師
embargo - 禁運令,封港令(em + bar(阻攔) + go(去))
base - prefix_root_suffix 基礎
abase - 降低自己,使卑下
base - (n.) 基礎 (a.) 卑賤的 <-> baseless 無事實根據的
debase - (v.) 貶低,貶損
bat - prefix_root_suffix 打
combat - 戰鬥
baton - 指揮棒,警棍 == truncheon
battalion - 軍營,軍隊
combative - 好鬥的
lambaste - (v.) 痛打,痛罵 == thrash, censure, beat, whip, to assault violently;
bate - prefix_root_suffix 減少,減弱
abate - 減輕,減少 (n.) abatement
ben, bene - prefix_root_suffix 好
benefit - 好處
benefactor - (n.) 行善者,捐助者; (記法:bene(好)+fact(做))
beneficent - (a.) 慈善的,仁愛的,有益的 (記法:bene(好)+fic(做)); == generous, charitable;
benign - (a.) 良性的,無害的 == kindly, gentle;
benevolent - (a.) 善心的,仁心的;
bell - prefix_root_suffix 戰鬥,戰爭
ballistics - 彈道學,發射學
bellicose - (a.) 好戰的,好鬥的 == warlike, aggressive;
belligerent - (a.) 發動戰爭的,好鬥的,好挑釁的; == (n.) belligerance
hyperbole - (n.) 誇張(法)
rebellious - 反抗的,難控制的
bell - prefix_root_suffix 美麗的
belle - 美女
embellish - (v.) 美化,裝飾
bib - prefix_root_suffix 喝
bibber - 酒鬼,貪酒的人
imbibe - (v.) 飲,喝
biblio - prefix_root_suffix 書
bibliography - 文獻學,參考書目
bibliomania - 藏書癖
bid - prefix_root_suffix 命令
forbid - 禁止 (記法:for(禁止)+bid(命令))
forbidding - (a.) 嚴峻的;令人生畏的, 令人討厭的, 險惡的 == stern, threatening;
blanc - prefix_root_suffix 白色
blank - 空白的,空的
blemish - (n.) 玷污,缺點; (記法:blemish音讀[斃了米]->斃了你->衣服被弄到污點很生氣->瑕疵,污點)
blis - prefix_root_suffix 幸福,恩典 happiness, grace
bless - 上帝祝福
blithe - (a.) 無憂無慮的,快樂的
bomb - prefix_root_suffix 炸彈
bomb - 炸彈
bombastic - (a.) 誇誇其談的 == pompous
bon - prefix_root_suffix 好
bon voyage - 一路順風
boon - (n.) 好處,利益,恩惠
bounteous - (a.) 慷慨的,豐富的 == generous
brev - prefix_root_suffix 短
abbreviate - 縮寫 sth shorten (a word, phrase), esp by omitting(刪除) letters
brevity - (n.) 簡短,簡潔
debrief - (v.) 聽取匯報,向....詢問情況
bust - prefix_root_suffix 爆炸
blockbuster - 巨型炸彈,一鳴驚人的事物
bust - 使爆裂,使爆發
combustible - 易燃的,易激動的
cad, cas, cid - prefix_root_suffix 落下
accidental - 偶然發生的
cadaver - 屍體(記法:生命結束倒下,落下)
cascade - 小瀑布(記法:水的落下)
casualty - (n.) 傷亡人員
coincide - (v.) 巧合,一致 (記法:co(共同)+in+cide(落下))
decadence - (n.) 衰落,頹廢 (記法:落到下面)
occidental - 西方的(記法:太陽落下的地方)
cal, chal - prefix_root_suffix 熱
calorie - 卡洛里
nonchalant - (a.) 無憂無慮的,莫不關心的
scald - 燙,用熱水消毒
sclading - 滾燙的
calc - prefix_root_suffix 石灰,石頭
calcium - 鈣
calculate - (v.) 計算 (記法:以石頭算數)
callous - (a.) cruelly(殘酷地) insensitive or unsympathetic; 無情的,硬結的 == heartless
recalcitrant - (a.) 頑固的,難以控制的 == unruly, intransigent, refractory; <-> docile, tractable; (記法:像石頭一樣堅硬的); e.g., I am puzzled(困惑的) as to why the Ministry of Labor does not take more stringent(迫切的) action against recalcitrant employers;
cand, cend - prefix_root_suffix 白色,發光
candle - 蠟燭
candid - (a.) 率直的;
incendiary - (a.) 放火的,縱火的 (n.) 燃燒彈,縱火犯
incense - (n.) substance that produces a pleasant(舒適的) smell when burnt, used esp in religious ceremonies; 香; (v.) 激怒 (記法:in(使)+cense(發光)->激怒)
cant, cent, chant - prefix_root_suffix 唱,歌唱;
chant - 歌唱,背誦
accentuate - (v.) 強調,以重音讀出,加重音符號於 (記法:ac(加強)+cent(唱,說)) == emphasize;
cantankerous - 愛唱反調的,脾氣壞的 == contentious, malicious, irascible
chantey - (n.) 船歌
incentive - (n.) 刺激,鼓勵 (記法:in(使)+cent(唱)->使人唱) == stimulus;
recant - (v.) 改變,放棄(信仰或聲明) == (n.) recantation;
cap - prefix_root_suffix 頭
capital - 首都
capitulate - (v.) 投降 (記法:低頭)
recapitulate - (v.) 扼要重述,概括 (記法:重新把重要的東西(頭)敘述)
cap - prefix_root_suffix 拿,抓住
capture - 捕獲,俘虜
capacious - (a.) 容量大的,寬敞的 (記法:能抓住東西的->容量大的, capacity容量) == roomy;
capsule - 膠囊
caption - 標題,字幕,照片說明
captious - (a.) 吹毛求疵的 == carping, quibbling, censorious; (記法:cap(抓住)+tious(多....的)->抓出別人很多的缺點->吹毛求疵的)
captivate - (v.) 迷惑,吸引 (a.) captivating 吸引人的; == fascinate (sb.), charm, enchant;
encapsulation - (n.) 概括;
card - prefix_root_suffix 心
cardiac - 心臟的
cardinal - 最重要的(像心一樣的,如心臟般重要)
cardiogram - 心電圖
cardiologist - 心臟病專家
carn, carr - prefix_root_suffix 肉,肉身
carnival - 嘉年華會
carnage - 大屠殺,殘殺
carnivorous - 肉食動物
carrion - 腐肉
incarcerate - 下獄,監禁(肉身in某一範圍)
incarnate - 具有肉體的,化身的
reincarnate - 使化身,投胎
caus - prefix_root_suffix 燒
holocaust - 大屠殺,浩劫
caustic - (a.) 腐蝕性的,刻薄的;
cav - prefix_root_suffix 洞
cave - 洞
cavity - 洞,腔
excavate - (v.) 挖掘,挖出 (記法:ex(外)+cav(洞)+ate)
caval, chival - prefix_root_suffix 騎馬
cavalry - 騎兵隊伍,武裝部隊
cavalier - (n.) 騎士,武士 (a.) 傲慢的;目空一切的 漫不經心的;無憂無慮的 a cavalier reply 隨口作的回答
chivalrous - (a.) 武士精神的,對女人彬彬有禮的
cede, ceed, cess - prefix_root_suffix 走
proceed - 前進,舉行
concede - (v.) 承認,讓步 == (n.) concession 讓步;
incessant - (a.) 不停的,連續的,持續不斷的; == constant, unremitting, continual; <-> sporadic 偶然發生的;
precede - (v.) 在...之前,早於 (記法:pre(前)+cede(走))
precedent - (a.) 在先的,在前的
unprecedented - (a.) 前所未有的
predecessor - (n.) 前任,前輩,原先的東西
recede - 後退,收回;撤退,撤回
secede - 正式脫離/退出 (記法:se(分開)+cede(走))
successively - (adv.) 接連低,連續低 suc下面cess走->接下面繼續走
celer - prefix_root_suffix 速度
accelerate - 加速,促進
celerity - (n.) 迅速,快速,靈敏 == quickness
cens - prefix_root_suffix 評估
censor - 審查,檢查
censorious - (a.) 好批評的,好吹毛求疵的; severely critical;
censure - (v.) 責備,譴責; rebuke sb formally;
centr - prefix_root_suffix 中心
center - 中心
centrifugal - (a.) 離心的 (記法:centri(中心)+fugal(逃跑))
eccentric - (a.) 古怪的,反常的 == unusual, peculiar;
egocentric - (a.) 自我中心的 == self-centred
ceive, cept - prefix_root_suffix take 拿,取
receive - 得到,收到
deceive - (v.) == (n.) deceit 欺騙,詭計;
inception - 開始,開端,起初
intercept - 中途攔截
perceive - 理解,領悟,覺察
perceptive - (a.) 感知的,知覺的,有洞察力的 == perceptible 可以察覺的;
receptive - (a.) 善於接受的,從善如流的
susceptible - (a.) 易受影響的,易被感動的;
cern - prefix_root_suffix 分別
discern - 分辨,辨別
chast, cast - prefix_root_suffix 純潔
chastise - 懲罰,譴責; == (n.) chastisement;
castigate - 懲治,嚴責 (記法:cast = chast)
chrom - prefix_root_suffix 顏色
Google Chrome - 彩色
chromatic - (a.) 彩色的
monochromatic - (a.) 單色的 (記法:mono(單一)+chrom(顏色))
chron - prefix_root_suffix 時間
synchronize - 同步
anachronistic - (a.) 時代錯誤的; (記法:ana(不,錯誤)+chron(時間))
chronic - (a.) 慢性的,長期的; continually recurring;
chronological - (a.) 依時間前後排列而記載的
cide, cise - prefix_root_suffix 殺,切,切割
concise - 簡潔的
exorcise - (v.) 驅魔,除去(壞念頭); (記法:exo(出,外)+r+cise(切))
incisive - 深刻的;尖銳的;清楚的
incisor - 門牙
pesticide - (n.) 殺蟲劑 (記法:pest(蟲)+i+cide(殺))
cil - prefix_root_suffix 眉毛,毛
cil - 細的(眉毛,毛)
supercilious - (a.) 目中無人的; arrogant and disdainful(輕蔑的); (記法:super(超)+cil(眉))
cinct - prefix_root_suffix 綁,束起
succinct - (a.) 簡明的,簡潔的; (記法:suc(下面)+cinct(束起)->衣服束起做事->簡潔)
cinder - prefix_root_suffix 灰
Cinderella - 灰姑娘
incinerate - (v.) 焚化,毀棄
cip - prefix_root_suffix 拿,取
anticipate - 預期,期待
emancipate - 解放,解除(記法:e(出)+man(手)+cip(拿)+ate -> 使手中東西放下 -> 解除)
reciprocity - 互相性,互惠
cip - prefix_root_suffix 落下
precipitate - 降水,加速,魯莽的
incipient - (a.) 初期的,剛出現的(剛落下)
cipher - prefix_root_suffix 密碼
cipher - 密碼,零
decipher - (v.) 解開,破譯;
cit - prefix_root_suffix 說,召喚
recite - 背誦,朗誦
elicit - (v.) 引出,誘出
incite - 激勵,激起,煽動 == stir up, spur on, urge on
insouciance - (n.) 無憂無慮,不注意,不在乎 == nonchalance, insouciant (a.) 漫不經心的;不在乎的
insouciant - (a.) 漫不經心的,不在乎的 (記法:in(不再)+souc(=solicit招喚))
resuscitate - (v.) 使復活,使甦醒;
solicit - (v.) 懇求,請求,招攬 (solicit prostitution 性交易) == implore, beseech
claim, clam - prefix_root_suffix 喊,呼叫
exclaim - 驚叫,呼喊
clamor - 吵鬧,喧嘩
clamorous - 喧嚷的,吵鬧的
disclaim - 放棄,否認,拒絕承認
disclaimer - 免責聲明,放棄,拒絕,不承諾
exclamation - 驚嘆詞,驚呼
proclaim - (v.) 宣告,宣布 == announce
reclaim - (v.) 重新取得 使改過,使悔改,教化[(+from)] reclaim somebody from a life of vice 使某人改邪歸正 開墾,開拓[(+from)] 回收利用[(+from)] 【舊】馴服,降服
clan - - prefix_root_suffix 宗派
clandestine - (a.) 秘密的,暗中的
clannish - (a.) 排他的,門戶之見 宗族的;氏族的;黨派的 團結心很強的
clar - prefix_root_suffix 清楚的
clarify - 澄清
clairvoyance - (n.) 超人的洞察力,先見之明 == (a.) clairvoyant; <-> chivalrous (a.) 騎士時代的;騎士的道德準則的
clin - prefix_root_suffix 彎曲,傾斜
incline - 傾向
disinclination - (n.) 不情願的,不願意 <-> inclination 傾向,意願; == unwillingness, reluctance;
proclivity - (n.) 傾向; == inclination, tendency; e.g., My proclivity for the rock music.
recline - 斜倚,躺臥
clud, clus, claus - prefix_root_suffix 關閉
close - 關閉
conclusive - (a.) 決定性的,確實的,最終的;
occlude - 使閉塞 (to close up / block off) == obstruct
preclude - (v.) 避免,排除;
reclusive - 隱遁的,隱居的
seclude - (v.) 使隔離,使孤立,使隱退,使隱居 (記法: se(separate))
coc, cook - prefix_root_suffix 煮,烹調
cook - 煮,烹調
concoct - 調製,捏造
precocious - (a.) 早熟的,早成的 (記法:先前煮很多的->早熟的) == premature;
code - - prefix_root_suffix 密碼,法典
codify - (v.) 將法律,規則編成法典 == codification;
decode - 譯解(密碼)
cogn - prefix_root_suffix 知道
recognize - 認得,認出
cognitive - (a.) 認知的,感知的
cognizance - (n.) 認知,認定,審理 == (a.) cognizant 知道的,認識的, knowledge, awareness;
col - prefix_root_suffix 脖子
collar - 衣領
accolade - (n.) 推崇,讚揚 (記法:ac+col脖子->把獎牌掛在脖子上) == praise; approval;
concil - prefix_root_suffix 協商
reconcile - 和解,調和
conciliatory - (a.) 撫慰的,調和的;
irreconcilable - (a.) 不能調和的,矛盾的;
reconcile - 和解,調和
cond, conc - prefix_root_suffix 藏
abscond - 潛逃,逃亡
recondite - (a.) 深奧的(隱藏起來不外漏) == obscure e.g., recondite subject;
cord, core - prefix_root_suffix 心,核心;
cordial - 熱忱的,熱心的; sincere and friendly;
concord - (n.) 一致,協調,(國際的)和睦 == chimme, comity, compatibility, harmony, peace
cordial - 熱忱的,衷心的 == sincere and friendly
discord - 不合,紛爭 == disagreement, quarrelling
excoriate - (v.) 痛責,剝(皮) == censure scathingly(嚴格地)
corn - - prefix_root_suffix 角
copious - (a.) 多產的,豐富的 == plentiful, abundant; 冗長的;滔滔不絕的 a copious style 冗贅的文體
cosm - prefix_root_suffix 宇宙
cosmos - 宇宙 <-> cosmetic 化妝品;裝飾品;
cosmopolitan - (n.) 世界主義者,四海為家的人
cracy, crat - prefix_root_suffix 統治
democracy - 民主
autocracy - (n.) 獨裁政府
aristocrat - (n.) 貴族; nobleman, noblewoman; == (n.) aristocracy - prefix_root_suffix 貴族階層
throcracy - 神權統治,僧侶統治 (記法:theo(神)+cracy(統治))
idiosyncrasy - (n.) 氣質,習性 (記法:idio(個體的,獨特的)+syn+cracy(統治))
idiosyncratic - (a.) 有氣質的,有特性的
cre, crue - prefix_root_suffix 增加
crescendo - (n. adv.)(音樂)漸強
accrue - (v.) (透過自然增長)產生,形成 the wisdom that accrues with age 隨年齡俱增的智慧; (利息等的自然)孳生,增加[(+to/from)] Interest accrues on a daily basis. 按日生息。
increment - (n.) 增加,增值;
crea - prefix_root_suffix 做,製造
create - 創造
accretion - (n.) 增加; 【律】添加(物);附加(物) 【地】沖積層
miscreant - (n.) 惡棍,歹徒; == villain, wrongdoer; (記法:mis(壞)+crea(做)+nt->做壞事者->惡棍,歹徒)
cred - prefix_root_suffix 相信
credit card - 信用卡
credence - 相信,信任
credo - (宗教)信條,信條的伴奏曲,信經樂
credulous - (a.) 輕信的,易信的 (記法:相信太多->輕信)
discredit - (v.) 使丟臉,敗壞....的名聲
crep - prefix_root_suffix 破裂
discrepancy - 不同,矛盾 == difference, failure to agree;
decrepit - 衰老的,破舊的
cret - prefix_root_suffix 分開
secretary - 秘書
discreet - (a.) 警慎的,慎重的,考慮周到的;
discrete - (a.) 個別的,不連續的; == separate, distinct;
discretion - (n.) 警慎,爭酌; == (a.) discreet 警慎的
discretionary - (a.) 任意的,自由決定的
excrete - (v.) 排泄,分泌;
secrete - (v.) 分泌,隱藏 <-> secret 秘密的
crim - prefix_root_suffix 罪行
discriminate - (v.) 區別,辨別; 有差別地對待,歧視[(+against/in favor of)] Our teacher never discriminates in favor of brighter pupils. 我們的老師從不給優生以特殊對待。
indiscriminate - (a.) 不加區別的,無差別的,不分皂白的; == (a.) discriminating 有辨識能力的,有區別的;
crit - prefix_root_suffix 判斷
critical - 批評的,判斷的
hypocrite - (n.) 偽善者,偽君子 (記法:hypo(在下面)+crit(判斷)+e->在背後批評別人->偽君子)
hypocrisy - (n.) 虛偽,偽善
cruc - prefix_root_suffix 十字,交叉
cross - 十字記號
crusade - 十字軍,聖戰
excruciate - 施酷刑,拷問,折磨(記法:ex(完全地)+cruc(十字架)+iate -> 在十字架上施酷刑 -> 拷問,折磨)
crypt - prefix_root_suffix 秘密
encrypt - 將....譯成密碼 <-> decipher 解密;
crypt - 地下室,地窖
cryptic - (a.) 難以理解的,秘密的,隱密的 == mysterious
cub - prefix_root_suffix 睡
cubicle - 小房間,隔間
incubate - (v.) 孵化,孵卵
culp - prefix_root_suffix 罪行
culprit - 犯罪者,禍端
exculpate - (v.) 開脫,申明無罪 (記法:ex(出)+culp(罪行)+ate)
cult - prefix_root_suffix 宗派
cult - 迷信,狂熱者,膜拜,狂熱崇拜
occult - (a.) 難以理解的,奧秘的 == recondite, opaque, arcane, enigma
cult, culc - prefix_root_suffix 培養,種植
cultivate - 培養
horticulture - 園藝,園藝術
inculcate - 諄諄教誨,灌輸 == edify, instill
cumb - prefix_root_suffix 躺
succumb - 屈服,屈從,因.....死亡
cumbersome - (a.) 笨重的,難以處理的
encumber - (v.) 妨礙,拖累 塞滿;阻塞 The room was encumbered with old furniture. 這間屋子堆滿了舊傢俱。
incumbent - (a.) 負有職責的,義不容辭的 (in不cumb躺)
cup - prefix_root_suffix 獲得,掌握
occupation - 工作,佔領
covet - (v.) 貪求,覬覦
cur, cour - prefix_root_suffix 跑,短
cursor - 游標
concur - (v.) 意見相同,一致 == accord; (記法:con(共同)+cur(跑)->一起跑)
cursory - (a.) 粗略的,草率的
curtail - (v.) 縮減,削減 == reduce
discourse - (n.) 演講,論述
discursive - (a.) 散漫的,無層次的,東拉西扯的
incursion - 入侵,侵略
precursor - (n.) 先驅,先兆
procure - (v.) 取得,獲得 (記法:pre(向前)+cur(跑)+e) == acquire, obtain
cuse - prefix_root_suffix 理由
excuse - 藉口
accuse - (v.) 譴責,指責 == (a.) accusatory; <-> excuse 藉口;
cuss - prefix_root_suffix 震動
discuss - 討論
concussion - 腦震盪,強烈震動
percussion - 打,敲,敲擊樂器
repercussion - (n.) 反響,影響,回聲;
cycl - prefix_root_suffix 圓,轉
bicycle - 腳踏車
encyclopedic - (a.) 百科全書的,知識廣博的 == exhaustive 詳盡的, one-stop 一站式(詳盡);
cyn - prefix_root_suffix 狗,犬
cynical - 憤世忌俗的,自私的
cynosure - (n.) 眾人矚目的焦點 【天】小熊座;北極星 指針;目標 (記法:from kynos oura, literally, dog's tail)
dain, dign - prefix_root_suffix 高貴的
dignity - 尊嚴,莊嚴
disdain - (n.) 輕蔑,鄙視 == scorn, despise, spurn; <-> respect, admire, praise; (記法:dis(=against)+dain(高貴的)->使不高貴的->輕蔑,鄙視)
indignant - 憤怒的,憤慨的
damn, demn - prefix_root_suffix 損害
condemn - 責難,譴責
damn - 嚴厲批評,譴責
indemnify - 補償,賠償,償付(使損害消除)
decorate - 裝飾,修飾
decor - prefix_root_suffix 美,裝飾
decorate - 裝飾,修飾
decorous - (a.) 合宜的,高雅的; <-> indecorous 無禮的;
decorum - (n.) 端莊,彬彬有禮,合宜
del - prefix_root_suffix 刪除,擦掉
delete - 刪除
deleterious - (a.) 有害的,有毒的(要刪除)
dem - prefix_root_suffix 人民
democracy - 民主
demotic - (a.) 大眾的,通俗的;
endemic - (a.) 地方性的;
dexter - prefix_root_suffix 右邊的,熟練的
dexterity - 純熟,靈巧
ambidextrous - (a.) 雙手靈巧的,十分靈巧的; (記法:ambi(二)+dextr(右的)+ous)
dexterous - (a.) 靈巧的,熟練的 == cunning, deft, handy, clever
diary - 日誌,日記
di - prefix_root_suffix 白天
noct - prefix_root_suffix 夜晚
diurnal - (a.) 白天的,白晝的 <-> nocturnal
nocturnal - (a.) 夜晚的,夜間發生的 <-> diurnal;
quotidian - (a.) 日常的,平常的;
di, du - prefix_root_suffix 雙
dilemma - 兩難,困境
dichotomy - (n.) 二分法,矛盾,分歧
dilatory - (a.) 慢吞吞的,磨蹭的 == tardy; (記法:di(兩)+lat(放)+ory->兩種選擇->猶豫->慢吞吞的)
divergent - (a.) 分歧的,相異的;
dubious - (a.) 有問題的;
duplicity - (n.) 欺騙行為,狡詐行徑;
dic, dict - prefix_root_suffix 說話,命令
predict - 預測
abdicate - (v.) 正式放棄,退位,辭職 (記法:ab(離開)+dic(命令)+act->不再命令->退位,辭職)
benediction - (n.) 祝福,祈禱 (記法:bene(好)+dict(說話)+ion->說好話->祝福,祈禱)
dictate - (v.) 口述,命令
indict - (v.) 控訴,對...起訴 (in = towards, in 並非否定字)
malediction - (n.) 咒罵,壞話; (記法:male(壞)+dict(說話)+ion)
predicament - (n.) 困境,窘境; (記法:pre(預先)+dic(命令)+ament->預先被命令了->左右為難->困境,窘境)
valediction - (n.) 告別演說 (記法:vale(告別)+dict(說)+ion)
verdict - (v.) 判決,決定 (記法:ver(真實)+dict(說))
doc - prefix_root_suffix 教 to teach
doctor - 博士
didactic - (a.) 說教的,教導的
docile - (a.) 馴服的,亦駕馭的
doctrinaire - (a.) 教條的,迂腐的
doctrine - 教條,主義
dol - prefix_root_suffix 痛 pain
condolence - 弔唁,慰問
condole - 哀悼,同情
doleful - (a.) 悲傷的,憂鬱的 == mournful; (記法:dole(痛)+ful(多...的))
dolorous - (a.) 悲痛的,憂傷的 == sorrowful; (記法:dolor(美金)+ous(多...的)->去美國很花錢->悲痛的)
indolent - (a.) 懶惰的 == lazy, inert;
dom - prefix_root_suffix 家
domain - 領土,領域
dominate - 控制,支配
predominant - (a.) 佔優勢的,佔支配地位的; (記法:先前有領土的)
don - prefix_root_suffix 給予
donate - 捐贈,贈送
condone - (v.) 原諒,寬恕 (記法:給予理解->寬恕,原諒)
dorm - prefix_root_suffix 睡眠
dormitory - 宿舍,寢室
dormant - (a.) 休眠的,靜止的 (記法:聽起來像冬眠)
dors - prefix_root_suffix 背
endorse - 背書,贊同
dog, dox - prefix_root_suffix 觀點,思想
dogma - 教條,教義
dogmatism - (n.) 教條主義
heterodox - (a.) 異端的,非正統的
paradox - (n.) 悖論,亦非而是的議論 <-> heterodox; orthodox;
orthodox - (a.) 正統的,傳統的,習俗的,通常的 (記法:ortho(正)+dox(思想))
droit - prefix_root_suffix 右邊,擅長
adroit - 靈巧的,熟練的 == dexterous, nimble;
maladroit - 笨拙的
duct, duc - prefix_root_suffix 引導
conduct - 品德,行為
adduce - (v.) 引用,舉例
conducive - (a.) 有助的,有益的,促成的;
deduce - (v.) 演繹,推斷
deduct - (v.) 減除,扣除
ductile - 易垃長的,變形的
induce - 誘導,引起
seductive - (a.) 誘惑的,引人注意的,有魅力的 == (v.) seduce 引誘
due - prefix_root_suffix 放
due - 到期的
overdue - 過期的
subdue - (v.) 征服,壓制,減輕
dur - prefix_root_suffix 持久,堅硬
endure - 忍受,忍耐
duration - 期間
obdurate - (a.) 固執的,頑固的;頑抗的,抵抗的
empt - prefix_root_suffix 買,拿
exempt - 免除,豁免 (記法:ex(出)+empt(買,拿)->拿出去->免除)
peremptory - (a.) 專橫的,不容反抗的 == domineering(跋扈的); (記法:per(完全)+empt(買)+ory->全部買下來->專橫)
preempt - (v.) 已先買權取得,取代 (記法:pre(預先)+empt(買)->先買->已先買權取得)
equ - prefix_root_suffix 相等,公平
equal - 相等的
adequate - (a.) 足夠的 == sufficient; <-> inadequate; (記法:ad(使)+equ(平等))
egalitarian - (a.) 主張人人平等的
equable - (a.) 穩定的,不變的 <-> equitable 公正的,合理的
equanimity - (n.) 鎮定,沉著 (記法:事情發生了自己仍然和之前相同->沉著)
equate - (v.) 認為....相等或相仿
equator - 赤道
equilibrium - (n.) 平衡
equitable - (a.) 公正的,合理的 <-> equable 穩定的,不變的
equivalent - (a.) 相等的,等值的
equivocal - (a.) 模稜兩可的,不明確的,不確定的
iniquitous - (a.) 極不公正的,邪惡的
err - prefix_root_suffix 犯錯,流浪
error - 錯誤
aberrant - (a.) 越軌的,異常的
errand - (n.) 差事,差使
errant - (a.) 錯誤的,去不正當地方的,遊歷的
erratic - (a.) 反覆無常的,古怪的
erroneous - (a.) 錯誤的,不正確的
ert - prefix_root_suffix 力量,動
exert - 運用(力量)
inert - (a.) 惰性的,行動遲鈍的; == indolent, sluggish, torpid, lethargic, dull, inactive, sleepy, quiescent;
inertia - 慣性,慣量;惰性
ess - prefix_root_suffix 存在
essential - 必要的,本質的
quintessential - (a.) 精髓的,典型的 (記法:quint(五)+essential(必要的)->組成世界的五種物質->榜樣,精華)
esthe - prefix_root_suffix 感覺
aesthetic - 美學的,有審美感的
ethn - prefix_root_suffix 種族
ethics - 倫理學,道德學
ethos - (n.) 道德風貌,思潮,信仰,社會(或民族等)的精神特質 性格;氣質
ev - prefix_root_suffix 年齡,時代
medieval - 中世紀的,中古的(記法:medi(中)+ev(時代)+al)the Middle Ages, AD 1100~1400
longevity - 長命,長壽
fa - prefix_root_suffix 說
fame - 名聲
affable - (a.) 和藹可親的,容易親近的
blasphemy - 褻瀆(的言詞)(記法:bla(=blah blah)+phe(=fa説)->對上帝説 blah blah->褻瀆)
defamatory - (a.) 破壞名譽的,誹謗的;
fable - 寓言,傳說
fabulous - 非常好的
fac, fact - prefix_root_suffix 做
factual - 真實的,事實的
efficacious - (a.) 有效的,靈驗的
facile - (a.) 容易做的,膚淺的
facility - (n.) 才能,資質,容易做好事情的能力 == aptitude
facsimile - 複製本,摹本(記法:fac(做)+simil(相同)+e)
faction - 派別,宗派,小集團 (a small group within a larger one)
factotum - (n.) 雜工,打雜
face - prefix_root_suffix 臉,面
preface - 序言,緒言
efface - (v.) 擦掉,抹去
facade - (n.) 建築物的正面,(虛偽的)外表
facetious - (a.) 輕浮的,好開玩笑的 (記法:face(臉)+ous(多...的)->臉很多->扮開心扮難過逗人笑->好開玩笑的)
multifaceted - (a.) 多面向的
preface - (n.) 序言,緒言,引語
self-effacement - 自謙,自我輕視
fall, fault - prefix_root_suffix 錯誤
pitfall - 陷阱,圈套
fallacious - (a.) 欺騙的,謬誤的 == fallibility 易出錯,出錯性
fallibility - (n.) 易出錯,出錯性 == fallacious 欺騙的,謬誤的;
falsification - 竄改,編造,偽造(記法:false錯誤的)
default - 不履行,違約,拖欠 (failure to do sth.)
fan - prefix_root_suffix 入迷,幻想
fantacy - 幻想,想像
fanatical - 狂熱的,盲信的
fanciful - (a.) 幻想的,奇特的
fare - prefix_root_suffix 去
farewell - 辭行,告別
fanfare - 誇耀的遊行,嘹亮的喇叭聲
feas - prefix_root_suffix 做
feasible - 可行的,可實行的
malfeasance - (n.) 不法行為 (記法:mal(壞)+feas(做)+ance)
fect - prefix_root_suffix 做
affect - 影響
affected - 不自然的,假裝的
affection - 愛,鍾愛
affectionate - 充滿深情的,溫柔親切的
defect - (n.)缺點,瑕疵 (v.)背叛,叛逃
feit(=fact) - prefix_root_suffix 做
forfeit - 喪失,被罰沒收 (記法:作廢->喪失,被罰沒收)
counterfeit - (n.) 偽造,仿造 = fake; (記法:counter(相反)+feit(做))
surfeit - (v.) 過量,過度 (記法:sur(超)+feit(做)->超量,過度)
felic - prefix_root_suffix 幸福
felicitate - 祝賀,慶祝
felicific - (a.) 產生幸福的,帶來幸福的
felicitous - (a.) 得體的,適當的 <-> infelicitous, infelicity (n.)
infelicitous - 不幸的,不適當的
infelicity - 不幸,不適當
fer - prefix_root_suffix 帶來
infer - 推斷,推定
confer - (v.) 討論,商談,贈與 (記法:con(共同)+fer(帶來)->提出問題共同討論)
deference - (n.) 尊敬; == respect, reverence; <-> effrontery(厚顏無恥的,放肆); (記法:形近reverence尊敬)
peripheral - (a.) 外圍的,周邊的,邊緣的;
odoriferous - (a.) 有氣味的 (記法:odor(氣味)+i+fer(帶來)+ous->有氣味的)
ferr - prefix_root_suffix 鐵
ferromagnetic - 磁鐵的,鐵磁體的
ferrous - 鐵的,含鐵的
ferv, ferm - prefix_root_suffix 熱
fever - 發燒
ferment - 使發酵,醞釀
fervent - (a.) 熾熱的,熱情的
fess - prefix_root_suffix 說
confess - 承認,公認 == confessional (a.) 懺悔的
profess - (v.) 公開宣布,聲稱
fec, fic, fict - prefix_root_suffix 做 to do
deficient - 有缺陷的,不足的
artifice - 奸計,詭計; == deception; (記法:arti(技巧)+fic(做)+e->技巧做->奸計)
beneficent - (a.) 慈善的,仁愛的,有益的 (記法:bene(好)+fic(做)+ent); == generous, charitable;
beneficiary - 受益人,受惠者
feckless - (a.) 無效的,無能的 == inefficient, irresponsible;
fictitious - (a.) 假的,虛構的 (記法:類似fiction->小說都是假的) e.g., fiction is always fictitious.
maleficent - 有害的,犯罪的(記法:mal(壞)+fic(做))
munificent - (a.) 慷慨的,豐厚的
ramification - (n.) 後果,影響 == consequence; (記法:在LOL rampage(橫衝直撞)有後果(ramification))
suffice - (v.) 足夠,滿足
fid - prefix_root_suffix 相信
confide - 透露,吐露
confidant - 知己,心腹,密友
confident - 自信的,有信心的
diffident - (a.) 缺乏自信的,怯懦的,羞怯的 == lacking self-confidence
fidelity - 忠誠,忠實
perfidy - 背叛(記法:per(完全)+fid(相信) -> 對人完全相信就會被背叛)
perfidious - 背叛的(記法:per(完全)+fid(相信) -> 對人完全相信就會被背叛)
figur, fig - prefix_root_suffix 形狀,形體
figure - 人像,數字
configuration - (n.) 結構,配置,輪廓 (記法:con(全部)+figur(形狀)->全體的形狀->結構,佈局)
figurative - (a.) 比喻的,象徵
prefigure - (v.) 預示,預想 (記法:先前去描繪形狀的->預想)
fili - prefix_root_suffix 兒子
affiliated - 附屬的
affiliation - (n.) 聯繫,聯合
filial - 子女的,孝順的
filtr - prefix_root_suffix 過濾
filter - 濾器,過濾
infiltrate - 深透,滲入
fin - prefix_root_suffix 範圍
infinite - 無限的,無窮的 == without limits, endless;
affinity - (n.) 喜好,本性,傾向 (記法:affi音讀(愛撫)+ni音讀(你)->愛撫妳->喜好,傾向) == relationship;
confine - (v.) 限制,使侷限 (記法:一起去範圍)
definite - (a.) 清楚的,明確的; == clear, not doubtful;
fine - prefix_root_suffix 好,精緻;
fine - 令人滿意的
finesse - (n.) 非凡的技巧,技術
fine-tune - (v.) 進行微調
firm - prefix_root_suffix 堅固,堅定
confirm - 證實,證明
affirm - (v.) 確認,肯定
fisc - prefix_root_suffix 錢財
fiscal - 財政的,國庫的
confiscate - 沒收,充公
fix - prefix_root_suffix 固定
fixate - 注視,使固定,早期停止性的成熟
flam - prefix_root_suffix 火焰,燃燒
flame - 火焰
flamboyant - (a.) 豔麗的,炫耀的 == ornate;
inflammatory - (a.) 令人激動的,煽動的
flat - prefix_root_suffix 吹氣,充氣
inflate - 使充氣,使膨脹
conflate - (v.) 合併 (記法:con(共同)+flat(吹氣)+e->吹到一起->合併)
deflated - (a.) 洩氣的,氣餒的,灰心的
flect, flex - prefix_root_suffix 彎曲
flexible - 彈性的,易彎曲的;
deflect - (v.) 使傾斜,使轉向,避開
reflective - (a.) 反射的,深思熟慮的; == thoughtful;
flict - prefix_root_suffix 打擊
conflict - 衝突
afflict - (v.) 使痛苦,折磨
affliction - 折磨,持續不斷的痛苦,災害
inflict - (v.) 給予(打擊), 使遭受(損傷)
profligate - (a.) 非常浪費的; == prodigal;
flor, flour - prefix_root_suffix 花
flourish - 昌盛,興旺
florid - (a.) 鮮紅的,氣色好的,華麗的
flu - prefix_root_suffix 流
fluid - 流體的,易變的
affluent - (a.) 豐富的,富裕的 == rich, prosperous;
fluid - 流體的,流動的,易變的
influx - 注入,湧入
melliflous - 聲音甜美的,悅耳的,動聽的(記法:melli(蜂蜜)+flu(流)+ous->流蜜的->柔美流暢的)
superflous - 多餘,累贅的 more than is needed or wanted(記法:super(超過)+flu(流)+ous->多得流出來->多餘的)
foli - prefix_root_suffix 樹葉
foliage - 葉子
defoliate - 使落葉
form - prefix_root_suffix 形狀,形成
formal - 正式的
conformity - (n.) 一致,遵從,順從 == conform (v.) 遵照,符合
formative - (a.) 形成的,構成的 == formulation (n.) 規劃,構想,公式化
formulaic - (a.) 公式的,刻板的;
fort - prefix_root_suffix 強壯
fort - 要塞,堡壘
forte - 長處,擅長的事;(音樂)強
fortify - (v.) 增強,加強
discomfit - (v.) 使尷尬,破壞;擾亂(計畫),使為難,挫敗 == confuse or embarrass
frac, fract, frag - prefix_root_suffix 碎裂
fragment - 碎片,分裂
fraction - 碎片,小部分
fractious - (a.) 易怒的,好爭吵的 == irritable, bad-tempered
fragmentary - (a.) 碎片的,片段的
frivolous - (a.) 輕浮的,草率的
refract - (v.) 折射,反射
refractory - (a.) 難醫治的,倔強的,反應遲鈍的;
suffrage - (n.) 選舉權,投票權
fraud - - prefix_root_suffix 欺騙,騙子
fraudulent - (a.) 欺騙的,不誠實的
front - prefix_root_suffix 前面,臉面
confront - 迎面遇到,面臨
effrontery - (n.) 厚顏無恥,魯莽
upfront - 直率的,坦白的
fug - prefix_root_suffix 逃走
refugee - (n.) 難民,流亡者
fugitive - (a.) 短暫的,逃跑的 (n.) 逃犯
fulg, ful - prefix_root_suffix 閃亮
refulgent - (a.) 輝煌的,燦爛的
fulminate - (v.) 大聲斥責 (記法:ful(閃亮)->閃電大發雷霆->大聲斥責)
fume - prefix_root_suffix 煙,憤怒(記法:斯摩格上校smog, 煙,憤怒)
perfume - 香水,香味
found, fund - prefix_root_suffix 底
foundation - 基礎,地基
confound - (v.) 使混亂,使困惑 == perplex;
founder - (v.) 沈沒,失敗,破滅
profound - (a.) 深刻的,深奧的,很深的,全然的 <-> perfunctory 草率的,敷衍的
funct - prefix_root_suffix 作用,功能
function - 功能,作用
perfunctory - (a.) 草率的,敷衍的 (記法:per(遠離)+funct(功能)+ory->不稱職->敷衍的) <-> profound 深刻的,深奧的,很深的,全然的;
fus - prefix_root_suffix 流
confuse - 困惑,糊塗;
defuse - (v.) 卸除引信,緩和緊張 (記法:de(離開)+fuse(導火線))
diffuse - (v.) 四散,擴散,雜亂 == spread all around;
effusive - (a.) 熱情的,感情洋溢的 == gushy; <-> reticent(沈默的); (記法:ef(ex外)+fus(流)->情感外流->熱情的)
infuse - (v.) 灌輸,鼓勵
profuse - (a.) 很多的,浪費的; in large amounts; abudant, extravagant, ample, lavish, liberal, immoderate
fusc - prefix_root_suffix 黑暗,糊塗
obfuscate - 使困惑,使迷糊
fut - prefix_root_suffix 打,限制
refute - 反駁,駁斥 == prove to be wrong;
refutable - (a.) 可駁倒的
gar - prefix_root_suffix 花
garden - 花園
garment - 衣服 article of clothing
garnish - 裝飾物,裝飾,添加配菜於
gene - prefix_root_suffix 基因
genetic - 遺傳的,起源低
genealogy - (n.) 家譜,宗譜;
genesis - (n.) 創始,起源 == origin;
genome - (n.) 基因組,染色體組
generic - (a.) 通稱的,種類的;
genre - (n.) 文藝作品之類型
gen - prefix_root_suffix 產生,生產
generator - 發電機
congenial - (a.) 意氣相投的,性情好的
degenerate - (v.) 惡化,衰退,退化
engender - (v.) 使產生,引起
genial - (a.) 和藹的,親切的,友好的 == kindly, pleasant, sociable;
heterogeneous - (a.) 異類的,不同的 (記法:herero(異)+gen(產生)+eous)
homogeneous - (a.) 同種的,同質的
indigenous - (a.) 土產的,本地的,天生的
ingenious - (a.) 聰明的,有發明天才的
ingenuous - (a.) 純樸的,單純的
disingenuous - (a.) 不誠實的,虛偽的
progeny - 後代,子女(記法:pro(前)+gen(產生)->前人生下的->後代子女)
germ - prefix_root_suffix 胚芽,細菌
germane - (a.) 有密切關係的,貼切的 == fitting;
germinate - (v.) 發芽,發展
gest - prefix_root_suffix 管道
digest - 消化,吸收
ingest - (v.) 吞下,嚥下
glyph - prefix_root_suffix 寫,刻
petroglyph - 岩石畫,岩石雕刻(記法:petro(石頭)+glyph(寫,刻))
hieroglyph - (n.) 象形文字,圖畫文字
gnos, gnor - prefix_root_suffix 知道
diagnose - 診斷,判斷
agnostic - 不可知論的(記法:a(不)+gnos(知道))
ignorance - 唔知,愚昧
prognosis - 預知,(醫學)預後(記法:pro(前)+gnos(知道))
gran - prefix_root_suffix 穀物,顆粒
grain - 穀物,小的硬粒
granular - 顆粒狀
granule - 小粒,微粒 small grain
ingrain - (v.) 使...根深蒂固
grand - - prefix_root_suffix 大,雄偉
aggrandize - (v.) 加大,強化
grandiloquence - (n.) 豪言壯語,誇大之言 (記法:grand(大)+i(SE)+liqu(說)+ence)
grandiose - (a.) 宏偉的,誇大的 == pompous(浮誇的), grand(壯麗的);
graph(y) - prefix_root_suffix 寫,畫
calligraphy - 書法,筆跡
choreography - 舞蹈,舞蹈編排
demography - 人口統計,人口學 (記法:demo(人民)+graphy(寫)->寫出人口數量->人口統計)
graphite - 石墨,黑鉛
holograph - 親筆信(記法:holo(全部)+graph(寫)->全部自己寫->親筆信)
grat - prefix_root_suffix 感激
grateful - 感謝的,感激的
gratify - (v.) 使高興,使滿足
ingrate - (n.) 忘恩負義的人 (記法:in(不)+grat(感激)+e)
ingratiate - (v.) 使得到歡心,迎合
ingratiating - (a.) 討好的,諂媚的 == endearing, flattering; (記法:in(加強語氣)+grat(感激)->不停感激的->諂媚討好的)
grav - prefix_root_suffix 重
gravity - 重力,嚴重性
aggravate - (v.) 加重,惡化
greg - prefix_root_suffix 群,團體
aggregate - (v.) 集合,合計
egregious - (a.) 過分的,驚人的 == flagrant;
gregarious - (a.) 群居的,愛社交的
gress - prefix_root_suffix 走
aggression - 侵略
digressive - (a.) 離題的,枝節的
transgress - (v.) 冒犯,違背 (記法:trans(超過)+gress(走)->超越界限的->冒犯)
grief, griev - prefix_root_suffix 悲傷
grief - 悲傷
aggrieve - 使受委屈,使痛苦
grievance - 委屈,抱怨
gru - prefix_root_suffix 一致(記法:glue(黏在一起))
congruent - 適合的,一致的
incongruous - (a.) 不協調的,不一致的;
habit - prefix_root_suffix 居住
habitat - 棲息地
habitable - 可居住的
inhabit - 居住於,佔據
hale - 氣
inhale - 吸入,吸氣 breathe sth in
exhale - 呼出,呼氣 breathe sth out
hap - prefix_root_suffix 運氣
happen - 發生
haphazard - (a.) 無計畫的,任意的,偶然的 == chance; (記法:hap(=luck運氣)+hazard(冒險)->無計畫是種冒險)
mishap - 小錯誤,事故,不幸(記法:mis(壞)+hap(運氣)->壞運氣導致小錯誤和不幸)
har, her - prefix_root_suffix 軍隊 army
herald - (n.) 傳令官 (v.) 預示,先兆
harbinger - (n.) 先兆,通報者
her - prefix_root_suffix 繼承
inherit - 繼承
heredity - (n.) 遺傳
herb - prefix_root_suffix 草
herb - 藥草
herbivorous - (a.) 草食的 (記法:herb(草)+i+vor(吃)+ous)
here - prefix_root_suffix stick to 黏
adhere - 黏著,堅持
adherent - (n.) 擁護者,信徒
adhesive - 黏的,黏著的,有黏性的
coherent - (a.) 一致的,協調的
here - prefix_root_suffix 異端
heresy - 異教,異端邪說
heretical - (a.) 異教的,異端的 unorthodox, 異端就是非主流才會這樣(理當是少數)
hilar - prefix_root_suffix 高興
hilarious - 極可笑的
exhilarate - (v.) 使振奮,使高興
hor - prefix_root_suffix 恨,怕
horrific - 可怕的
abhorrent - (a.) 可恨的,討厭的 == disgusting, hateful;
hort - prefix_root_suffix encourage 激勵
hortatory - (a.) 勸告的,忠告的
hortative - (a.) 勸告的,獎勵的 == advisory
hum - prefix_root_suffix 人
human - 人
humanitatian - 人道主義者
inhumane - (a.) 不近人情的,慘忍的; curel
hum - prefix_root_suffix 地
humble - 卑微的,簡陋的,謙虛的 (記法:接近地的)
humdrum - (a.) 單調的,過分平凡的,乏味的;
humility - (n.) 謙遜,謙恭
posthumous - 死後的,身後的(記法:post(後)+hum(地)+ous)happening or given after death
hydr - prefix_root_suffix 水
hydrogen - 氫
hydrate - (v.) 使成水化物
icon - prefix_root_suffix 形象,偶像,聖像
iconoclastic - (a.) 破壞偶像的,打破舊習的 (記法:icon(偶像)+klan(打破))
ideology - 意識形態
ide, idea - prefix_root_suffix 思想