组合逻辑原理(中英双语版)
- 格式:pdf
- 大小:4.04 MB
- 文档页数:40
组合逻辑电路原理概述及作用分析
组合逻辑电路概述:
数字电路根据逻辑功能的不同特点,可以分成两大类,一类叫组合逻辑电路(简称组合电路),另一类叫做时序逻辑电路(简称时序电路)。
组合逻辑电路在逻辑功能上的特点是任意时刻的输出仅仅取决于该时刻的输入,与电路原来的状态无关。
而时序逻辑电路在逻辑功能上的特点是任意时刻的输出不仅取决于当时的输入信号,而且还取决于电路原来的状态,或者说,还与以前的输入有关。
1.半加器与全加器
①半加器
两个数A、B相加,只求本位之和,暂不管低位送来的进位数,称之为半加。
完成半加功能的逻辑电路叫半加器。
实际作二进制加法时,两个加数一般都不会是一位,因而不考虑低位进位的半加器是不能解决问题的。
②全加器
两数相加,不仅考虑本位之和,而且也考虑低位来的进位数,称为全加。
实现这一功能的逻辑电路叫全加器。
2.加法器
实现多位二进制数相加的电路称为加法器。
根据进位方式不同,有串行进位加法器和超前进位加法器两种。
①四位串行加法器:如T692。
优点:电路简单、连接方便。
缺点:运算速度不高。
最高位的计算,必须等到所有低位依此运算结束,送来进位信号之后才能进行。
为了提高运算速度,可以采用超前进位方式。
组合逻辑电路英语Combinational logic circuits form the fundamental building blocks of digital electronics. They are used in applications that demand simple, high-speed operations, and low power consumption. Combinational circuits take a set of inputs and produce a corresponding set of outputs based solely on their logical relations. There are a variety of combinational logic circuits, with the most common being adders, multiplexers, demultiplexers, and comparators.Adders are circuits used to perform arithmetic functions such as addition or subtraction. There are two main types of adders - the half adder and the full adder. A half adder establishes a binary sum based on two inputs whereas a full adder further includes an input for carrying in. Multiplexers, also known as data selectors, are circuits that select from multiple inputs and output one of them based on a control signal. Demultiplexers are circuits that do the reverse, taking one input and outputting it to one of multiple outputs based on a control signal. Comparators are used to compare two binary numbers and output a truth value based on whether the numbers are equal or not.Other types of combinational circuits include decoders, encoders, and shift registers. Decoders are circuits that take a binary input and output a corresponding one of several outputs based on the input. Encoders, also called data encoders or priority encoders, are used to convert multiple inputs into a smaller set of outputs. Shift registers are sequential circuits that store and shift data bits in a serial manner.Combinational logic circuits are designed using Boolean algebra, a mathematical framework that employs logical symbols to represent logical operations. Boolean algebra operations such as AND, OR, and NOT are used to manipulate logical signals. These signals may be represented as binary numbers, where 0 represents false or off and 1 represents true or on.In summary, combinational logic circuits are essential components of digital electronics. They perform simple, high-speed, and low-power functions which are required in a wide range of applications. Various types of combinational circuits are available, including adders, multiplexers, demultiplexers, and comparators. These circuits operate using Boolean algebra operations, which are used to manipulate logical signals that can be represented as binary numbers. In the world of digital electronics, the development of modern, efficient, and reliable combinational logic circuits is of paramount importance, and engineers are continually working to develop new circuitry and functionality to advance the field still further.。
第九讲组合三大原理总结每周一爽【例1】(难度等级 ※)有一堆火柴共12根,如果规定每次取1~3根,那么取完这堆火柴共有多少种不同取法?【分析与解】取1根火柴有1种方法,取2根火柴有2种方法,取3根火柴有4种取法,以后取任意根火柴的种数等于取到前三根火柴所有情况之和,以此类推,参照上题列表如下:1根2根3根4根5根6根7根8根9根10根11根12根1 2 4 7 13 24 44 81 149 274 504 927 取完这堆火柴一共有927种方法。
【例2】(难度等级 ※)(2005年走美杯决赛)某数学竞赛共160人进入决赛,决赛共四题,做对第一题的有136人,做对第二题的有125人,做对第三题的有118人,做对第四题的有104人,在这次决赛中至少有()人得满分?【分析与解】没得满分的人每人做对3题时,得满分的人最少,所以至少有136+125+118+104-160×3=3(人)。
【例3】(难度等级 ※※)计算机上编程序打印出前10000个正整数:1、2、3、……、10000时,不幸打印机有毛病,每次打印数字3时,它都打印出x,问其中被错误打印的共有多少个数?【分析与解】共有10000个数,其中不含数字3的有:五位数1个,四位数共8×9×9×9=5832个,三位数共8×9×9=648个,二位数共8×9=72个,一位数共8个,不含数字3的共有1+5832+648+72+8=6561 所求为10000-6561=3439个。
【例4】(难度等级 ※※)在1,2,3,…,2013,2014这2014个自然数中,最多能取出()个数,使取出的这些数中任意两个不同的数的和都不是9的倍数。
【分析与解】这些数按照除以9的余数分类,有0、1、2、3、4、5、6、7、8,因为9=1+8=2+7=3+6=4+5,所以(1,8),(2,7),(3,6),(4,5)这四组余数中最多只能各选一个,因为2014除以9商为223,余数为7,所以我们选择所有除以9的余数为1,2,3,4的数和一个能被9整除的数,总共可以有224+224+224+224+1=897(个)。
case的组合逻辑一、组合逻辑概述组合逻辑(Combinational Logic)是一种逻辑电路设计方法,它通过组合基本的逻辑门来实现复杂的逻辑功能。
组合逻辑电路在数字电路设计和计算机科学领域中有着广泛的应用。
二、组合逻辑的基本原理1.与门(AND Gate)与门电路接收两个或多个输入信号,当所有输入信号都为高电平(通常表示为1)时,输出为高电平;否则,输出为低电平(通常表示为0)。
2.或门(OR Gate)或门电路接收两个或多个输入信号,当任意一个输入信号为高电平时,输出为高电平;只有当所有输入信号都为低电平时,输出才为低电平。
3.非门(NOT Gate)非门电路只接收一个输入信号,输出信号与输入信号相反。
当输入信号为高电平时,输出为低电平;当输入信号为低电平时,输出为高电平。
4.与非门(NAND Gate)与非门电路接收两个输入信号,输出为这两个输入信号的与(AND)结果的否定。
即,当两个输入信号都为高电平时,输出为低电平;其他情况下,输出为高电平。
5.或非门(NOR Gate)或非门电路接收两个输入信号,输出为这两个输入信号的或(OR)结果的否定。
即,当两个输入信号都为低电平时,输出为高电平;其他情况下,输出为低电平。
6.异或门(XOR Gate)异或门电路接收两个输入信号,输出为这两个输入信号的异或(XOR)结果。
即,当两个输入信号不相同时,输出为高电平;当两个输入信号相同时,输出为低电平。
三、组合逻辑的应用1.布尔代数组合逻辑电路的设计与分析可以使用布尔代数进行描述和优化。
布尔代数是一种用于表示逻辑关系的数学工具,它使用变量、运算符和括号等符号来表示逻辑电路的输入和输出关系。
2.数字电路设计组合逻辑电路在数字电路设计中具有重要应用,如存储器、计算器、控制器等电子设备的核心部分都采用组合逻辑电路实现。
3.计算机逻辑部件计算机中的逻辑部件,如寄存器、加法器、译码器、编码器等,都是基于组合逻辑电路设计的。
always 组合逻辑Always 组合逻辑是一种在电路设计和计算机科学中广泛使用的逻辑运算,其功能是在输入变量的所有可能状态下,确定输出变量的状态。
例如,在一个Always组合逻辑电路中,如果我们给定了两个输入变量 A 和 B,则我们可以计算它们的值之和,其输出变量将完全取决于输入变量的值。
类似于其他逻辑门,Always 组合逻辑也有其特定的真值表,其中列出了输入和输出变量的每个可能状态。
首先,让我们了解一下Always的组合逻辑的真值表:输入1 输入2 输出0 0 00 1 11 0 11 1 1如上所示,输入变量 A 和 B 的每种可能状态以及得出的输出变量的状态都在这个真值表中列出。
这个真值表告诉我们,计算输出变量的值时将应用布尔逻辑运算符“OR”,只要 A 或 B 的值为1,输出变量就会成为1。
否则,如果 A 和 B 都为0,则输出变量将始终为0。
下面,我们来逐步了解 Always 组合逻辑的实现过程。
第一步:确定输入变量和输出变量在设计一个Always组合逻辑电路时,首先我们需要决定输入变量和输出变量。
例如,如果我们要设计一个电路来计算两个二进制数的和,我们需要将每个二进制数字作为输入变量。
对于这个例子,我们给定了输入变量 A 和 B,输出变量为C(A+B)。
第二步:确定逻辑电路的功能根据输入变量和输出变量的定义,我们需要定义逻辑电路的功能。
在这个例子中,我们需要将两个输入变量相加并将结果存储在输出变量中。
为了实现我们期望的行为,我们需要确定适当的布尔运算符,以确保我们实现了正确的计算方法。
在这个例子中,我们应该使用OR操作符,以确保输出变量C只在输入变量A或B为1时才为1。
我们可以使用相同的方法来设计其他类型的逻辑电路,包括和,或,非,异或和等等。
第三步:建立真值表为了确定逻辑电路的行为,我们需要建立一个真值表,该表描述了输入变量和输出变量的每个可能状态。
根据输入变量的数量,真值表的规模可能会变得非常巨大。
电工常用词汇中英文翻译]电路的基本概念及定律电源source电压源voltage source电流源current source理想电压源ideal voltage source理想电流源ideal current source伏安特性volt-ampere characteristic电动势electromotive force电压voltage电流current电位potential电位差potential difference欧姆Ohm伏特Volt安培Ampere瓦特Watt焦耳Joule电路circuit电路元件circuit element电阻resistance电阻器resistor电感inductance电感器inductor电容capacitance电容器capacitor电路模型circuit model参考方向reference direction参考电位reference potential欧姆定律Ohm’s law基尔霍夫定律Kirchhoff’s law基尔霍夫电压定律Kirchhoff’s voltage law(KVL)基尔霍夫电流定律Kirchhoff’s current law(KCL)结点node支路branch回路loop网孔mesh支路电流法branch current analysis网孔电流法mesh current analysis结点电位法node voltage analysis电源变换source transformations叠加原理superposition theorem网络network无源二端网络passive two-terminal network 有源二端网络active two-terminal network 戴维宁定理Thevenin’s theorem诺顿定理Norton’s theorem开路(断路)open circuit短路short circuit开路电压open-circuit voltage短路电流short-circuit current交流电路直流电路direct current circuit (dc)交流电路alternating current circuit (ac)正弦交流电路sinusoidal a-c circuit平均值average有效值effective均方根值root-mean-squire (rms)瞬时值instantaneous电抗reactance感抗inductive reactance容抗capacitive reactance法拉Farad亨利Henry阻抗impedance复数阻抗complex impedance相位phase初相位initial phase相位差phase difference相位领先phase lead相位落后phase lag倒相,反相phase inversion频率frequency角频率angular frequency赫兹Hertz相量phasor相量图phasor diagram有功功率active power无功功率reactive power视在功率apparent power功率因数power factor功率因数补偿power-factor compensation串联谐振series resonance并联谐振parallel resonance谐振频率resonance frequency频率特性frequency characteristic幅频特性amplitude-frequency response characteristic相频特性phase-frequency response characteristic截止频率cutoff frequency品质因数quality factor通频带pass-band带宽bandwidth (BW)滤波器filter一阶滤波器first-order filter二阶滤波器second-order filter低通滤波器low-pass filter高通滤波器high-pass filter带通滤波器band-pass filter带阻滤波器band-stop filter转移函数transfer波特图Bode diagram傅立叶级数Fourier series三相电路三相电路three-phase circuit三相电源three-phase source对称三相电源symmetrical three-phase source对称三相负载symmetrical three-phase load相电压phase voltage相电流phase current线电压line voltage线电流line current三相三线制three-phase three-wire system三相四线制three-phase four-wire system三相功率three-phase power星形连接star connection(Y-connection)三角形连接triangular connection(D- connection ,delta connection) 中线neutral line电路的暂态过程分析暂态transient state稳态steady state暂态过程,暂态响应transient response换路定理low of switch一阶电路first-order circuit三要素法three-factor method时间常数time constant积分电路integrating circuit微分电路differentiating circuit磁路与变压器磁场magnetic field磁通flux磁路magnetic circuit磁感应强度flux density磁通势magnetomotive force磁阻reluctance电动机直流电动机dc motor交流电动机ac motor异步电动机asynchronous motor同步电动机synchronous motor三相异步电动机three-phase asynchronous motor 单相异步电动机single-phase asynchronous motor 旋转磁场rotating magnetic field定子stator转子rotor转差率slip起动电流starting current起动转矩starting torque额定电压rated voltage额定电流rated current额定功率rated power机械特性mechanical characteristic继电器-接触器控制按钮button熔断器fuse开关switch行程开关travel switch继电器relay接触器contactor常开(动合)触点normally open contact常闭(动断)触点normally closed contact时间继电器time relay热继电器thermal overload relay中间继电器intermediate relay可编程控制器(PLC)可编程控制器programmable logic controller语句表statement list梯形图ladder diagram半导体器件本征半导体intrinsic semiconductor掺杂半导体doped semiconductorP型半导体P-type semiconductorN型半导体N--type semiconductor自由电子free electron空穴hole载流子carriersPN结PN junction扩散diffusion漂移drift二极管diode硅二极管silicon diode锗二极管germanium diode阳极anode阴极cathode发光二极管light-emitting diode (LED)光电二极管photodiode稳压二极管Zener diode晶体管(三极管)transistorPNP型晶体管PNP transistorNPN型晶体管NPN transistor发射极emitter集电极collector基极base电流放大系数current amplification coefficient场效应管field-effect transistor (FET)P沟道p-channelN沟道n-channel结型场效应管junction FET(JFET)金属氧化物半导体l-oxide semiconductor (MOS)耗尽型MOS场效应管depletion mode MOSFET(D-MOSFET)增强型MOS场效应管enhancement mode MOSFET(E-MOSFET)源极source栅极grid漏极drain跨导transconductance夹断电压pinch-off voltage热敏电阻thermistor开路open短路shorted基本放大器放大器amplifier正向偏置forward bias反向偏置backward bias静态工作点quiescent point (Q-point)等效电路equivalent circuit电压放大倍数voltage gain总的电压放大倍数overall voltage gain饱和saturation截止cut-off放大区amplifier region饱和区saturation region截止区cut-off region失真distortion饱和失真saturation distortion截止失真cut-off distortion零点漂移zero drift正反馈positive feedback负反馈negative feedback串联负反馈series negative feedback并联负反馈parallel negative feedback共射极放大器common-emitter amplifier射极跟随器emitter-follower共源极放大器common-source amplifier共漏极放大器common-drain amplifier多级放大器multistage amplifier阻容耦合放大器resistance-capacitance coupled amplifier 直接耦合放大器direct- coupled amplifier输入电阻input resistance输出电阻output resistance负载电阻load resistance动态电阻dynamic resistance负载电流load current旁路电容bypass capacitor耦合电容coupled capacitor直流通路direct current path交流通路alternating current path直流分量direct current component交流分量alternating current component变阻器(电位器)rheostat电阻(器)resistor电阻(值)resistance电容(器)capacitor电容(量)capacitance电感(器,线圈)inductor电感(量),感应系数inductance正弦电压sinusoidal voltage集成运算放大器及应用差动放大器differential amplifier运算放大器operational amplifier(op-amp)失调电压offset voltage失调电流offset current共模信号common-mode signal差模信号different-mode signal共模抑制比common-mode rejection ratio (CMRR) 积分电路integrator(circuit)微分电路differentiator(circuit)有源滤波器active filter低通滤波器low-pass filter高通滤波器high-pass filter带通滤波器band-pass filter带阻滤波器band-stop filter波特沃斯滤波器Butterworth filter切比雪夫滤波器Chebyshev filter贝塞尔滤波器Bessel filter截止频率cut-off frequency上限截止频率upper cut-off frequency下限截止频率lower cut-off frequency中心频率center frequency带宽Bandwidth开环增益open-loop gain闭环增益closed-loop gain共模增益common-mode gain输入阻抗input impedance电压跟随器voltage-follower电压源voltage source电流源current source单位增益带宽unity-gain bandwidth频率响应frequency response频响特性(曲线)response characteristic波特图the Bode plot稳定性stability补偿compensation比较器comparator迟滞比较器hysteresis comparator阶跃输入电压step input voltage仪表放大器instrumentation amplifier隔离放大器isolation amplifier对数放大器log amplifier反对数放大器antilog amplifier反馈通道feedback path反向漏电流reverse leakage current相位phase相移phase shift锁相环phase-locked loop(PLL)锁相环相位监测器PLL phase detector和频sum frequency差频difference frequency波形发生电路振荡器oscillatorRC振荡器RC oscillatorLC振荡器LC oscillator正弦波振荡器sinusoidal oscillator三角波发生器triangular wave generator方波发生器square wave generator幅度magnitude电平level饱和输出电平(电压)saturated output level功率放大器功率放大器power amplifier交越失真cross-over distortion甲类功率放大器class A power amplifier乙类推挽功率放大器class B push-pull power amplifier OTL功率放大器output transformerless power amplifier OCL功率放大器output capacitorless power amplifier 直流稳压电源半波整流full-wave rectifier全波整流half-wave rectifier电感滤波器inductor filter电容滤波器capacitor filter串联型稳压电源series (voltage) regulator开关型稳压电源switching (voltage) regulator集成稳压器IC (voltage) regulator晶闸管及可控整流电路晶闸管thyristor单结晶体管unijunction transistor(UJT)可控整流controlled rectifier可控硅silicon-controlled rectifier峰点peak point谷点valley point控制角controlling angle导通角turn-on angle门电路与逻辑代数二进制binary二进制数binary number十进制decimal十六进制hexadecimal二-十进制binary coded decimal (BCD)门电路gate三态门tri-state gate与门AND gate或门OR gate非门NOT gate与非门NAND gate或非门NOR gate异或门exclusive-OR gate反相器inverter布尔代数Boolean algebra真值表truth table卡诺图the Karnaugh map逻辑函数logic逻辑表达式logic expression组合逻辑电路组合逻辑电路combination logic circuit译码器decoder编码器coder比较器comparator半加器half-adder全加器full-adder七段显示器seven-segment display时序逻辑电路时序逻辑电路sequential logic circuitR-S 触发器R-S flip-flopD触发器 D flip-flopJ-K触发器J-K flip-flop主从型触发器master-slave flip-flop置位set复位reset直接置位端direct-set terminal直接复位端direct-reset terminal寄存器register移位寄存器shift register双向移位寄存器bidirectional shift register计数器counter同步计数器synchronous counter异步计数器asynchronous counter加法计数器adding counter减法计数器subtracting counter定时器timer清除(清0)clear载入load时钟脉冲clock pulse触发脉冲trigger pulse上升沿positive edge下降沿negative edge时序图timing diagram波形图waveform脉冲波形的产生与整形单稳态触发器monostable flip-flop双稳态触发器bistable flip-flop无稳态振荡器astable oscillator晶体crystal555定时器555 timer模拟信号与数字信号的相互转换模拟信号analog signal数字信号digital signalAD转换器analog -digital converter (ADC)DA转换器digital-analog converter (DAC)半导体存储器只读存储器read-only memory(ROM)随机存取存储器random-access memory(RAM)可编程ROM programmable ROM(PROM)。
常见的组合逻辑电路组合逻辑电路指的是由多个逻辑门组成的电路,其输出只与输入信号的组合有关,而与输入信号的时间顺序无关。
在现代电子设备中,组合逻辑电路被广泛应用于数字电子系统的设计中。
下面将介绍几种常见的组合逻辑电路及其应用。
一、与门(AND Gate)与门是最基本的逻辑门之一,它只有当所有输入信号都为高电平时,输出才为高电平。
与门在数字电路中扮演着非常重要的角色,可以用于实现多个输入信号的复合判断。
在计算机的算术逻辑单元(ALU)中,与门经常用于进行逻辑运算。
二、或门(OR Gate)或门也是一种常见的逻辑门,它只要任意一个输入信号为高电平,输出就为高电平。
与门和或门可以相互组合使用,实现更复杂的逻辑运算。
或门常用于电子开关和电路选择器等应用中。
三、非门(NOT Gate)非门是最简单的逻辑门,它只有一个输入信号,输出信号是输入信号的反向。
非门常用于信号反转的场合,例如数字信号进行取反操作。
四、与非门(NAND Gate)与非门是由与门和非门组合而成的逻辑门,其输出是与门输出信号取反。
与非门的应用非常广泛,可以用于各种数字电路的设计中,例如计算机内存、固态硬盘等。
五、或非门(NOR Gate)或非门由或门和非门组合而成,其输出是或门输出信号取反。
与与非门类似,或非门也可以用于各种数字电路的设计中,例如译码器、比较器等。
六、异或门(XOR Gate)异或门是一种特殊的逻辑门,只有当输入信号中的奇数个为高电平时,输出为高电平;偶数个为高电平时,输出为低电平。
异或门在编码器、加法器以及数据传输方面有着重要的应用。
七、多路选择器(Multiplexer)多路选择器是一种可以根据选择信号选择不同输入信号的逻辑电路。
它可以将多个输入信号中的一个或多个输出至一个输出线上。
多路选择器可以在数字信号的选择和转换中起到关键作用。
八、译码器(Decoder)译码器是一种将多位输入信号转换为多位输出信号的逻辑电路。
它可以将某个特定的输入编码成高电平,从而实现对多个输入信号的解码和处理。
abbreviation 缩写 [省略语]ablative 夺格(的)abrupt 突发音accent 口音/{Phonetics}重音accusative 受格(的)acoustic phonetics 声学语音学acquisition 习得action verb 动作动词active 主动语态active chart parser 活动图句法剖析程序active knowledge 主动知识active verb 主动动词actor-action-goal 施事(者)-动作-目标actualization 实现(化)acute 锐音address 地址{信息科学}/称呼(语){语言学} adequacy 妥善性adjacency pair 邻对adjective 形容词adjunct 附加语 [附加修饰语]adjunction 加接adverb 副词adverbial idiom 副词词组affective 影响的affirmative 肯定(的;式)affix 词缀affixation 加缀affricate 塞擦音agent 施事agentive-action verb 施事动作动词agglutinative 胶着(性)agreement 对谐AI (artificial intelligence) 人工智能 [人工智能] AI language 人工智能语言 [人工智能语言]Algebraic Linguistics 代数语言学algorithm 算法 [算法]alienable 可分割的alignment 对照 [多国语言文章词;词组;句子翻译的] allo- 同位-allomorph 同位语素allophone 同位音位alpha notation alpha 标记alphabetic writing 拼音文字alternation 交替alveolar 齿龈音ambiguity 歧义ambiguity resolution 歧义消解ambiguous 歧义American structuralism 美国结构主义analogy 类推analyzable 可分析的anaphor 照应语 [前方照应词]animate 有生的A-not-A question 正反问句antecedent 先行词anterior 舌前音anticipation 预期 (音变)antonym 反义词antonymy 反义A-over-A A-上-A 原则apposition 同位语appositive construction 同位结构appropriate 恰当的approximant 无擦通音approximate match 近似匹配arbitrariness 任意性archiphoneme 大音位argument 论元 [变元]argument structure 论元结构 [变元结构] arrangement 配列array 数组articulatory configuration 发音结构articulatory phonetics 发音语音学artificial intelligence (AI) 人工智能 [人工智能] artificial language 人工语言ASCII 美国标准信息交换码aspect 态 [体]aspirant 气音aspiration 送气assign 指派assimilation 同化association 关联associative phrase 联想词组asterisk 标星号ATN (augmented transition network) 扩充转移网络attested 经证实的attribute 属性attributive 属性auditory phonetics 听觉语音学augmented transition network 扩充转移网络automatic document classification 自动文件分类automatic indexing 自动索引automatic segmentation 自动切分automatic training 自动训练automatic word segmentation 自动分词automaton 自动机autonomous 自主的auxiliary 助动词axiom 公理baby-talk 儿语back-formation 逆生构词(法)backtrack 回溯Backus-Naur Form 巴科斯诺尔形式 [巴科斯诺尔范式] backward deletion 逆向删略ba-construction 把─字句balanced corpus 平衡语料库base 词基Bayesian learning 贝式学习Bayesian statistics 贝式统计behaviorism 行为主义belief system 信念系统benefactive 受益(格;的)best first parser 最佳优先句法剖析器bidirectional linked list 双向串行bigram 双连词bilabial 双唇音bilateral 双边的bilingual concordancer 双语关键词前后文排序程序binary feature 双向特征[二分征性]binding 约束bit 位 [二进制制;比特]biuniqueness 双向唯一性blade 舌叶blend 省并词block 封阻[封杀]Bloomfieldian 布隆菲尔德(学派)的body language 肢体语言Boolean lattice 布尔网格 [布尔网格]borrow 借移Bottom-up 由下而上bottom-up parsing 由下而上剖析bound 附着(的)bound morpheme 附着语素 [黏着语素]boundary marker 界线标记boundary symbol 界线符号bracketing 方括号法branching 分枝法breadth-first search 广度优先搜寻 [宽度优先搜索]breath group 换气单位breathy 气息音的buffer 缓冲区byte 字节CAI (Computer Assisted Instruction) 计算机辅助教学CALL (computer assisted language learning) 计算机辅助语言学习canonical 典范的capacity 能力cardinal 基数的cardinal vowels 基本元音case 格位case frame 格位框架Case Grammar 格位语法case marking 格位标志CAT (computer assisted translation) 计算机辅助翻译cataphora 下指Categorial Grammar 范畴语法Categorial Unification Grammar 范畴连并语法 [范畴合一语法] causative 使动causative verb 使役动词causativity 使役性centralization 央元音化chain 炼chart parsing 表式剖析 [图表句法分析]checked 受阻的checking 验证Chinese character code 中文编码 [汉字代码]Chinese character code for information interchange 中文信息交换码[汉字交换码]Chinese character coding input method 中文输入法 [汉字编码输入] choice 选择Chomsky hierarchy 杭士基阶层 [Chomsky 层次结构]citation form 基本形式CKY algorithm (Cocke-Kasami-Younger) CKY 算法classifier 类别词cleft sentence 分裂句click 啧音clitic 附着词closed world assumption 封闭世界假说cluster 音群Cocke-Kasami-Younger algorithm CKY 算法coda 音节尾code conversion 代码变换cognate 同源(的;词)Cognitive Linguistics 认知语言学coherence 一致性cohesion 凝结性 [黏着性;结合力]collapse 合并collective 集合的collocation 连用语 [同现;搭配]combinatorial construction 合并结构combinatorial insertion 合并中插combinatorial word 合并词Combinatory Categorial Grammar 组合范畴语法comment 评论commissive 许诺[语行]common sense semantics 常识语意学Communication Theory 通讯理论 [通讯论;信息论]Comparative Linguistics 比较语言学comparison 比较competence 语言知能compiler 编译器complement 补语complementary 互补complementary distribution 互补分布complementizer 补语标记complex predicate 复杂谓语complex stative construction 复杂状态结构complex symbol 复杂符号complexity 复杂度component 成分compositionality 语意合成性 [合成性]compound word 复合词Computational Lexical Semantics 计算词汇语意学Computational Lexicography 计算词典编纂学Computational Linguistics 计算语言学Computational Phonetics 计算语音学Computational Phonology 计算声韵学Computational Pragmatics 计算语用学Computational Semantics 计算语意学Computational Syntax 计算句法学computer language 计算器语言computer-aided translation 计算机辅助翻译 [计算器辅助翻译]computer-assisted instruction (CAI) 计算机辅助教学computer-assisted language learning 计算机辅助语言学习[计算器辅助语言学习] concatenation 串联concept classification 概念分类concept dependency 概念依存conceptual hierarchy 概念阶层concord 谐和concordance 关键词 (前后文) 排序concordancer 关键词 (前后文) 排序的程序concurrent parsing 并行句法剖析conditional decision 条件决定 [条件决策]conjoin 连接conjunction 连接词 (合取;逻辑积;"与";连词)conjunctive 连接的connected speech 连续语言Connectionist model 类神经网络模型Connectionist model for natural language 自然语言类神经网络模型[自然语言连接模型]connotation 隐涵意义consonant 子音 [辅音]constituent 成分constituent structure tree 词组结构树constraint 限制constraint propagation 限制条件的传递 [限定因素增殖]constraint-based grammar formalism 限制为本的语法形式Construct Grammar 句构语法content word 实词context 语境context-free language 语境自由语言 [上下文无关语言]context-sensitive language 语境限定语言 [上下文有关语言;上下文敏感语言] continuant 连续音continuous speech recognition 连续语音识别contraction 缩约control agreement principle 控制一致原理control structure 控制结构control theory 控制论convention 约定俗成[规约]convergence 收敛[趋同现象]conversational implicature 会话含义converse 相反(词;的)cooccurrence relation 共现关系 [同现关系]co-operative principle 合作原则coordination 对称连接词 [同等;并列连接]copula 系词co-reference 同指涉 [互指]co-referential 同指涉coronal 前舌音corpora 语料库corpus 语料库Corpus Linguistics 语料库语言学corpus-based learning 语料库为本的学习correlation 相关性counter-intuitive 违反语感的courseware 课程软件 [课件]coverb 动介词C-structure 成分结构data compression 数据压缩 [数据压缩]data driven analysis 资料驱动型分析 [数据驱动型分析]data structure 数据结构 [数据结构]database 数据库 [数据库]database knowledge representation 数据库知识表示 [数据库知识表示]data-driven 资料驱动 [数据驱动]dative 与格declarative knowledge 陈述性知识decomposition 分解deductive database 演译数据库 [演译数据库]default 默认值 [默认;缺省]definite 定指Definite Clause Grammar 确定子句语法definite state automaton 有限状态自动机Definite State Grammar 有限状态语法definiteness 定指degree adverb 程度副词degree of freedom 自由度deixis 指示delimiter 定界符号 [定界符]denotation 外延denotic logic 符号逻辑dependency 依存关系Dependency Grammar 依存关系语法dependency relation 依存关系depth-first search 深度优先搜寻derivation 派生derivational bound morpheme 派生性附着语素Descriptive Grammar 描述型语法 [描写语法]Descriptive Linguistics 描述语言学 [描写语言学] desiderative 意愿的determiner 限定词deterministic algorithm 决定型算法 [确定性算法] deterministic finite state automaton 决定型有限状态机deterministic parser 决定型语法剖析器 [确定性句法剖析程序] developmental psychology 发展心理学Diachronic Linguistics 历时语言学diacritic 附加符号dialectology 方言学dictionary database 辞典数据库 [词点数据库]dictionary entry 辞典条目digital processing 数字处理 [数值处理]diglossia 双言digraph 二合字母diminutive 指小词diphone 双连音directed acyclic graph 有向非循环图disambiguation 消除歧义 [歧义消除]discourse 篇章discourse analysis 篇章分析 [言谈分析]discourse planning 篇章规划Discourse Representation Theory 篇章表征理论 [言谈表示理论] discourse strategy 言谈策略discourse structure 言谈结构discrete 离散的disjunction 选言dissimilation 异化distributed 分布式的distributed cooperative reasoning 分布协调型推理distributed text parsing 分布式文本剖析disyllabic 双音节的ditransitive verb 双宾动词 [双宾语动词;双及物动词] divergence 扩散[分化]D-M (Determiner-Measure) construction 定量结构D-N (determiner-noun) construction 定名结构document retrieval system 文件检索系统 [文献检索系统] domain dependency 领域依存性 [领域依存关系]double insertion 交互中插double-base 双基downgrading 降级dummy 虚位duration 音长{语音学}/时段{语法学/语意学}dynamic programming 动态规划Earley algorithm Earley 算法echo 回声句egressive 呼气音ejective 紧喉音electronic dictionary 电子词典elementary string 基本字符串 [基本单词串]ellipsis 省略EM algorithm EM算法embedding 崁入emic 功能关系的empiricism 经验论Empty Category Principle 虚范畴原则 [空范畴原理]empty word 虚词enclitics 后接成份end user 终端用户 [最终用户]endocentric 同心的endophora 语境照应entailment 蕴涵entity 实体entropy 熵entry 条目episodic memory 情节性记忆epistemological network 认识论网络ergative verb 作格动词ergativity 作格性Esperando 世界语etic 无功能关系etymology 词源学event 事件event driven control 事件驱动型控制example-based machine translation 以例句为本的机器翻译exclamation 感叹exclusive disjunction 排它性逻辑 “或”experiencer case 经验者格expert system 专家系统extension 外延external argument 域外论元extraposition 移外变形 [外置转换]facility value 易度值feature 特征feature bundle 特征束feature co-occurrence restriction 特征同现限制 [特性同现限制] feature instantiation 特征体现feature structure 特征结构 [特性结构]feature unification 特征连并 [特性合一]feedback 回馈felicity condition 妥适条件file structure 档案结构finite automaton 有限状态机 [有限自动机]finite state 有限状态Finite State Morphology 有限状态构词法 [有限状态词法]finite-state automata 有限状态自动机finite-state language 有限状态语言finite-state machine 有限状态机finite-state transducer 有限状态置换器flap 闪音flat 降音foreground information 前景讯息 [前景信息]Formal Language Theory 形式语言理论Formal Linguistics 形式语言学Formal Semantics 形式语意学forward inference 前向推理 [向前推理]forward-backward algorithm 前前后后算法frame 框架frame based knowledge representation 框架型知识表示Frame Theory 框架理论free morpheme 自由语素Fregean principle Fregean 原则fricative 擦音F-structure 功能结构full text searching 全文检索function word 功能词Functional Grammar 功能语法functional programming 函数型程序设计 [函数型程序设计]functional sentence perspective 功能句子观functional structure 功能结构functional unification 功能连并 [功能合一]functor 功能符fundamental frequency 基频garden path sentence 花园路径句GB (Government and Binding) 管辖约束geminate 重叠音gender 性Generalized Phrase Structure Grammar 概化词组结构语法 [广义短语结构语法] Generative Grammar 衍生语法Generative Linguistics 衍生语言学 [生成语言学]generic 泛指genetic epistemology 发生认识论genetive marker 属格标记genitive 属格gerund 动名词Government and Binding Theory 管辖约束理论GPSG (Generalized Phrase Structure Grammar) 概化词组结构语法[广义短语结构语法]gradability 可分级性grammar checker 文法检查器grammatical affix 语法词缀grammatical category 语法范畴grammatical function 语法功能grammatical inference 文法推论grammatical relation 语法关系grapheme 字素haplology 类音删略head 中心语head driven phrase structure 中心语驱动词组结构 [中心词驱动词组结构] head feature convention 中心语特征继承原理 [中心词特性继承原理] Head-Driven Phrase Structure Grammar 中心语驱动词组结构律heteronym 同形heuristic parsing 经验式句法剖析Heuristics 经验知识hidden Markov model 隐式马可夫模型hierarchical structure 阶层结构 [层次结构]holophrase 单词句homograph 同形异义词homonym 同音异义词homophone 同音词homophony 同音异义homorganic 同部位音的Horn clause Horn 子句HPSG (Head-Driven Phrase Structure Grammar) 中心语驱动词组结构语法human-machine interface 人机界面hypernym 上位词hypertext 超文件 [超文本]hyponym 下位词hypotactic 主从结构的IC (immediate constituent) 直接成份ICG (Information-based Case Grammar) 讯息为本的格位语法idiom 成语 [熟语]idiosyncrasy 特异性illocutionary 施为性immediate constituent 直接成份imperative 祈使句implicative predicate 蕴含谓词implicature 含意indexical 标引的indirect object 间接宾语indirect speech act 间接言谈行动 [间接言语行为]Indo-European language 印欧语言inductional inference 归纳推理inference machine 推理机器infinitive 不定词 [to 不定式]infix 中缀inflection/inflexion 屈折变化inflectional affix 屈折词缀information extraction 信息撷取information processing 信息处理 [信息处理]information retrieval 信息检索Information Science 信息科学 [信息科学; 情报科学] Information Theory 信息论 [信息论]inherent feature 固有特征inherit 继承inheritance 继承inheritance hierarchy 继承阶层 [继承层次]inheritance of attribute 属性继承innateness position 语法天生假说insertion 中插inside-outside algorithm 里里外外算法instantiation 体现instrumental (case) 工具格integrated parser 集成句法剖析程序integrated theory of discourse analysis 篇章分析综合理论[言谈分析综合理论]intelligence intensive production 知识密集型生产intensifier 加强成分intensional logic 内含逻辑Intensional Semantics 内涵语意学intensional type 内含类型interjection/exclamation 感叹词inter-level 中间成分interlingua 中介语言interlingual 中介语(的)interlocutor 对话者internalise 内化International Phonetic Association (IPA) 国际语音学会internet 网际网络Interpretive Semantics 诠释性语意学intonation 语调intonation unit (IU) 语调单位IPA (International Phonetic Association) 国际语音学会IR (information retrieval) 信息检索IS-A relation IS-A 关系isomorphism 同形现象IU (intonation unit) 语调单位junction 连接keyword in context 上下文中关键词[上下文内关键词] kinesics 体势学knowledge acquisition 知识习得knowledge base 知识库knowledge based machine translation 知识为本之机器翻译knowledge extraction 知识撷取 [知识题取]knowledge representation 知识表示KWIC (keyword in context) 关键词前后文 [上下文内关键词] label 卷标labial 唇音labio-dental 唇齿音labio-velar 软颚唇音LAD (language acquisition device) 语言习得装置lag 发声延迟language acquisition 语言习得language acquisition device 语言习得装置language engineering 语言工程language generation 语言生成language intuition 语感language model 语言模型language technology 语言科技left-corner parsing 左角落剖析 [左角句法剖析]lemma 词元lenis 弱辅音letter-to-phone 字转音lexeme 词汇单位lexical ambiguity 词汇歧义lexical category 词类lexical conceptual structure 词汇概念结构lexical entry 词项lexical entry selection standard 选词标准lexical integrity 词语完整性Lexical Semantics 词汇语意学Lexical-Functional Grammar 词汇功能语法Lexicography 词典学Lexicology 词汇学lexicon 词汇库 [词典;词库]lexis 词汇层LF (logical form) 逻辑形式LFG (Lexical-Functional Grammar) 词汇功能语法liaison 连音linear bounded automaton 线性有限自主机linear precedence 线性次序lingua franca 共通语linguistic decoding 语言译码linguistic unit 语言单位linked list 串行loan 外来语local 局部的localism 方位主义localizer 方位词locus model 轨迹模型locution 惯用语logic 逻辑logic array network 逻辑数组网络logic programming 逻辑程序设计 [逻辑程序设计] logical form 逻辑形式logical operator 逻辑算子 [逻辑算符]Logic-Based Grammar 逻辑为本语法 [基于逻辑的语法] long term memory 长期记忆longest match principle 最长匹配原则 [最长一致法] LR (left-right) parsing LR 剖析machine dictionary 机器词典machine language 机器语言machine learning 机器学习machine translation 机器翻译machine-readable dictionary (MRD) 机读辞典Macrolinguistics 宏观语言学Markov chart 马可夫图Mathematical Linguistics 数理语言学maximum entropy 最大熵M-D (modifier-head) construction 偏正结构mean length of utterance (MLU) 语句平均长度measure of information 讯习测度 [信息测度] memory based 根据记忆的mental lexicon 心理词汇库mental model 心理模型mental process 心理过程 [智力过程;智力处理] metalanguage 超语言metaphor 隐喻metaphorical extension 隐喻扩展metarule 律上律 [元规则]metathesis 语音易位Microlinguistics 微观语言学middle structure 中间式结构minimal pair 最小对Minimalist Program 微言主义MLU (mean length of utterance) 语句平均长度modal 情态词modal auxiliary 情态助动词modal logic 情态逻辑modifier 修饰语Modular Logic Grammar 模块化逻辑语法modular parsing system 模块化句法剖析系统modularity 模块性(理论)module 模块monophthong 单元音monotonic 单调monotonicity 单调性Montague Grammar 蒙泰究语法 [蒙塔格语法]mood 语气morpheme 词素morphological affix 构词词缀morphological decomposition 语素分解morphological pattern 词型morphological processing 词素处理morphological rule 构词律 [词法规则] morphological segmentation 语素切分Morphology 构词学Morphophonemics 词音学 [形态音位学;语素音位学] morphophonological rule 形态音位规则Morphosyntax 词句法Motor Theory 肌动理论movement 移位MRD (machine-readable dictionary) 机读辞典MT (machine translation) 机器翻译multilingual processing system 多语讯息处理系统multilingual translation 多语翻译multimedia 多媒体multi-media communication 多媒体通讯multiple inheritance 多重继承multistate logic 多态逻辑mutation 语音转换mutual exclusion 互斥mutual information 相互讯息nativist position 语法天生假说natural language 自然语言natural language processing (NLP) 自然语言处理natural language understanding 自然语言理解negation 否定negative sentence 否定句neologism 新词语nested structure 套结构network 网络neural network 类神经网络Neurolinguistics 神经语言学neutralization 中立化n-gram n-连词n-gram modeling n-连词模型NLP (natural language processing) 自然语言处理node 节点nominalization 名物化nonce 暂用的non-finite 非限定non-finite clause 非限定式子句non-monotonic reasoning 非单调推理normal distribution 常态分布noun 名词noun phrase 名词组NP (noun phrase) completeness 名词组完全性object 宾语{语言学}/对象{信息科学}object oriented programming 对象导向程序设计 [面向对向的程序设计] official language 官方语言one-place predicate 一元述语on-line dictionary 线上查询词典 [联机词点]onomatopoeia 拟声词onset 节首音ontogeny 个体发生Ontology 本体论open set 开放集operand 操作数 [操作对象]optimization 最佳化 [最优化]overgeneralization 过度概化overgeneration 过度衍生paradigmatic relation 聚合关系paralanguage 附语言parallel construction 并列结构Parallel Corpus 平行语料库parallel distributed processing (PDP) 平行分布处理paraphrase 转述 [释意;意译;同意互训]parole 言语parser 剖析器 [句法剖析程序]parsing 剖析part of speech (POS) 词类particle 语助词PART-OF relation PART-OF 关系part-of-speech tagging 词类标注pattern recognition 型样识别P-C (predicate-complement) insertion 述补中插PDP (parallel distributed processing) 平行分布处理perception 知觉perceptron 感觉器 [感知器]perceptual strategy 感知策略performative 行为句periphrasis 用独立词表达perlocutionary 语效性的permutation 移位Petri Net Grammar Petri 网语法philology 语文学phone 语音phoneme 音素phonemic analysis 因素分析phonemic stratum 音素层Phonetics 语音学phonogram 音标Phonology 声韵学 [音位学;广义语音学]Phonotactics 音位排列理论phrasal verb 词组动词 [短语动词]phrase 词组 [短语]phrase marker 词组标记 [短语标记]pitch 音调pitch contour 调形变化Pivot Grammar 枢轴语法pivotal construction 承轴结构plausibility function 可能性函数PM (phrase marker) 词组标记 [短语标记]polysemy 多义性POS-tagging 词类标记postposition 方位词PP (preposition phrase) attachment 介词依附Pragmatics 语用学Precedence Grammar 优先级语法precision 精确度predicate 述词predicate calculus 述词计算predicate logic 述词逻辑 [谓词逻辑]predicate-argument structure 述词论元结构prefix 前缀premodification 前置修饰preposition 介词Prescriptive Linguistics 规定语言学 [规范语言学]presentative sentence 引介句presupposition 前提Principle of Compositionality 语意合成性原理privative 二元对立的probabilistic parser 概率句法剖析程序problem solving 解决问题program 程序programming language 程序设计语言 [程序设计语言]proofreading system 校对系统proper name 专有名词prosody 节律prototype 原型pseudo-cleft sentence 准分裂句Psycholinguistics 心理语言学punctuation 标点符号pushdown automata 下推自动机pushdown transducer 下推转换器qualification 后置修饰quantification 量化quantifier 范域词Quantitative Linguistics 计量语言学question answering system 问答系统queue 队列radical 字根 [词干;词根;部首;偏旁]radix of tuple 元组数基random access 随机存取rationalism 理性论rationalist (position) 理性论立场 [唯理论观点]reading laboratory 阅读实验室real time 实时real time control 实时控制 [实时控制]recursive transition network 递归转移网络reduplication 重叠词 [重复]reference 指涉referent 指称对象referential indices 指针referring expression 指涉词 [指示短语]register 缓存器 [寄存器]{信息科学}/调高{语音学}/语言的场合层级{社会语言学} regular language 正规语言 [正则语言]relational database 关系型数据库 [关系数据库]relative clause 关系子句relaxation method 松弛法relevance 相关性Restricted Logic Grammar 受限逻辑语法resumptive pronouns 复指代词retroactive inhibition 逆抑制rewriting rule 重写规则rheme 述位rhetorical structure 修辞结构rhetorics 修辞学robust 强健性robust processing 强健性处理robustness 强健性schema 基朴school grammar 教学语法scope 范域 [作用域;范围]script 脚本search mechanism 检索机制search space 检索空间searching route 检索路径 [搜索路径]second order predicate 二阶述词segmentation 分词segmentation marker 分段标志selectional restriction 选择限制semantic field 语意场semantic frame 语意架构semantic network 语意网络semantic representation 语意表征 [语义表示]semantic representation language 语意表征语言semantic restriction 语意限制semantic structure 语意结构Semantics 语意学sememe 意素Semiotics 符号学sender 发送者sensorimotor stage 感觉运动期sensory information 感官讯息 [感觉信息]sentence 句子sentence generator 句子产生器 [句子生成程序]sentence pattern 句型separation of homonyms 同音词区分sequence 序列serial order learning 顺序学习serial verb construction 连动结构set oriented semantic network 集合导向型语意网络 [面向集合型语意网络] SGML (Standard Generalized Markup Language) 结构化通用标记语言shift-reduce parsing 替换简化式剖析short term memory 短程记忆sign 信号signal processing technology 信号处理技术simple word 单纯词situation 情境Situation Semantics 情境语意学situational type 情境类型social context 社会环境sociolinguistics 社会语言学software engineering 软件工程 [软件工程]sort 排序speaker-independent speech recognition 非特定语者语音识别spectrum 频谱speech 口语speech act assignment 言语行为指定speech continuum 言语连续体speech disorder 语言失序 [言语缺失]speech recognition 语音辨识speech retrieval 语音检索speech situation 言谈情境 [言语情境]speech synthesis 语音合成speech translation system 语音翻译系统speech understanding system 语音理解系统spreading activation model 扩散激发模型standard deviation 标准差Standard Generalized Markup Language 标准通用标示语言start-bound complement 接头词state of affairs algebra 事态代数state transition diagram 状态转移图statement kernel 句核static attribute list 静态属性表statistical analysis 统计分析Statistical Linguistics 统计语言学statistical significance 统计意义stem 词干stimulus-response theory 刺激反应理论stochastic approach to parsing 概率式句法剖析 [句法剖析的随机方法] stop 爆破音Stratificational Grammar 阶层语法 [层级语法]string 字符串[串;字符串]string manipulation language 字符串操作语言string matching 字符串匹配 [字符串]structural ambiguity 结构歧义Structural Linguistics 结构语言学structural relation 结构关系structural transfer 结构转换structuralism 结构主义structure 结构structure sharing representation 结构共享表征subcategorization 次类划分 [下位范畴化]subjunctive 假设的sublanguage 子语言subordinate 从属关系subordinate clause 从属子句 [从句;子句]subordination 从属substitution rule 代换规则 [置换规则]substrate 底层语言suffix 后缀superordinate 上位的superstratum 上层语言suppletion 异型[不规则词型变化] suprasegmental 超音段的syllabification 音节划分syllable 音节syllable structure constraint 音节结构限制symbolization and verbalization 符号化与字句化synchronic 同步的synonym 同义词syntactic category 句法类别syntactic constituent 句法成分syntactic rule 语法规律 [句法规则]Syntactic Semantics 句法语意学syntagm 句段syntagmatic 组合关系 [结构段的;组合的]Syntax 句法Systemic Grammar 系统语法tag 标记target language 目标语言 [目标语言]task sharing 课题分享 [任务共享]tautology 套套逻辑 [恒真式;重言式;同义反复] taxonomical hierarchy 分类阶层 [分类层次] telescopic compound 套装合并template 模板temporal inference 循序推理 [时序推理] temporal logic 时间逻辑 [时序逻辑]temporal marker 时貌标记tense 时态terminology 术语text 文本text analyzing 文本分析text coherence 文本一致性text generation 文本生成 [篇章生成]Text Linguistics 文本语言学text planning 文本规划text proofreading 文本校对text retrieval 文本检索text structure 文本结构 [篇章结构]text summarization 文本自动摘要 [篇章摘要]text understanding 文本理解text-to-speech 文本转语音thematic role 题旨角色thematic structure 题旨结构theorem 定理thesaurus 同义词辞典theta role 题旨角色theta-grid 题旨网格token 实类 [标记项]tone 音调tone language 音调语言tone sandhi 连调变换top-down 由上而下 [自顶向下]topic 主题topicalization 主题化 [话题化]trace 痕迹Trace Theory 痕迹理论training 训练transaction 异动 [处理单位]transcription 转写 [抄写;速记翻译]transducer 转换器transfer 转移transfer approach 转换方法transfer framework 转换框架transformation 变形 [转换]Transformational Grammar 变形语法 [转换语法]transitional state term set 转移状态项集合transitivity 及物性translation 翻译translation equivalence 翻译等值性translation memory 翻译记忆transparency 透明性tree 树状结构 [树]Tree Adjoining Grammar 树形加接语法 [树连接语法]treebank 树图数据库[语法关系树库]trigram 三连词t-score t-数turing machine 杜林机 [图灵机]turing test 杜林测试 [图灵试验]type 类型type/token node 标记类型/实类节点type-feature structure 类型特征结构typology 类型学ultimate constituent 终端成分unbounded dependency 无界限依存underlying form 基底型式underlying structure 基底结构unification 连并 [合一]Unification-based Grammar 连并为本的语法 [基于合一的语法] Universal Grammar 普遍性语法universal instantiation 普遍例式universal quantifier 全称范域词unknown word 未知词 [未定义词]unrestricted grammar 非限制型语法usage flag 使用旗标user interface 使用者界面 [用户界面]Valence Grammar 结合价语法Valence Theory 结合价理论valency 结合价variance 变异数 [方差]verb 动词verb phrase 动词组 [动词短语]verb resultative compound 动补复合词verbal association 词语联想verbal phrase 动词组verbal production 言语生成vernacular 本地话V-O construction (verb-object) 动宾结构vocabulary 字汇vocabulary entry 词条vocal track 声道vocative 呼格voice recognition 声音辨识 [语音识别]vowel 元音vowel harmony 元音和谐 [元音和谐]waveform 波形weak verb 弱化动词Whorfian hypothesis Whorfian 假说word 词word frequency 词频word frequency distribution 词频分布word order 词序word segmentation 分词word segmentation standard for Chinese 中文分词规范word segmentation unit 分词单位 [切词单位]word set 词集working memory 工作记忆 [工作存储区]world knowledge 世界知识writing system 书写系统X-Bar Theory X标杠理论 ["x"阶理论]Zipf's Law 利夫规律 [齐普夫定律]阅读。
必修1Required Course 1第一章集合与函数概念Chapter 1 concepts of Set and Function1.1 集合1.1 Set1.2 函数及其表示1.2 Function and its expression1.3 函数的基本性质1.3 Basic properties of function第二章基本初等函数(Ⅰ)Chapter 2 Basic Elementary Functions (I)2.1 指数函数2.1 Exponential function2.2 对数函数2.2 Logarithmic function2.3 幂函数2.3 Power function第三章函数的应用Chapter 3 Application of function 3.1 函数与方程3.1 Function and equation3.2 函数模型及其应用3.2 Application of function model必修2Required Course 2第一章空间几何体Chapter 1 The space geometry1.1 空间几何体的结构1.1 Structure1.2 空间几何体的三视图和直观图1.2 Three views and intuitionistic figure 1.3 空间几何体的表面积与体积1.3 Surface area and volume第二章点、直线、平面之间的位置关系Chapter 2 Relational Positions of Point、line and plane 2.1 空间点、直线、平面之间的位置关系2.1 Relational Positions of Point、line and plane2.2 直线、平面平行的判定及其性质2.2 Determine and basic properties of Parallel lines and plane2.3 直线、平面垂直的判定及其性质2.3 Determine and basic properties of vertical and plane第三章直线与方程Chapter 3 Line and equation3.1 直线的倾斜角与斜率3.1 Angle of slope of a line3.2 直线的方程3.2 Linear equation3.3 直线的交点坐标与距离公式3.3 The intersection point coordinate and distance formula of a line必修3Required Course 3第一章算法初步Chapter 1 Algorithm preliminary 1.1 算法与程序框图1.1 Algorithm and program chart1.2 基本算法语句1.2 Basic algorithmic statements1.3 算法案例1.3 Algorithmic case第二章统计Chapter 2 Statistics2.1 随机抽样2.1 Random sampling2.2 用样本估计总体2.2 Overall estimate with sample2.3 变量间的相关关系2.3 Relationship between the variables第三章概率Chapter 3 Probability3.1 随机事件的概率3.1 Probability of random events3.2 古典概型3.2 Classical probability3.3 几何概型3.3 Geometric probability必修4Required Course 4第一章三角函数Chapter 1 Trigonometric function 1.1 任意角和弧度制1.1 Arbitrary angle and radian measure 1.2 任意角的三角函数1.2 Trigonometric function of arbitrary angle1.3 三角函数的诱导公式1.3 Induction formula of trigonometric function1.4 三角函数的图象与性质1.4 The image and properties of trigonometric function1.5 函数y=Asin(ωx+ψ)1.5 Function y=Asin(ωx+ψ)1.6 三角函数模型的简单应用1.6 Simple application of trigonometric function model第二章平面向量Chapter 2 Plane vector2.1 平面向量的实际背景及基本概念2.1 Background and concept2.2 平面向量的线性运算2.2 Linear operation2.3 平面向量的基本定理及坐标表示2.3 The Fundamental Theorem and coordinate representation2.4 平面向量的数量积2.4 Dot Product2.5 平面向量应用举例2.5 Application Example 第三章三角恒等变换Chapter 3 Triangle identical transformation3.1 两角和与差的正弦、余弦和正切公式3.1 Concepts of sine、cosine and tangent 3.2 简单的三角恒等变换3.2 Simple triangle identical transformation必修5Required Course 5第一章解三角形Chapter 1 Solving triangles1.1正弦定理和余弦定理1.1 Laws of sine and cosine1.2应用举例1.2 Application Example1.3实习作业1.3 Training assignment第二章数列Chapter 2 Sequences2.1数列的概念与简单表示法2.1 Concept and simple notation of Sequences2.2等差数列2.2 Arithmetic progression2.3等差数列的前n项和2.3 The sum of first N terms2.4等比数列2.4 Geometric progression2.5等比数列的前n项和2.5 The sum of first N terms第三章不等式Chapter 3 Inequality3.1不等关系与不等式3.1 Relation of inequality and inequality 3.2一元二次不等式及其解法3.2 One-variable quadratic inequality and its solution3.3二元一次不等式(组)与简单的线性规划问题3.3 One-variable quadratic inequality and simple linear programming problem 3.4基本不等式3.4 Fundamental inequality选修2-1Elective Course 2-1第一章常用逻辑用语Chapter 1 Logic language1.1命题及其关系1.1 Proposition and its relation1.2充分条件与必要条件1.2 Sufficient condition and necessary condition1.3简单的逻辑联结词1.3 Logical Connectives1.4全称量词与存在量词1.4 Universal and existential quantification第二章圆锥曲线与方程Chapter 2 Conic section and equation 2.1曲线与方程2.1 Curve and equation2.2椭圆2.2 Oval2.3双曲线2.3 Hyperbola2.4抛物线2.4 Parabola第三章空间向量与立体几何Chapter 3 Space vector and solid geometry3.1空间向量及其运算3.1 Space vector and operation 3.2立体几何中的向量方法3.2 vector methods in solid geometry选修2-2Elective Course 2-2第一章导数及其应用Chapter 1 Derivative and application 1.1变化率与导数1.1 Rate of Change and derivative1.2导数的计算1.2 The calculation of the derivative1.3导数在研究函数中的应用1.3 Application of derivative in function study1.4生活中的优化问题举例1.4 Optimization problem in daily life 1.5定积分的概念1.5 Concept of definite integral1.6微积分基本定理1.6 The Fundamental Theorem of Calculus1.7定积分的简单应用1.7 Application of definite integral第二章推理与证明Chapter 2 Reasoning and proof2.1合情推理与演绎推理2.1 Plausible reasoning and deductive reasoning2.2直接证明与间接证明2.2 Direct proof and indirect proof2.3数学归纳法2.3 Mathematical induction第三章数系的扩充与复数的引入Chapter 3 Expansion of number systems and complex number3.1数系的扩充和复数的概念3.1 Expansion of number systems and the concept of complex number3.2复数代数形式的四则运算3.2 Elementary arithmetic of complex number in algebraic forms选修2-3Elective Course 2-3第一章计数原理Chapter 1 Principle of counting1.1分类加法计数原理与分步乘法计数原理1.1 Counting principles of addition and multiplication1.2排列与组合1.2 Permutation and Combination1.3二项式定理1.3 Binomial theorem第二章随机变量及其分布Chapter 2 Random variable and distribution2.1离散型随机变量及其分布列2.1 Discrete random variables and distribution2.2二项分布及其应用2.2 Binominal distribution and application2.3离散型随机变量的均值与方差2.3 The mean and variance of discrete random variables2.4正态分布2.4 Normal distribution第三章统计案例Chapter 3 Statistical samples3.1回归分析的基本思想及其初步应用3.1 Basic thought and primary application of regression analysis3.2独立性检验的基本思想及其初步应用3.2 Basic thought and primary application of independence test选修4-1Elective Course 4-1第一讲相似三角形的判定及有关性质1. Determine and properties of similar triangles第二讲直线与圆的位置关系2. Relational positions of Straight line and circle第三讲圆锥曲线性质的探讨3. Properties of a curve of a circular cone选修4-4Elective Course 4-4第一讲坐标系1.Coordinate system第二讲参数方程2. Parametric Equation选修4-5Elective Course 4-5第一讲不等式和绝对值不等式1.Inequality and inequality with absolute value第二讲证明不等式的基本方法2. common methods about the demonstration of Inequality第三讲柯西不等式与排序不等式3. Cauchy inequality and rearrangement inequality第四讲数学归纳法证明不等式4. demonstration of Inequality with mathematical induction。
电工常用词汇中英文翻译]电路的基本概念及定律ﻫ电源source电压源voltage sourceﻫ电流源currentsourceﻫ理想电压源idealvoltagesourceﻫ理想电流源ideal currentsource伏安特性volt-ampere characteristicﻫ电动势electromotive forceﻫ电压voltage电流current电位potential电位差potential differenceﻫ欧姆Ohm伏特Volt安培Ampereﻫ瓦特Wattﻫ焦耳Jouleﻫ电路circuitﻫ电路元件circuit element电阻resistanceﻫ电阻器resistorﻫ电感inductance电感器inductor电容capacitanceﻫ电容器capacitorﻫ电路模型circuitmodel参考方向reference direction参考电位referencepotentialﻫ欧姆定律Ohm’slaw基尔霍夫定律Kirchhoff’slaw基尔霍夫电压定律Kirchhoff’svoltage law(KVL)基尔霍夫电流定律Kirchhoff’s current law(KCL)结点node支路branch回路loopﻫ网孔mesh支路电流法branch current analysis网孔电流法mesh current analysisﻫ结点电位法node voltageanalysis电源变换source transformations叠加原理superposition theoremﻫ网络networkﻫ无源二端网络passive two-termina lnetworkﻫ有源二端网络active two-terminal network戴维宁定理Thevenin’stheoremﻫ诺顿定理Norton’s theorem开路(断路)open circuitﻫ短路shortcircuit开路电压open-circuit voltageﻫ短路电流short-circuit current交流电路直流电路direct current circuit (dc)ﻫ交流电路alternating current circuit(ac)ﻫ正弦交流电路sinusoidal a-c circuitﻫ平均值averageﻫ有效值effective均方根值root-mean-squire(rms)ﻫ瞬时值instantaneousﻫ电抗reactance感抗inductive reactanceﻫ容抗capacitive reactance法拉Faradﻫ亨利Henry阻抗impedanceﻫ复数阻抗complex impedanceﻫ相位phase初相位initial phase相位差phasedifferenceﻫ相位领先phase leadﻫ相位落后phase lag倒相,反相phaseinversion频率frequencyﻫ角频率angular frequency赫兹Hertzﻫ相量phasorﻫ相量图phasordiagramﻫ有功功率active power无功功率reactivepowerﻫ视在功率apparent power功率因数power factor功率因数补偿power-factorcompensationﻫ串联谐振seriesresonanceﻫ并联谐振parallel resonanceﻫ谐振频率resonancefrequency频率特性frequencycharacteristicﻫ幅频特性amplitude-frequency responsecharacteristic相频特性phase-frequencyresponsecharacteristicﻫ截止频率cutoff frequencyﻫ品质因数qualityfactor通频带pass-band带宽bandwidth(BW)ﻫ滤波器filterﻫ一阶滤波器first-order filterﻫ二阶滤波器second-order filterﻫ低通滤波器low-pass filterﻫ高通滤波器high-passfilterﻫ带通滤波器band-passfilterﻫ带阻滤波器band-stop filter转移函数transferﻫ波特图Bodediagram傅立叶级数Fourier seriesﻫﻫ三相电路三相电路three-phase circuitﻫ三相电源three-phase sourceﻫ对称三相电源symmetrical three-phase sourceﻫ对称三相负载symmetrical three-phase loadﻫ相电压phasevoltageﻫ相电流phase currentﻫ线电压line voltage线电流line current三相三线制three-phasethree-wiresystem三相四线制three-phase four-wiresystem三相功率three-phase powerﻫ星形连接starconnection(Y-connection)ﻫ三角形连接tr iangularconnection(D-connection,deltaconnection)中线neutral lineﻫ电路的暂态过程分析ﻫ暂态transientstate稳态steady stateﻫ暂态过程,暂态响应transient responseﻫ换路定理low ofswitchﻫ一阶电路first-ordercircuitﻫ三要素法three-factor method时间常数time constant积分电路integrating circuit微分电路differentiating circuitﻫﻫ磁路与变压器磁场magnetic fieldﻫ磁通fluxﻫ磁路magnetic circuit磁感应强度flux density磁通势magnetomotive forceﻫ磁阻reluctanceﻫ电动机ﻫ直流电动机dc motor交流电动机ac motorﻫ异步电动机asynchronous motor同步电动机synchronous motor三相异步电动机three-phase asynchronousmotorﻫ单相异步电动机single-phaseasy nchronous motorﻫ旋转磁场rotating magnetic field定子statorﻫ转子rotorﻫ转差率slipﻫ起动电流startingcurrentﻫ起动转矩starting torque额定电压ratedvoltage额定电流ratedcurrent额定功率ratedpowerﻫ机械特性mechanicalcharacteristic继电器-接触器控制ﻫ按钮button熔断器fuse开关switch行程开关travel switchﻫ继电器relayﻫ接触器contactor常开(动合)触点normally open contact常闭(动断)触点normally closedcontact时间继电器time relayﻫ热继电器thermal overload relayﻫ中间继电器intermediate re layﻫﻫ可编程控制器(PLC)可编程控制器programmable logic controller语句表statement list梯形图ladder diagram半导体器件ﻫ本征半导体intrinsic semiconductor掺杂半导体doped semiconductorP型半导体P-typesemiconductorﻫN型半导体N--type semiconductor自由电子freeelectronﻫ空穴holeﻫ载流子carriersﻫPN结PNjunction扩散diffusionﻫ漂移drift二极管diodeﻫ硅二极管silicon diode锗二极管germanium diode阳极anodeﻫ阴极cathodeﻫ发光二极管light-emitting diode(LED)光电二极管photodiode稳压二极管Zener diode晶体管(三极管)transistorﻫPNP型晶体管PNP transistorﻫNPN型晶体管NPN transistorﻫ发射极emitter集电极collectorﻫ基极baseﻫ电流放大系数current amplification coefficientﻫ场效应管field-effect transistor(FET)P沟道p-channelN沟道n-channel结型场效应管junction FET(JFET)ﻫ金属氧化物半导体l-oxidesemiconductor(MOS)ﻫ耗尽型MOS场效应管depletionmode MOSFET(D-MOSFET)增强型MOS场效应管enhancement mode MOSFET(E-MOSFET)ﻫ源极source栅极grid漏极drain跨导transconductanceﻫ夹断电压pinch-off voltageﻫ热敏电阻thermistor开路open短路shortedﻫ基本放大器放大器amplifier正向偏置forward biasﻫ反向偏置backward bias静态工作点quiescentpoint (Q-point)ﻫ等效电路equivalent circuit电压放大倍数voltage gainﻫ总的电压放大倍数overall voltage gainﻫ饱和saturation截止cut-off放大区amplifier regionﻫ饱和区saturation region截止区cut-off regionﻫ失真distortionﻫ饱和失真saturation distortionﻫ截止失真cut-off distortionﻫ零点漂移zero drift正反馈positive feedback负反馈negative feedbackﻫ串联负反馈series negativefeedback并联负反馈parallel negative feedbackﻫ共射极放大器common-emitter amplifier 射极跟随器emitter-follower共源极放大器common-sourceamplifier共漏极放大器common-drainamplifierﻫ多级放大器multistageamplifierﻫ阻容耦合放大器resistance-capacitance coupled amplifierﻫ直接耦合放大器direct- coupledamplifier输入电阻inputresistanceﻫ输出电阻outputresistance负载电阻loadresistance动态电阻dynamic resistance负载电流load current旁路电容bypass capacitor耦合电容coupled capacitor直流通路direct current pathﻫ交流通路alternating current path直流分量direct current component交流分量alternating currentcomponent变阻器(电位器)rheostatﻫ电阻(器)resistor电阻(值)resistanceﻫ电容(器)capacitor电容(量)capacitanceﻫ电感(器,线圈)inductor电感(量),感应系数inductanceﻫ正弦电压sinusoidal voltageﻫ集成运算放大器及应用ﻫ差动放大器differential amplifierﻫ运算放大器operational amplifier(op-amp)ﻫ失调电压offset voltageﻫ失调电流offsetcurrentﻫ共模信号common-modesignal差模信号different-mode signalﻫ共模抑制比common-mode rejection ratio (CMRR)积分电路integrator(circuit)ﻫ微分电路differentiator(circuit)ﻫ有源滤波器active filterﻫ低通滤波器low-passfilterﻫ高通滤波器high-passfilter带通滤波器band-pass filterﻫ带阻滤波器band-stop filterﻫ波特沃斯滤波器Butterworth filterﻫ切比雪夫滤波器Chebyshev filter贝塞尔滤波器Besselfilter截止频率cut-off frequency上限截止频率uppercut-offfrequency下限截止频率lowercut-offfrequencyﻫ中心频率center frequency带宽Bandwidth开环增益open-loop gain闭环增益closed-loop gain共模增益common-mode gain输入阻抗input impedance电压跟随器voltage-follower电压源voltage source电流源current source单位增益带宽unity-gain bandwidth频率响应frequency response频响特性(曲线)response characteristic波特图the Bode plot稳定性stabilityﻫ补偿compensation比较器comparatorﻫ迟滞比较器hysteresis comparatorﻫ阶跃输入电压stepinput voltage仪表放大器instrumentation amplifier隔离放大器isolation amplifier对数放大器log amplifierﻫ反对数放大器antilog amplifierﻫ反馈通道feedbackpath反向漏电流reverse leakagecurrentﻫ相位phase相移phase shiftﻫ锁相环phase-locked loop(PLL)ﻫ锁相环相位监测器PLL phasedetectorﻫ和频sumfrequencyﻫ差频difference frequencyﻫ波形发生电路ﻫ振荡器oscillatorﻫRC振荡器RC oscillatorLC振荡器LCoscillator正弦波振荡器sinusoidal oscillatorﻫ三角波发生器triangular wave generator方波发生器square wave generator幅度magnitude电平levelﻫ饱和输出电平(电压)saturated outputlevel功率放大器ﻫ功率放大器power amplifier交越失真cross-over distortionﻫ甲类功率放大器class A poweramplifierﻫ乙类推挽功率放大器class Bpush-pullpower amplifierOTL功率放大器output transformerless power amplifierOCL功率放大器output capacitorlesspower amplifierﻫ直流稳压电源半波整流full-wave rectifierﻫ全波整流half-wave rectifier电感滤波器inductor filterﻫ电容滤波器capacitorfilter串联型稳压电源series (voltage) regulator开关型稳压电源switching (voltage) regulator集成稳压器IC(voltage)regulatorﻫ晶闸管及可控整流电路晶闸管thyristor单结晶体管unijunctiontransistor(UJT)可控整流controlledrectifier可控硅silicon-controlled rectifierﻫ峰点peak point谷点valley point控制角controlling angleﻫ导通角turn-onangleﻫ门电路与逻辑代数ﻫ二进制binary二进制数binary numberﻫ十进制decimalﻫ十六进制hexadecimalﻫ二-十进制binary codeddecimal(BCD)ﻫ门电路gateﻫ三态门tri-state gate与门AND gateﻫ或门OR gate非门NOT gateﻫ与非门NAND gateﻫ或非门NOR gate异或门exclusive-OR gateﻫ反相器inverterﻫ布尔代数Boolean algebraﻫ真值表tru th table卡诺图the Karnaugh map逻辑函数logic逻辑表达式logicexpression组合逻辑电路ﻫ组合逻辑电路combinationlogic circuitﻫ译码器decoder编码器coder比较器comparator半加器half-adderﻫ全加器full-adder七段显示器seven-segmentdisplayﻫ时序逻辑电路ﻫ时序逻辑电路sequentiallogic circuitﻫR-S触发器R-Sflip-flopﻫD触发器D flip-flopJ-K触发器J-K flip-flopﻫ主从型触发器master-slave flip-flopﻫ置位setﻫ复位reset直接置位端direct-setterminal直接复位端direct-reset terminalﻫ寄存器registerﻫ移位寄存器shift registerﻫ双向移位寄存器bidirectional shift registerﻫ计数器counterﻫ同步计数器synchronouscoun terﻫ异步计数器asynchronouscounterﻫ加法计数器adding counterﻫ减法计数器s ubtracting counter定时器timerﻫ清除(清0)clear载入load时钟脉冲clock pulse触发脉冲trigger pulse上升沿positive edgeﻫ下降沿negativeedge时序图timingdiagram波形图waveform脉冲波形的产生与整形单稳态触发器monostable flip-flop双稳态触发器bistable flip-flop无稳态振荡器astableoscillator555定时器555timer晶体crystalﻫ模拟信号与数字信号的相互转换ﻫ模拟信号analogsignalﻫ数字信号digital signalAD转换器analog -digital converter(ADC)ﻫDA转换器digital-analog converter (DAC)半导体存储器ﻫ只读存储器read-only memory(ROM)随机存取存储器random-access memory(RAM)可编程ROM programmableROM(PROM)。