CDM Boole s World 1 Algebra of Circuits Klaus Sutner Carnegie Mellon University Boolean Algebras Fall 2018 Proofs A Design Challenge 3 No Feedback 4 H

Size: px
Start display at page:

Download "CDM Boole s World 1 Algebra of Circuits Klaus Sutner Carnegie Mellon University Boolean Algebras Fall 2018 Proofs A Design Challenge 3 No Feedback 4 H"

Transcription

1 CDM Boole s World 1 Algebra of Circuits Klaus Sutner Carnegie Mellon University Boolean Algebras Fall 2018 Proofs A Design Challenge 3 No Feedback 4 How does one build complicated digital circuits? Back to basics: consider only feedback-free circuits. Half Adder x c y s 2-bit Adder This one has feedback, and is a bit too messy for our purposes. x y c c HA s HA c s s c A Definition 5 And Algebra? 6 More precisely, we can formally define these circuits as follows: We have an acyclic digraph G = V, E that has several nodes of in-degree 0 (input nodes) and nodes of out-degree 0 (output nodes). The underlying ugraph is connected. The internal nodes of G are labeled by Boolean operators and, or and not. The indegree (here usually referred to as fan-in) of these nodes has to be appropriate. One can limit the fan-in to 2 for and and or nodes, or allow unlimited fan-in. Negation requires fan-in 1. The combinatorial definition of a circuit is not particularly helpful when it comes to building one, or to optimize the design. Question: Can one use algebra to describe a circuit? In our circuits, there are two physical states (such as high/low voltage) can be interpreted as representing a binary choice, 0 or 1, truth values. We need to understand the natural algebra of these objects.

2 Translation to Propositional Logic 7 Claude Shannon 8 Using standard propositional logic, we can express the half adder like so: c = x y s = c (x y) = x y Note that equality here really corresponds to logical equivalence. This representation turns out to be quite useful for hand-computations. The connection between electronic circuits and logic (in the guise of Boolean algebras) was first clearly recognized by Shannon in Boolean Functions 9 Zero or One Inputs 10 To model circuits we use the two-element Boolean algebra B = {ff, tt}. For the sake of readability we often use 0 for false, and 1 for true. Definition A Boolean function is a map of the form B n B where n 0. What kind of Boolean functions are there for small values of n? Case n = 0: 2 functions All we get is 2 constant functions 0 and 1. Note that we only consider single outputs here rather than f : B n B f : B n B m There is no problem with this, we can always use vectors of Boolean functions if multiple outputs are needed. Case n = 1: 4 functions 2 constants, plus H id = x, the identity, and H not(x) = 1 x, negation. Incidentally, the latter two are reversible. Binary Boolean Functions 11 Circuits as Boolean Functions 12 Case n = 2 much more interesting: 16 functions. Some correspond to the typical gates used in circuits. x y H and(x, y) H or(x, y) H imp(x, y) x y H equ(x, y) H xor(x, y) H nand(x, y) We can think of circuits as compositions of Boolean functions. In fact, there is a clone hiding here. For the half-adder from above we have: and c = H and(x, y) s = H and(h not(h and(x, y)), H or(x, y)) This may not look particularly impressive, but the important point is that we are one step away from a purely algebraic interpretation. We will see later that all Boolean functions can be constructed from these.

3 Changing Notation 13 Building a 2-bit Adder 14 Yes, notation helps. We write + for H or, for H and, and x for H not. But then a digital circuit is just a term t T (+,, ) of a particular Boolean algebra where the inputs correspond to the free variables. We are interested in smaller/simpler terms t such that t = t and we can use the machinery of Boolean algebra to establish such equalities. We can use truth tables to construct an actual circuit. Here inputs are x, y and z and the outputs are s (sum) and c (carry). The table describes the functionality of the circuit. x y z s c From the table we can read off immediately that s = x yz + xyz + xy z + xyz c = xyz + xyz + xyz + xyz Simplify 15 These expressions are mildly complicated, but we can simplify them considerably using equational reasoning in Boolean algebra. To simplify, let u = xy + xy = (x + y) xy Algebra of Circuits then s = uz + uz c = uz + xy 2 Boolean Algebras Not too bad. u is essentially the half-adder from above, and the last two formulae represent the 2-bit adder. Note that this simplification process would be rather difficult using circuit diagrams! Proofs History 17 George Boole ( ) 18 Boolean algebra dates back to work by George Boole in the middle of the 19th century. Other early contributions were made by William S. Jevons Augustus de Morgan Charles S. Pierce Ernst Schröder And Marshall Stone Alfred Tarski created the modern theory in the 1930s.

4 G. Boole 19 Laws of Boolean Algebra 20 The design of the following treatise is to investigate the fundamental laws of the operations of the mind by which reasoning is performed; to give expression to them in the symbolical language of a calculus, and to open this foundation to establish the science of logic and construct its method The Mathematical Analysis of Logic 1854 An Investigation of the Laws of Thought A Boolean algebra is a structure B = B,,,, 0, 1 and signature (2, 2, 1, 0, 0) where the following system of equations (BA) is valid: x (y z) = (x y) z x (y z) = (x y) z x y = y x x y = y x x 0 = x x 1 = x x (y z) = (x y) (x z) x (y z) = (x y) (x z) x x = 1 x x = 0 Here is a modern axiomatization. So we have two commutative monoids that coexist peacefully via distributivity, plus a complementation operation. Here is called join, is called meet, is called complement. Digression: Boole s Early Approach 21 Note that some of laws of Boolean algebra are intuitively easy to grasp, in particular the ones that coexist peacefully with ordinary arithmetic. Alas, the logical laws that clash with the laws of numbers are far more problematic and take much effort to get used to. It may come as a relief to you that even G. Boole had problems with his very own algebra. For example, here is an argument he proposed that has some major problems: assuming F (x) = 0, show that F (0)F (1) = 0. The first step is to use what is now often and inaccurately called Shannon expansion to argue A little rearrangement then yields F (x) = F (1)x + F (0)(1 x) = 0 (F (1) F (0))x + F (0) = 0 Then we can conclude and hence x = Substituting into x(1 x) = 0 we get and the claim follows. Discuss the merits of this argument. F (0) F (0) F (1) F (1) 1 x = F (0) F (1) F (0)F (1) 0 = (F (0) F (1)) 2 Two Standard Models 23 Two More Models 24 The trivial one-point model is useless, it is important to check if there are interesting models. Here are two standard models for (BA). Truth values The Boolean values true and false together with disjunction, conjunction and negation: B = {ff, tt},,,, ff, tt Power sets The power set of any set, together with union, intersection and complement: P(A),,,,, A Verify that these structures are indeed Boolean algebras. Divisor Lattices For any positive natural number n let Div(n) be the set of all divisors of n. Then Div(n), lcm, gcd, n/x, 1, n is a Boolean algebra provided that n is square-free. Finite/cofinite Sets Let P (A) be the set of all subsets of A that are either finite or cofinite (the complement is finite). P (N),,,,, N Show that the divisor lattice is a Boolean algebra if, and only if, n is square-free. Do these structures look familiar?

5 Duality 25 Duality Principle 26 There is a remarkable symmetry between the axioms: interchanging and, as well as 0 and 1, takes the identities on the left-hand side to the right, and conversely. Definition Given a term t(x 1,..., x n) over a Boolean algebra, its dual t is defined as t(x 1,..., x n). The term t(x 1,..., x n) is sometimes called the counterdual. Typical example, using de Morgan s law (see below): As noted, for any axiom s = t, there is another axiom ŝ = t. This has the following pleasant consequence: If an identity s = t is provable from the axioms, then so is ŝ = t. So we get two for the price of one. x y = x y = x y Self-Duality 27 Alternative I: Partial Orders 28 Note that we can associate a partial order with every Boolean algebra: Note that a term may well be self-dual: applying the duality operations takes the term to an equivalent one. For example, the threshold function at least two out of three is self-dual: (x y) (x z) (y z) x y x y = y Alternatively, x y x y = x. In the standard two-element algebra B this corresponds just to the usual order ff < tt. For P(A) we have x y x y. Show that a self-dual term must have an odd number of variables. Conversely, if the poset is properly behaved, we can define binary operations inf(x, y) = max ( z A z x, y ) sup(x, y) = min ( z A x, y z ) and obtain a Boolean algebra. Alternative II: Boolean Rings 29 Power Sets 30 A commutative ring R = A,,, 0, 1 is called a Boolean ring if it has chararacteristic 2 and is idempotent: x x = 0 x x = x Note that Z/(2) is a Boolean ring. Given a Boolean ring, we can obtain a Boolean algebra, and conversely: x y = x y x y x y = (x y) (x y) x y = x y x = x 1 x y = x y For example, the Boolean algebra P(A) can be interpreted as a Boolean ring via P(A) = A 2 where addition and multiplication on these functions are defined pointwise, using modular arithmetic on 2. So, for most practical intents and purposes, these two interpretations are the same.

6 Notation 31 Sheffer Stroke 32 To make notation slightly more manageable, one often uses standard ring notation also for Boolean algebra (and typically writes x y as xy). Using three basic operations in a Boolean algebra is very convenient, but not really necessary: we could get away with a single binary operation that corresponds intuitively to rejection (nand): x y is short for x y. Note that this operation is not associative. We can recover the standard operations like so: x + (y + z) = (x + y) + z x (y z) = (x y) z x + y = y + x x y = y x x + 0 = x x 1 = x x + (y z) = (x + y) (x + z) x (y + z) = (x y) + (x z) x + x = 1 x x = 0 For hand-calculations this turns out to be the better notation system. x y = (x x) (y y) x y = (x y) (x y) x = x x Figure out what the axioms for should be. Then discuss nor, x y = x y. Other Operations 33 Atoms 34 A number of other defined operations are of interest: Arbitrary Boolean algebras are rather complicated objects, but in the finite case it is easy to give a complete description. Let B = B, +,,, 0, 1 be a Boolean algebra. x y = xy x y = (x y) + (y x) x y = x + y x y = xy + xy Thus x y is the dual of y x, and x y is the dual of x y. Definition (Atoms) An element a B is an atom if a 0 but x a implies x = 0 or x = a. A Boolean algebra is atomic if whenever x y there is an atom a x but a y. A Boolean algebra is atomless if it has no atoms. For example, in P(A) the atoms are the singletons {a}. Hasse Diagram 35 Finite Boolean Algebras Lemma Every finite Boolean algebra is atomic. Proof. Since x = xy + xy it follows from x y that xy 0. If xy is an atom we are done. Otherwise let a be such that 0 < a < xy. If a is an atom we are done. Otherwise we repeat finding 0 < a < a and so on. The process must terminate since the algebra is finite. 1 As a consequence, for every 0 b B there exists an atom a such that a b. The atoms for the divisor lattice of 30 (which is isomorphic to P([3])).

7 Characterization 37 Representing Boolean Algebras 38 It is easy to push this argument a little to show that in any finite Boolean algebra we have One might hope that the last theorem also takes care of arbitrary Boolean algebras, but there are problems. b = { a b a atom } Theorem Every finite Boolean algebra B is isomorphic to a powerset. Proof. Let A be the set of all atoms in B. It is straightforward to check that B is isomorphic to P(A). A Boolean algebra is complete if, in the corresponding partial order, every subset has an infimum and a supremum. Every atomic complete Boolean is isomorphic to a power set. Alas, in general things become much more complicated and one needs to consider subalgebras of the full power set: needs topology to produce good characterizations. B P(A) closed under the operations union, intersection and complement. These algebras are called fields of sets. Using ultrafilters, one can show that in essence there are no other Boolean algebras. Theorem (Stone Representation Theorem, 1936) Up to isomorphism, every Boolean algebra is a field of sets. Digression: Topology 39 Atomless Boolean Algebras 40 Fields of sets are perhaps the most natural way to obtain a Boolean algebra, but one can also exploit topology to construct Boolean algebras on B P(A) using somewhat more complicated operations. Write x for the complement of the closure of x A. An open set x is regular if x = x. Then we can define Boolean operations on the regular sets: x y = (x y) x y = x y x = x To see that the argument for the finite case collapses in the infinite case, note that there are atomless Boolean algebras. Call A N periodic if a A a + p A for some p 1. So A = A 0 + pn where A 0 {0, 1,..., p 1}. Note that complementation does not change the period, and the union of A and B produces a period at most lcm(p, q). Hence the collection of all periodic subsets of N forms a Boolean algebra. But if A then B = A 0 + 2pN lies strictly between and A: the algebra is atomless. How about ultimately periodic sets? Other Properties 42 Algebra of Circuits Boolean Algebras (BA) has many interesting semantic consequences. Some particularly important ones are: x + x = x x + x y = x x x = x x (x + y) = x x + 1 = 1 x 0 = 0 x + y = x y x = x x y = x + y 3 Proofs It is easy to see that these all hold in the models above, but the point is that they hold in all models of (BA). But showing that turns out to be harder than you might think. Verify that these equations hold in the two standard models.

8 Proofs? 43 Sample Proofs 44 So how do we go about proving that the Boolean laws have these other equations as consequences? We have to rely on reasoning about equations. For example, if we know that s = t and t = u hold in a structure, then we can conclude that s = u also holds. Likewise, we are allowed to substitute arbitrary terms for variables, very much in the way we dealt with associativity above. The crucial point is that all our manipulations must preserve syntactic consequence. We ll make this more precise in a minute, first some examples. Claim (BA) = x + x = x Proof. x + x = (x + x) 1 = (x + x) (x + x) = x + x x = x + 0 = x Note that the third step uses distributivity of plus over times in the opposite direction. By duality, we also have xx = x. More Proofs 45 Freshman s Dream 46 Claim (BA) = 1 + x = 1 Proof. 1 + x = (x + x) + x = (x + x) + x = x + x = 1 The arguments just given are perfectly correct and really not very complicated but most humans do not like this kind of reasoning: replacing simple expressions by more complex ones is counterintuitive. Question: Could we automate these arguments? Claim (BA) = x + xy = x Proof. x + xy = x (1 + y) = x 1 = x More precisely, could we build a theorem prover that, given the axioms, would generate these consequences? Or, at least, could we build a proof assistant that, given an alleged argument, will check correctness and maybe fill in a few steps here and there? Example: Associativity 47 Associativity Everywhere 48 A binary operation is associative if it satisfies (x y) z = x (y z) This is usually explained more casually by saying parens don t matter : it does not matter where we place the parentheses in an expression involving only : the final result of an evaluation is always the same. We could essentially flatten out any expression to x 1 x 2 x 3... x n Associative operations abound in algebra, addition and multiplication of various kinds of numbers (naturals, integers, rationals, reals, complexes) or matrices are always associative. Typical associative operations in CS are concatenation of words and join of lists. The usual counterexample is exponentiation: 2 32 (2 3 ) 2. Pairing operations when implemented by some kind of record data structure also fail to be associative: a, b, c is usually not the same as a, b, c (though they are in some sense equivalent ; this is one of the tips of the misery-of-set-theory iceberg).

9 Proof? 49 An Equational Proof 50 So how do we get from the equation to the assertion parens don t matter? (x y) z = x (y z) At first glance, this associativity axiom may seem to be rather weak, it only handles expressions with two occurrences of the operation. But how about, say, ((a b) c) d versus a (b (c d)) The last two expressions are in fact equal by associativity. Exactly how does this follow? More importantly, can we generate such a proof automatically? Here is a proof that uses only the associativity assumption and some equational reasoning. We need to determine which terms have to be assigned to the variables in the axiom to get the desired effect. ((a b) c) d (a b) (c d) a (b (c d)) a b/x, c/y, d/z a/x, b/y, c d/z Here a b/x means: substitute a b for x and so on. Hence the application of the given associativity equation requires some sort of pattern matching: we have to determine how to bind the variables to terms. Moving Parens Around 51 A Proof 52 Emboldened by first success, let s try something more ambitious. Claim Associativity implies that left associated multiplication is the same as right associated multiplication: Proof. (... (x 1 x 2)... x n 1) x n = x 1 (x 2 (... (x n 1 x n)...) Note that this is really not just one claim but infinitely many: one for each value of n 0; there will induction somewhere. First we establish a little auxiliary result: we can pull out the first term in the left associated product: We prove (... ((a x 1) x 2)... x n 1) x n = a ((... (x 1 x 2)... x n 1) x n) by induction on n. n = 0 is easy, so assume the claim holds for n 1 0. ((... ((a x 1) x 2)... x n 1) x n = by induction hypothesis (a (... (x 1 x 2)... x n 1)) x n = by associativity a ((... (x 1 x 2)... x n 1) x n) (... ((a x 1) x 2)... x n 1) x n = a ((... (x 1 x 2)... x n 1) x n) Main Argument 53 Some Comments on the Proof 54 Case n = 3 is just the associativity axiom. So assume we have the claim for n 3. Then by auxiliary claim by IH (... ((a x 1) x 2)... x n 1) x n = a ((... (x 1 x 2)... x n 1) x n) = a (x 1 (x 2 (... (x n 1 x n)...)) It is important to note that each single one of the formulae ϕ n : (... (x 1 x 2)... x n 1) x n = x 1 (x 2 (... (x n 1 x n)...) can be proven from the associativity axiom, using a separate proof for each n. We are not currently interested in a proof of a much more powerful statement such as n ϕ n, this would require a much stronger logical system. And don t even think about forming an infinite conjunction infinitary logics are very complicated. ϕ 0 ϕ 1 ϕ 2... ϕ n...

10 A Challenge 55 Frivolous Picture 1 56 So we have proven that the associativity axiom has the consequence (... (x 1 x 2)... x n 1) x n = x 1 (x 2 (... (x n 1 x n)...) Of course, this is just one way to parenthesize these expressions, a more ambitious project would be to show that a similar equation can be established for all possible parenthesizations. Which brings up the question what exactly is meant by all possible parenthesizations. A good model is the parse tree of an expression: internal nodes denote on occurrence of and the leaves are labeled by the arguments: if we read off the frontier of the tree from left to right we get x 1, x 2,..., x n. Note that these trees are full binary trees. We need to show that the associativity axiom, when construed as an equation on full binary trees, allows us to transform all full binary trees with n leaves into one another. Frivolous Picture 2 57 A Non-Theorem 58 Here is a formula that can not be derived from associativity: x y = y x Operations that satisfy this property are called commutative or Abelian. Note that in order to show that this formula is not derivable from the associativity axiom it is enough to find just one structure in which associativity holds but this formula is false: the single counterexample shows that ϕ is not a semantic consequence of the associativity axiom, and so it cannot be derivable either. Non-commutative associative operations are plentiful: take all words over a two-letter alphabet, say, {a, b}, with concatenation. Clearly ab ba so commutativity fails. Matrix multiplication is another classical example. An Equational Argument 59 And Beyond 60 Commutativity may follow from other properties, though. Recall that a group is Boolean if it satisfies x 2 = 1 We claim that every Boolean group is also Abelian. To show: ab = ba. equation justification 1 abab = 1 substitute ab/x in (B) 2 aabab = a L a, simplify (1) (B) 3 bab = a substitute a/x in (B), simplify (2) 4 babb = ab R b, simplify (3) 5 ba = ab substitute b/x in (B), simplify (4) Proving identities from (BA) is important, but note that we often are interested in more complicated assertions such as: Lemma x + y = 1 and xy = 0 implies x = y. Lemma x (x + y = x) implies y = 0. How does one prove these assertions?

11 Decidability 61 Who Cares? 62 Discussions of Boolean algebras in general often lead right into the swamp of set theory, Stone s theorem notwithstanding. It is therefore not clear whether the Entscheidungsproblem for Boolean algebras is solvable. Theorem (A. Tarski 1940) The first-order theory of Boolean algebra is decidable. This is in sharp contrast to formalizations of (small fragments of) arithmetic. Equational reasoning in the context of an axiomatic system has become the gold standard in some areas of mathematics, in particular in algebra. More generally, Bourbaki s work shows clearly that describing mathematical structures in terms of well-chosen axioms is an excellent way to guarantee rigor and precision. In the future, the set-theoretic approach embraced by Bourbaki may ultimately give way to a more categoric/type-theoretic approach, but that will argue even more strongly in favor of equational reasoning.

CDM [2ex]Boole's World

CDM [2ex]Boole's World CDM Boole s World Klaus Sutner Carnegie Mellon University Fall 2018 1 Algebra of Circuits Boolean Algebras Proofs A Design Challenge 3 How does one build complicated digital circuits? This one has feedback,

More information

Microsoft PowerPoint - STU_EC_Ch04.ppt

Microsoft PowerPoint - STU_EC_Ch04.ppt 樹德科技大學資訊工程系 Chapter 4: Boolean Algebra and Logic Simplification Shi-Huang Chen Fall 200 Outline Boolean Operations and Expressions Laws and Rules of Boolean Algebra DeMorgan's Theorems Boolean Analysis

More information

ENGG1410-F Tutorial 6

ENGG1410-F Tutorial 6 Jianwen Zhao Department of Computer Science and Engineering The Chinese University of Hong Kong 1/16 Problem 1. Matrix Diagonalization Diagonalize the following matrix: A = [ ] 1 2 4 3 2/16 Solution The

More information

Knowledge and its Place in Nature by Hilary Kornblith

Knowledge and its Place in Nature by Hilary Kornblith Deduction by Daniel Bonevac Chapter 7 Quantified Natural Deduction Quantified Natural Deduction As with truth trees, natural deduction in Q depends on the addition of some new rules to handle the quantifiers.

More information

Microsoft PowerPoint - STU_EC_Ch08.ppt

Microsoft PowerPoint - STU_EC_Ch08.ppt 樹德科技大學資訊工程系 Chapter 8: Counters Shi-Huang Chen Fall 2010 1 Outline Asynchronous Counter Operation Synchronous Counter Operation Up/Down Synchronous Counters Design of Synchronous Counters Cascaded Counters

More information

PowerPoint Presentation

PowerPoint Presentation ITM omputer and ommunication Technologies Lecture #4 Part I: Introduction to omputer Technologies Logic ircuit Design & Simplification ITM 計算機與通訊技術 2 23 香港中文大學電子工程學系 Logic function implementation Logic

More information

< F5FB77CB6BCBD672028B0B6A46AABE4B751A874A643295F5FB8D5C5AA28A668ADB6292E706466>

< F5FB77CB6BCBD672028B0B6A46AABE4B751A874A643295F5FB8D5C5AA28A668ADB6292E706466> A A A A A i A A A A A A A ii Introduction to the Chinese Editions of Great Ideas Penguin s Great Ideas series began publication in 2004. A somewhat smaller list is published in the USA and a related, even

More information

untitled

untitled Co-integration and VECM Yi-Nung Yang CYCU, Taiwan May, 2012 不 列 1 Learning objectives Integrated variables Co-integration Vector Error correction model (VECM) Engle-Granger 2-step co-integration test Johansen

More information

Untitled-3

Untitled-3 SEC.. Separable Equations In each of problems 1 through 8 solve the given differential equation : ü 1. y ' x y x y, y 0 fl y - x 0 fl y - x 0 fl y - x3 3 c, y 0 ü. y ' x ^ y 1 + x 3 x y 1 + x 3, y 0 fl

More information

數學導論 學數學 前言 學 學 數學 學 數學. 學數學 論. 學,. (Logic), (Set) 數 (Function)., 學 論. 論 學 數學.,,.,.,., 論,.,. v Chapter 1 Basic Logic 學 數學 學 言., logic. 學 學,, 學., 學 數學. 數學 論 statement. 2 > 0 statement, 3 < 2 statement

More information

BC04 Module_antenna__ doc

BC04 Module_antenna__ doc http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 1 of 10 http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 2 of 10 http://www.infobluetooth.com TEL:+86-23-68798999

More information

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63>

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63> 2010 年 理 工 类 AB 级 阅 读 判 断 例 题 精 选 (2) Computer mouse How does the mouse work? We have to start at the bottom, so think upside down for now. It all starts with mouse ball. As the mouse ball in the bottom

More information

2-7.FIT)

2-7.FIT) 文 化 园 地 8 2009 年 8 月 18 日 星 期 二 E-mail:liuliyuan@qunlitimes.com 群 立 文 化 感 受 今 天 你 开 心 了 吗? 周 传 喜 群 雄 争 立 竞 争 意 识 ; 傲 立 群 雄 奋 斗 目 标, 这 几 句 话 一 直 是 群 立 的 文 化 和 方 针, 也 同 样 是 我 很 喜 欢 的 座 右 铭 我 想 这 几 句 话 生

More information

Microsoft PowerPoint _代工實例-1

Microsoft PowerPoint _代工實例-1 4302 動態光散射儀 (Dynamic Light Scattering) 代工實例與結果解析 生醫暨非破壞性分析團隊 2016.10 updated Which Size to Measure? Diameter Many techniques make the useful and convenient assumption that every particle is a sphere. The

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

1 * 1 *

1 * 1 * 1 * 1 * taka@unii.ac.jp 1992, p. 233 2013, p. 78 2. 1. 2014 1992, p. 233 1995, p. 134 2. 2. 3. 1. 2014 2011, 118 3. 2. Psathas 1995, p. 12 seen but unnoticed B B Psathas 1995, p. 23 2004 2006 2004 4 ah

More information

徐汇教育214/3月刊 重 点 关 注 高中生异性交往的小团体辅导 及效果研究 颜静红 摘 要 采用人际关系综合诊断量表 郑日昌编制并 与同性交往所不能带来的好处 带来稳定感和安全感 能 修订 对我校高一学生进行问卷测量 实验组前后测 在 够度过更快乐的时光 获得与别人友好相处的经验 宽容 量表总分和第 4 项因子分 异性交往困扰 上均有显著差 大度和理解力得到发展 得到掌握社会技术的机会 得到 异

More information

4. 每 组 学 生 将 写 有 习 语 和 含 义 的 两 组 卡 片 分 别 洗 牌, 将 顺 序 打 乱, 然 后 将 两 组 卡 片 反 面 朝 上 置 于 课 桌 上 5. 学 生 依 次 从 两 组 卡 片 中 各 抽 取 一 张, 展 示 给 小 组 成 员, 并 大 声 朗 读 卡

4. 每 组 学 生 将 写 有 习 语 和 含 义 的 两 组 卡 片 分 别 洗 牌, 将 顺 序 打 乱, 然 后 将 两 组 卡 片 反 面 朝 上 置 于 课 桌 上 5. 学 生 依 次 从 两 组 卡 片 中 各 抽 取 一 张, 展 示 给 小 组 成 员, 并 大 声 朗 读 卡 Tips of the Week 课 堂 上 的 英 语 习 语 教 学 ( 二 ) 2015-04-19 吴 倩 MarriottCHEI 大 家 好! 欢 迎 来 到 Tips of the Week! 这 周 我 想 和 老 师 们 分 享 另 外 两 个 课 堂 上 可 以 开 展 的 英 语 习 语 教 学 活 动 其 中 一 个 活 动 是 一 个 充 满 趣 味 的 游 戏, 另 外

More information

Microsoft Word - 第四組心得.doc

Microsoft Word - 第四組心得.doc 徐 婉 真 這 四 天 的 綠 島 人 權 體 驗 營 令 我 印 象 深 刻, 尤 其 第 三 天 晚 上 吳 豪 人 教 授 的 那 堂 課, 他 讓 我 聽 到 不 同 於 以 往 的 正 義 之 聲 轉 型 正 義, 透 過 他 幽 默 熱 情 的 語 調 激 起 了 我 對 政 治 的 興 趣, 願 意 在 未 來 多 關 心 社 會 多 了 解 政 治 第 一 天 抵 達 綠 島 不 久,

More information

2015年4月11日雅思阅读预测机经(新东方版)

2015年4月11日雅思阅读预测机经(新东方版) 剑 桥 雅 思 10 第 一 时 间 解 析 阅 读 部 分 1 剑 桥 雅 思 10 整 体 内 容 统 计 2 剑 桥 雅 思 10 话 题 类 型 从 以 上 统 计 可 以 看 出, 雅 思 阅 读 的 考 试 话 题 一 直 广 泛 多 样 而 题 型 则 稳 中 有 变 以 剑 桥 10 的 test 4 为 例 出 现 的 三 篇 文 章 分 别 是 自 然 类, 心 理 研 究 类,

More information

HPM 通 訊 第 八 卷 第 二 三 期 合 刊 第 二 版 數 學 歸 納 法 是 什 麼 玩 意 兒 中 原 大 學 師 資 培 育 中 心 楊 凱 琳 教 授 一 數 學 歸 納 法 不 同 於 歸 納 法 數 學 歸 納 法 在 數 學 知 識 的 領 域 中, 是 屬 於 基 本 原 理

HPM 通 訊 第 八 卷 第 二 三 期 合 刊 第 二 版 數 學 歸 納 法 是 什 麼 玩 意 兒 中 原 大 學 師 資 培 育 中 心 楊 凱 琳 教 授 一 數 學 歸 納 法 不 同 於 歸 納 法 數 學 歸 納 法 在 數 學 知 識 的 領 域 中, 是 屬 於 基 本 原 理 HPM 通 訊 第 八 卷 第 二 三 期 合 刊 第 一 版 數 學 歸 納 法 專 輯 發 行 人 : 洪 萬 生 ( 台 灣 師 大 數 學 系 教 授 ) 主 編 : 蘇 惠 玉 ( 西 松 高 中 ) 副 主 編 : 林 倉 億 ( 台 師 大 數 學 系 ) 助 理 編 輯 : 張 復 凱 歐 士 福 ( 台 灣 師 大 數 學 所 ) 編 輯 小 組 : 蘇 意 雯 ( 成 功 高 中

More information

<4D6963726F736F667420576F7264202D205F4230365FB942A5CEA668B443C5E9BB73A740B5D8A4E5B8C9A552B1D0A7F75FA6BFB1A4ACFC2E646F63>

<4D6963726F736F667420576F7264202D205F4230365FB942A5CEA668B443C5E9BB73A740B5D8A4E5B8C9A552B1D0A7F75FA6BFB1A4ACFC2E646F63> 運 用 多 媒 體 製 作 華 文 補 充 教 材 江 惜 美 銘 傳 大 學 應 用 中 文 系 chm248@gmail.com 摘 要 : 本 文 旨 在 探 究 如 何 運 用 多 媒 體, 結 合 文 字 聲 音 圖 畫, 製 作 華 文 補 充 教 材 當 我 們 在 進 行 華 文 教 學 時, 往 往 必 須 透 過 教 案 設 計, 並 製 作 補 充 教 材, 方 能 使 教 學

More information

Microsoft Word doc

Microsoft Word doc 中 考 英 语 科 考 试 标 准 及 试 卷 结 构 技 术 指 标 构 想 1 王 后 雄 童 祥 林 ( 华 中 师 范 大 学 考 试 研 究 院, 武 汉,430079, 湖 北 ) 提 要 : 本 文 从 结 构 模 式 内 容 要 素 能 力 要 素 题 型 要 素 难 度 要 素 分 数 要 素 时 限 要 素 等 方 面 细 致 分 析 了 中 考 英 语 科 试 卷 结 构 的

More information

03施琅「棄留臺灣議」探索.doc

03施琅「棄留臺灣議」探索.doc 38 93 43 59 43 44 1 2 1621 1645 1646 3 1647 1649 4 1 1996 12 121 2 1988 1 54---79 3 1990 2 39 4 1987 8 16 19 1649 27---28 45 1651 5 1656 1662 1664 1667 1668 6 1681 1683 7 13 1958 2 1651 2002 11 67 1961

More information

The Development of Color Constancy and Calibration System

The Development of Color Constancy and Calibration System The Development of Color Constancy and Calibration System The Development of Color Constancy and Calibration System LabVIEW CCD BMP ii Abstract The modern technologies develop more and more faster, and

More information

<4D6963726F736F667420506F776572506F696E74202D20B5DAD2BBD5C228B4F2D3A1B0E6292E707074205BBCE6C8DDC4A3CABD5D>

<4D6963726F736F667420506F776572506F696E74202D20B5DAD2BBD5C228B4F2D3A1B0E6292E707074205BBCE6C8DDC4A3CABD5D> Homeworks ( 第 三 版 ):.4 (,, 3).5 (, 3).6. (, 3, 5). (, 4).4.6.7 (,3).9 (, 3, 5) Chapter. Number systems and codes 第 一 章. 数 制 与 编 码 . Overview 概 述 Information is of digital forms in a digital system, and

More information

2009.05

2009.05 2009 05 2009.05 2009.05 璆 2009.05 1 亿 平 方 米 6 万 套 10 名 20 亿 元 5 个 月 30 万 亿 60 万 平 方 米 Data 围 观 CCDI 公 司 内 刊 企 业 版 P08 围 观 CCDI 管 理 学 上 有 句 名 言 : 做 正 确 的 事, 比 正 确 地 做 事 更 重 要 方 向 的 对 错 于 大 局 的 意 义 而 言,

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF I II III The Study of Factors to the Failure or Success of Applying to Holding International Sport Games Abstract For years, holding international sport games has been Taiwan s goal and we are on the way

More information

錫安教會2015年11月29日分享

錫安教會2015年11月29日分享 錫 安 教 會 2015 年 11 月 29 日 分 享 第 一 章 : 天 馬 座 行 動 答 問 篇 (2) 問 題 (1): 信 息 中 曾 提 及, 有 一 群 忠 良 的 皇 者 和 精 英 製 造 共 同 信 息, 但 亦 有 一 群 奸 惡 的 如 果 將 來 他 們 來 尋 找 我 們, 顯 示 他 們 是 製 造 共 同 信 息 的 人 這 樣, 我 們 有 沒 有 需 要 或 者

More information

Microsoft Word - 11月電子報1130.doc

Microsoft Word - 11月電子報1130.doc 發 行 人 : 楊 進 成 出 刊 日 期 2008 年 12 月 1 日, 第 38 期 第 1 頁 / 共 16 頁 封 面 圖 話 來 來 來, 來 葳 格 ; 玩 玩 玩, 玩 數 學 在 11 月 17 到 21 日 這 5 天 裡 每 天 一 個 題 目, 孩 子 們 依 據 不 同 年 段, 尋 找 屬 於 自 己 的 解 答, 這 些 數 學 題 目 和 校 園 情 境 緊 緊 結

More information

A-錢穆宗教觀-171

A-錢穆宗教觀-171 台 南 應 用 科 大 學 報 第 32 期 人 文 管 理 類 頁 171-186 中 華 民 國 102 年 10 月 錢 穆 宗 教 觀 析 論 以 文 化 與 教 育 為 觀 察 核 心 梁 淑 芳 國 立 體 育 大 學 通 識 教 育 中 心 助 理 教 授 摘 要 國 學 大 師 錢 穆, 可 謂 一 代 通 儒 本 文 以 其 文 化 與 教 育 為 主, 輔 以 錢 穆 的 其 餘

More information

Lorem ipsum dolor sit amet, consectetuer adipiscing elit

Lorem ipsum dolor sit amet, consectetuer adipiscing elit English for Study in Australia 留 学 澳 洲 英 语 讲 座 Lesson 3: Make yourself at home 第 三 课 : 宾 至 如 归 L1 Male: 各 位 朋 友 好, 欢 迎 您 收 听 留 学 澳 洲 英 语 讲 座 节 目, 我 是 澳 大 利 亚 澳 洲 广 播 电 台 的 节 目 主 持 人 陈 昊 L1 Female: 各 位

More information

國立桃園高中96學年度新生始業輔導新生手冊目錄

國立桃園高中96學年度新生始業輔導新生手冊目錄 彰 化 考 區 104 年 國 中 教 育 會 考 簡 章 簡 章 核 定 文 號 : 彰 化 縣 政 府 104 年 01 月 27 日 府 教 學 字 第 1040027611 號 函 中 華 民 國 104 年 2 月 9 日 彰 化 考 區 104 年 國 中 教 育 會 考 試 務 會 編 印 主 辦 學 校 : 國 立 鹿 港 高 級 中 學 地 址 :50546 彰 化 縣 鹿 港 鎮

More information

東吳大學

東吳大學 律 律 論 論 療 行 The Study on Medical Practice and Coercion 林 年 律 律 論 論 療 行 The Study on Medical Practice and Coercion 林 年 i 讀 臨 療 留 館 讀 臨 律 六 礪 讀 不 冷 療 臨 年 裡 歷 練 禮 更 老 林 了 更 臨 不 吝 麗 老 劉 老 論 諸 見 了 年 金 歷 了 年

More information

C o n t e n t s...7... 15 1. Acceptance... 17 2. Allow Love... 19 3. Apologize... 21 4. Archangel Metatron... 23 5. Archangel Michael... 25 6. Ask for

C o n t e n t s...7... 15 1. Acceptance... 17 2. Allow Love... 19 3. Apologize... 21 4. Archangel Metatron... 23 5. Archangel Michael... 25 6. Ask for Doreen Virtue, Ph.D. Charles Virtue C o n t e n t s...7... 15 1. Acceptance... 17 2. Allow Love... 19 3. Apologize... 21 4. Archangel Metatron... 23 5. Archangel Michael... 25 6. Ask for a Sign... 27 7.

More information

PowerPoint Presentation

PowerPoint Presentation Decision analysis 量化決策分析方法專論 2011/5/26 1 Problem formulation- states of nature In the decision analysis, decision alternatives are referred to as chance events. The possible outcomes for a chance event

More information

Microsoft Word - Final Exam Review Packet.docx

Microsoft Word - Final Exam Review Packet.docx Do you know these words?... 3.1 3.5 Can you do the following?... Ask for and say the date. Use the adverbial of time correctly. Use Use to ask a tag question. Form a yes/no question with the verb / not

More information

南華大學數位論文

南華大學數位論文 南 華 大 學 生 死 學 系 碩 士 論 文 吳 晟 詩 文 作 品 中 生 命 觀 之 研 究 A Study On Life Viewpoint Of Wu S heng's Poems and Essays 研 究 生 : 施 玉 修 指 導 教 授 : 廖 俊 裕 博 士 中 華 民 國 102 年 5 月 14 日 謝 誌 感 謝 我 的 父 母, 賦 予 我 一 個 圓 滿 的 生

More information

Roderick M.Chisholm on Justification I Synopsis Synopsis Since the problem of Gettier, the problem of justification has become the core of contemporary western epistemology. The author tries to clarify

More information

國立中山大學學位論文典藏.pdf

國立中山大學學位論文典藏.pdf 7 i Abstract Under the globalization trend even the still growing industry of Taiwan Biopharmaceutical will meet the same developing rule Many of the Biotechnology or Pharmaceutical companies are not satisfied

More information

<4D6963726F736F667420576F7264202D203033BDD7A16DA576B04FA145A4ADABD2A5BBACF6A16EADBAB6C0ABD2A4A7B74EB8712E646F63>

<4D6963726F736F667420576F7264202D203033BDD7A16DA576B04FA145A4ADABD2A5BBACF6A16EADBAB6C0ABD2A4A7B74EB8712E646F63> 論 史 記 五 帝 本 紀 首 黃 帝 之 意 義 林 立 仁 明 志 科 技 大 學 通 識 教 育 中 心 副 教 授 摘 要 太 史 公 司 馬 遷 承 父 著 史 遺 志, 並 以 身 膺 五 百 年 大 運, 上 繼 孔 子 春 秋 之 史 學 文 化 道 統 為 其 職 志, 著 史 記 欲 達 究 天 人 之 際, 通 古 今 之 變, 成 一 家 之 言 之 境 界 然 史 記 百

More information

高中英文科教師甄試心得

高中英文科教師甄試心得 高 中 英 文 科 教 師 甄 試 心 得 英 語 學 系 碩 士 班 林 俊 呈 高 雄 市 立 高 雄 高 級 中 學 今 年 第 一 次 參 加 教 師 甄 試, 能 夠 在 尚 未 服 兵 役 前 便 考 上 高 雄 市 立 高 雄 高 級 中 學 專 任 教 師, 自 己 覺 得 很 意 外, 也 很 幸 運 考 上 後 不 久 在 與 雄 中 校 長 的 會 談 中, 校 長 的 一 句

More information

Microsoft PowerPoint - STU_EC_Ch02.ppt

Microsoft PowerPoint - STU_EC_Ch02.ppt 樹德科技大學資訊工程系 Chapter 2: Number Systems Operations and Codes Shi-Huang Chen Sept. 2010 1 Chapter Outline 2.1 Decimal Numbers 2.2 Binary Numbers 2.3 Decimal-to-Binary Conversion 2.4 Binary Arithmetic 2.5

More information

十二年國民基本教育

十二年國民基本教育 0 會 考, 世 紀 教 育 工 程 的 重 要 環 節 2 編 者 的 話 3 高 瞻 遠 矚 看 會 考 概 論 篇 壹 簡 介 5 貳 考 試 科 目 成 績 計 算 7 參 試 務 規 劃 11 肆 成 績 應 用 12 條 分 縷 析 答 客 問 釋 疑 篇 13 追 根 究 柢 說 考 題 解 惑 篇 壹 考 試 科 目 與 命 題 依 據 15 貳 考 試 題 型 15 參 考 試 時

More information

中國的科學與中國的公民:大陸研究在台灣的困境\\

中國的科學與中國的公民:大陸研究在台灣的困境\\ 89 12 27 60 * * 28 1 2 1 2 89 12 29 3 3 30 4 4 89 12 31 5 5 negative thinking inferior thinking 32 6 6 self so situation 89 12 33 34 7 8 ideal type 9 7 8 9 89 12 35 36 10 10 self so 89 12 37 38 strange

More information

可 愛 的 動 物 小 五 雷 雅 理 第 一 次 小 六 甲 黃 駿 朗 今 年 暑 假 發 生 了 一 件 令 人 非 常 難 忘 的 事 情, 我 第 一 次 參 加 宿 營, 離 開 父 母, 自 己 照 顧 自 己, 出 發 前, 我 的 心 情 十 分 緊 張 當 到 達 目 的 地 後

可 愛 的 動 物 小 五 雷 雅 理 第 一 次 小 六 甲 黃 駿 朗 今 年 暑 假 發 生 了 一 件 令 人 非 常 難 忘 的 事 情, 我 第 一 次 參 加 宿 營, 離 開 父 母, 自 己 照 顧 自 己, 出 發 前, 我 的 心 情 十 分 緊 張 當 到 達 目 的 地 後 郭家朗 許鈞嵐 劉振迪 樊偉賢 林洛鋒 第 36 期 出版日期 28-3-2014 出版日期 28-3-2014 可 愛 的 動 物 小 五 雷 雅 理 第 一 次 小 六 甲 黃 駿 朗 今 年 暑 假 發 生 了 一 件 令 人 非 常 難 忘 的 事 情, 我 第 一 次 參 加 宿 營, 離 開 父 母, 自 己 照 顧 自 己, 出 發 前, 我 的 心 情 十 分 緊 張 當 到 達 目

More information

: : : : : ISBN / C53:H : 19.50

: : : : : ISBN / C53:H : 19.50 : : : : 2002 1 1 2002 1 1 : ISBN 7-224-06364-9 / C53:H059-53 : 19.50 50,,,,,,, ; 50,,,,,,,, 1 ,,,,,,,,,,,,,, ;,,,,,,,,, 2 ,,,, 2002 8 3 ( 1 ) ( 1 ) Deduction One Way of Deriving the Meaning of U nfamiliar

More information

untitled

untitled 數 Quadratic Equations 數 Contents 錄 : Quadratic Equations Distinction between identities and equations. Linear equation in one unknown 3 ways to solve quadratic equations 3 Equations transformed to quadratic

More information

Trigonometric identities

Trigonometric identities Trigonometric Identities Peggy Adamson Mathematics Learning Centre University of Sydney NSW 006 c 986 University of Sydney Contents Introduction. How to use this book..... Introduction......3 Objectives.......4

More information

9 * B0-0 * 16ZD097 10 2018 5 3 11 117 2011 349 120 121 123 46 38-39 12 2018 5 23 92 939 536 2009 98 1844 13 1 25 926-927 3 304 305-306 1 23 95 14 2018 5 25 926-927 122 1 1 self-ownership 15 22 119 a b

More information

十二年國民基本教育

十二年國民基本教育 0 會 考, 世 紀 教 育 工 程 的 重 要 環 節 2 編 者 的 話 3 高 瞻 遠 矚 看 會 考 概 論 篇 壹 簡 介 4 貳 考 試 科 目 6 參 成 績 計 算 6 肆 試 務 規 劃 7 伍 成 績 應 用 8 追 根 究 柢 說 考 題 解 惑 篇 壹 試 題 取 材 與 命 題 原 則 9 貳 各 科 考 試 內 容 11 参 各 科 問 與 答 17 由 小 見 大 觀

More information

十二年國民基本教育

十二年國民基本教育 0 會 考, 世 紀 教 育 工 程 的 重 要 環 節 2 編 者 的 話 3 高 瞻 遠 矚 看 會 考 概 論 篇 壹 簡 介 5 貳 考 試 科 目 成 績 計 算 7 參 試 務 規 劃 11 肆 成 績 應 用 13 條 分 縷 析 答 客 問 釋 疑 篇 14 追 根 究 柢 說 考 題 解 惑 篇 壹 試 題 取 材 與 命 題 原 則 16 貳 各 科 考 試 內 容 18 参 各

More information

hks298cover&back

hks298cover&back 2957 6364 2377 3300 2302 1087 www.scout.org.hk scoutcraft@scout.org.hk 2675 0011 5,500 Service and Scouting Recently, I had an opportunity to learn more about current state of service in Hong Kong

More information

Microsoft Word - 論文封面-980103修.doc

Microsoft Word - 論文封面-980103修.doc 淡 江 大 學 中 國 文 學 學 系 碩 士 在 職 專 班 碩 士 論 文 指 導 教 授 : 呂 正 惠 蘇 敏 逸 博 士 博 士 倚 天 屠 龍 記 愛 情 敘 事 之 研 究 研 究 生 : 陳 麗 淑 撰 中 華 民 國 98 年 1 月 淡 江 大 學 研 究 生 中 文 論 文 提 要 論 文 名 稱 : 倚 天 屠 龍 記 愛 情 敘 事 之 研 究 頁 數 :128 校 系 (

More information

Lorem ipsum dolor sit amet, consectetuer adipiscing elit

Lorem ipsum dolor sit amet, consectetuer adipiscing elit 留 学 澳 洲 英 语 讲 座 English for Study in Australia 第 十 三 课 : 与 同 学 一 起 做 功 课 Lesson 13: Working together L1 Male 各 位 听 众 朋 友 好, 我 是 澳 大 利 亚 澳 洲 广 播 电 台 的 节 目 主 持 人 陈 昊 L1 Female 各 位 好, 我 是 马 健 媛 L1 Male L1

More information

Microsoft Word - 武術合併

Microsoft Word - 武術合併 11/13 醫 學 系 一 年 級 張 雲 筑 武 術 課 開 始, 老 師 並 不 急 著 帶 我 們 舞 弄 起 來, 而 是 解 說 著 支 配 氣 的 流 動 為 何 構 成 中 國 武 術 的 追 求 目 標 武 術, 名 之 為 武 恐 怕 與 其 原 本 的 精 義 有 所 偏 差 其 實 武 術 是 為 了 讓 學 習 者 能 夠 掌 握 身 體, 保 養 身 體 而 發 展, 並

More information

99 學年度班群總介紹 第 370 期 班群總導 陳怡靜 G45 班群總導 陳怡靜(河馬) A 家 惠如 家浩 T 格 宜蓁 小 霖 怡 家 M 璇 均 蓁 雴 家 數學領域 珈玲 國燈 370-2 英領域 Kent

99 學年度班群總介紹 第 370 期 班群總導 陳怡靜 G45 班群總導 陳怡靜(河馬) A 家 惠如 家浩 T 格 宜蓁 小 霖 怡 家 M 璇 均 蓁 雴 家 數學領域 珈玲 國燈 370-2 英領域 Kent 2010 年 8 月 27 日 出 刊 精 緻 教 育 宜 蘭 縣 公 辦 民 營 人 國 民 中 小 學 財 團 法 人 人 適 性 教 育 基 金 會 承 辦 地 址 : 宜 蘭 縣 26141 頭 城 鎮 雅 路 150 號 (03)977-3396 http://www.jwps.ilc.edu.tw 健 康 VS. 學 習 各 位 合 夥 人 其 實 都 知 道, 我 是 個 胖 子, 而

More information

[ 13 年 12 月 06 日, 下 午 6 点 24 分 ] Intel Hosts 新 加 入 的 同 学 们, 快 去 听 听 在 线 宣 讲 会 哦, 同 时 完 成 页 面 下 方 有 奖 调 查, 就 有 资 格 参 与 大 奖 抽 取 啦! [ 13 年 12 月 06 日, 下 午

[ 13 年 12 月 06 日, 下 午 6 点 24 分 ] Intel Hosts 新 加 入 的 同 学 们, 快 去 听 听 在 线 宣 讲 会 哦, 同 时 完 成 页 面 下 方 有 奖 调 查, 就 有 资 格 参 与 大 奖 抽 取 啦! [ 13 年 12 月 06 日, 下 午 China Career Fair: To Know a Different Intel Time Participants Chat Transcript [ 13 年 12 月 06 日, 下 午 6 点 00 分 ] Participant Hi [ 13 年 12 月 06 日, 下 午 6 点 00 分 ] Intel Hosts 大 家 好! [ 13 年 12 月 06 日, 下 午

More information

第1章修改稿

第1章修改稿 1.0 (Boolean theory),,, (boolean), : (theorem), (antitheorem),,,,, T,, T,,,, T (high voltage), (low voltage), (power) (ground) (boolean value), (nullary boolean operators),,,, (not) (), x(negation) ; (truth

More information

中 國 學 研 究 期 刊 泰 國 農 業 大 學 บ นทอนเช นก น และส งผลก บการด ดแปลงจากวรรณกรรมมาเป นบทภาพยนตร และบทละคร โทรท ศน ด วยเช นก น จากการเคารพวรรณกรรมต นฉบ บเป นหล

中 國 學 研 究 期 刊 泰 國 農 業 大 學 บ นทอนเช นก น และส งผลก บการด ดแปลงจากวรรณกรรมมาเป นบทภาพยนตร และบทละคร โทรท ศน ด วยเช นก น จากการเคารพวรรณกรรมต นฉบ บเป นหล วารสารจ นศ กษา มหาว ทยาล ยเกษตรศาสตร การเล อกสรรของย คสม ยท แตกต างก น โดยว เคราะห การด ดแปลง บทละครโทรท ศน หร อบทภาพยนต จากผลงานคลาสส กวรรณกรรม สม ยใหม ของจ น The Choice of Times Film Adaptation of Chinese

More information

中国科学技术大学学位论文模板示例文档

中国科学技术大学学位论文模板示例文档 University of Science and Technology of China A dissertation for doctor s degree An Example of USTC Thesis Template for Bachelor, Master and Doctor Author: Zeping Li Speciality: Mathematics and Applied

More information

Your Field Guide to More Effective Global Video Conferencing As a global expert in video conferencing, and a geographically dispersed company that uses video conferencing in virtually every aspect of its

More information

-------------------------------------------------------------------------------- Pekinger in NewYork -------------------------------------------------------------------------------- 1011 121314 151617

More information

Microsoft Word - 24217010311110028谢雯雯.doc

Microsoft Word - 24217010311110028谢雯雯.doc HUAZHONG AGRICULTURAL UNIVERSITY 硕 士 学 位 论 文 MASTER S DEGREE DISSERTATION 80 后 女 硕 士 生 择 偶 现 状 以 武 汉 市 七 所 高 校 为 例 POST-80S FEMALE POSTGRADUATE MATE SELECTION STATUS STUDY TAKE WUHAN SEVEN UNIVERSITIES

More information

2005 5,,,,,,,,,,,,,,,,, , , 2174, 7014 %, % 4, 1961, ,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2

2005 5,,,,,,,,,,,,,,,,, , , 2174, 7014 %, % 4, 1961, ,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2 3,,,,,, 1872,,,, 3 2004 ( 04BZS030),, 1 2005 5,,,,,,,,,,,,,,,,, 1928 716,1935 6 2682 1928 2 1935 6 1966, 2174, 7014 %, 94137 % 4, 1961, 59 1929,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2 , :,,,, :,,,,,,

More information

Gassama Abdoul Gadiri University of Science and Technology of China A dissertation for master degree Ordinal Probit Regression Model and Application in Credit Rating for Users of Credit Card Author :

More information

~ ~ ~

~ ~ ~ 33 4 2014 467 478 Studies in the History of Natural Sciences Vol. 33 No. 4 2014 030006 20 20 N092 O6-092 A 1000-1224 2014 04-0467-12 200 13 Roger Bacon 1214 ~ 1292 14 Berthold Schwarz 20 Luther Carrington

More information

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish 我 难 度 : 高 级 对 们 现 不 在 知 仍 道 有 听 影 过 响 多 少 那 次 么 : 研 英 究 过 文 论 去 写 文 时 作 的 表 技 引 示 巧 言 事 : 部 情 引 分 发 言 该 生 使 在 中 用 过 去, 而 现 在 完 成 时 仅 表 示 事 情 发 生 在 过 去, 并 的 哪 现 种 在 时 完 态 成 呢 时? 和 难 过 道 去 不 时 相 关? 是 所 有

More information

A VALIDATION STUDY OF THE ACHIEVEMENT TEST OF TEACHING CHINESE AS THE SECOND LANGUAGE by Chen Wei A Thesis Submitted to the Graduate School and Colleg

A VALIDATION STUDY OF THE ACHIEVEMENT TEST OF TEACHING CHINESE AS THE SECOND LANGUAGE by Chen Wei A Thesis Submitted to the Graduate School and Colleg 上 海 外 国 语 大 学 SHANGHAI INTERNATIONAL STUDIES UNIVERSITY 硕 士 学 位 论 文 MASTER DISSERTATION 学 院 国 际 文 化 交 流 学 院 专 业 汉 语 国 际 教 育 硕 士 题 目 届 别 2010 届 学 生 陈 炜 导 师 张 艳 莉 副 教 授 日 期 2010 年 4 月 A VALIDATION STUDY

More information

03

03 BIBLID 0254-4466(2002)20:2 pp. 57-80 20 2 91 12 vs. 1684-? * 57 58 20 2 1 2 3 4 5 transmission transformation 6 Whiggish interpretation 1 2000 8 559-563 539-558 1993 4 64-67 16 4 1995 3-7 2 1978 3 4 HPM

More information

Computer Architecture

Computer Architecture ECE 3120 Computer Systems Assembly Programming Manjeera Jeedigunta http://blogs.cae.tntech.edu/msjeedigun21 Email: msjeedigun21@tntech.edu Tel: 931-372-6181, Prescott Hall 120 Prev: Basic computer concepts

More information

目 感恩与代祷 录 编 者 1 牧者心声 勒住你的舌头 龚明鹏 3 见证与分享 我的见证 吴权伟 8 相信就能够看见 卓艳梅 12 再述主恩 爱的雕凿 张英治 19 万怡杉 28 母亲节征文 记念母亲节 凌励立 43 父母的爱和神的爱 曹 红 47 Love Lisa Wang 50

目 感恩与代祷 录 编 者 1 牧者心声 勒住你的舌头 龚明鹏 3 见证与分享 我的见证 吴权伟 8 相信就能够看见 卓艳梅 12 再述主恩 爱的雕凿 张英治 19 万怡杉 28 母亲节征文 记念母亲节 凌励立 43 父母的爱和神的爱 曹 红 47 Love Lisa Wang 50 TORONTO CHINA BIBLE CHURCH NEWS LETTER 2007 夏季刊 JUNE, 2007 二零零七年主题 凡事祷告 多伦多华夏圣经教会 目 感恩与代祷 录 编 者 1 牧者心声 勒住你的舌头 龚明鹏 3 见证与分享 我的见证 吴权伟 8 相信就能够看见 卓艳梅 12 再述主恩 爱的雕凿 张英治 19 万怡杉 28 母亲节征文 记念母亲节 凌励立 43 父母的爱和神的爱 曹

More information

A Study on Grading and Sequencing of Senses of Grade-A Polysemous Adjectives in A Syllabus of Graded Vocabulary for Chinese Proficiency 2002 I II Abstract ublished in 1992, A Syllabus of Graded Vocabulary

More information

( 1 ) ( 2 ) 395 1 723~728 2001 9 1 1 2691959 7 1 1982 11 4 2 1956 12 3 1988 9 2 1 22

( 1 ) ( 2 ) 395 1 723~728 2001 9 1 1 2691959 7 1 1982 11 4 2 1956 12 3 1988 9 2 1 22 2 2004 7 21~35 ( 1 ) ( 2 ) 395 1 723~728 2001 9 1 1 2691959 7 1 1982 11 4 2 1956 12 3 1988 9 2 1 22 ( 4 ) ( ) () 2 9 2 6 13 4 11 20 10 1 15 13 2 10 12 4 0 13+11 15 2 1 5 7 16 10 16 10 15 10 ( ) (1)13 13

More information

A Study on the Relationships of the Co-construction Contract A Study on the Relationships of the Co-Construction Contract ( ) ABSTRACT Co-constructio in the real estate development, holds the quite

More information

Microsoft PowerPoint - ch6 [相容模式]

Microsoft PowerPoint - ch6 [相容模式] UiBinder wzyang@asia.edu.tw UiBinder Java GWT UiBinder XML UI i18n (widget) 1 2 UiBinder HelloWidget.ui.xml: UI HelloWidgetBinder HelloWidget.java XML UI Owner class ( Composite ) UI XML UiBinder: Owner

More information

OA-253_H1~H4_OL.ai

OA-253_H1~H4_OL.ai WARNINGS Note: Read ALL the following BEFORE using this product. Follow all Guidelines at all times while using this product. CAUTION This warning indicates possibility of personal injury and material

More information

2011年高职语文考试大纲

2011年高职语文考试大纲 2016 年 湖 北 省 普 通 高 等 学 校 招 收 中 职 毕 业 生 技 能 高 考 文 化 综 合 考 试 大 纲 2016 年 普 通 高 等 学 校 招 收 中 职 毕 业 生 技 能 高 考, 是 由 中 等 职 业 学 校 ( 含 普 通 中 专 职 业 高 中 技 工 学 校 和 成 人 中 专 ) 机 械 类 电 子 类 计 算 机 类 会 计 专 业 护 理 专 业 建 筑

More information

1505.indd

1505.indd 上 海 市 孙 中 山 宋 庆 龄 文 物 管 理 委 员 会 上 海 宋 庆 龄 研 究 会 主 办 2015.05 总 第 148 期 图 片 新 闻 2015 年 9 月 22 日, 由 上 海 孙 中 山 故 居 纪 念 馆 台 湾 辅 仁 大 学 和 台 湾 图 书 馆 联 合 举 办 的 世 纪 姻 缘 纪 念 孙 中 山 先 生 逝 世 九 十 周 年 及 其 革 命 历 程 特 展

More information

國立中山大學學位論文典藏

國立中山大學學位論文典藏 I II III IV The theories of leadership seldom explain the difference of male leaders and female leaders. Instead of the assumption that the leaders leading traits and leading styles of two sexes are the

More information

GCSE Mathematics Question Paper Unit 2 March 2012

GCSE Mathematics Question Paper Unit 2 March 2012 Centre Number Surname Candidate Number For Examiner s Use Other Names Candidate Signature Examiner s Initials General Certificate of Secondary Education Higher Tier March 2012 Pages 2 3 4 5 Mark Mathematics

More information

* CO3 A 1674-2486 2011 04-0005 - 18 P. 253 * 5 1. 1949 1991 1949 1991 6 2. 7 1 2001 2 2008 8 1 2 2008 11 http / /www. rnd. ncnu. edu. tw /hdcheng /method /ways. doc 2008 / 9 disciplinary matrix 1 1. 2001

More information

Microsoft Word - 十月號.doc

Microsoft Word - 十月號.doc 沙 田 培 英 中 學 二 零 零 五 年 十 月 十 月 號 地 址 : 沙 田 禾 輋 邨 豐 順 街 9 號 電 話 :2691 7217 傳 真 :2602 0411 電 郵 :stpyc@school.net.hk 主 筆 : 邱 譪 源 校 長 張 敏 芝 小 姐 親 愛 的 家 長 同 學 和 校 友 : 新 學 年 已 開 始 了 幾 個 星 期, 今 天 剛 收 到 教 統 局 發

More information

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d WeChat Search Visual Identity Guidelines WEDESIGN 2018. 04 Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies

More information

2. 熟 读 题 目 3. 积 累 核 心 句 式 4. 列 出 每 道 题 的 提 纲 5. 构 造 各 部 分 的 论 证 模 板 6. 全 文 练 习 10 到 20 篇 文 章 如 何 分 析 Argument 题 目 1. Argument 题 目 的 文 字 结 构 1) 题 目 的 出

2. 熟 读 题 目 3. 积 累 核 心 句 式 4. 列 出 每 道 题 的 提 纲 5. 构 造 各 部 分 的 论 证 模 板 6. 全 文 练 习 10 到 20 篇 文 章 如 何 分 析 Argument 题 目 1. Argument 题 目 的 文 字 结 构 1) 题 目 的 出 GRE Revised General Test Analytical Writing 精 讲 精 练 班 笔 记 李 延 隆 新 浪 博 客 :http://blog.sina.com.cn/liyanlong76 新 浪 微 博 :http://weibo.com/liyanlong76 私 人 邮 箱 :liyanlong@xdf.cn 微 信 号 :liyanlong76 QQ: 676244491

More information

穨control.PDF

穨control.PDF TCP congestion control yhmiu Outline Congestion control algorithms Purpose of RFC2581 Purpose of RFC2582 TCP SS-DR 1998 TCP Extensions RFC1072 1988 SACK RFC2018 1996 FACK 1996 Rate-Halving 1997 OldTahoe

More information

Edge-Triggered Rising Edge-Triggered ( Falling Edge-Triggered ( Unit 11 Latches and Flip-Flops 3 Timing for D Flip-Flop (Falling-Edge Trigger) Unit 11

Edge-Triggered Rising Edge-Triggered ( Falling Edge-Triggered ( Unit 11 Latches and Flip-Flops 3 Timing for D Flip-Flop (Falling-Edge Trigger) Unit 11 Latches and Flip-Flops 11.1 Introduction 11.2 Set-Reset Latch 11.3 Gated D Latch 11.4 Edge-Triggered D Flip-Flop 11.5 S-R Flip-Flop 11.6 J-K Flip-Flop 11.7 T Flip-Flop 11.8 Flip-Flops with additional Inputs

More information

Microsoft Word - 24.doc

Microsoft Word - 24.doc 水 陸 畢 陳 晚 明 飲 食 風 尚 初 探 蕭 慧 媛 桃 園 創 新 技 術 學 院 觀 光 與 休 閒 事 業 管 理 系 摘 要 飲 食 是 人 類 維 持 與 發 展 生 命 的 基 礎 之 一, 飲 食 風 尚 會 隨 著 社 會 地 位 物 質 條 件 以 及 人 為 因 素 轉 移, 不 同 階 層 的 飲 食 方 式, 往 往 標 誌 著 他 們 的 社 會 身 分, 甚 至 反

More information

encourages children to develop rich emotions through close contact with surrounding nature. It also cultivates a foundation for children s balanced de

encourages children to develop rich emotions through close contact with surrounding nature. It also cultivates a foundation for children s balanced de * ** *** **** The Instruction of a Sense of Seasons in the Field Environment through the Comparison of Kindergartens in Germany, Australia and Japan Kazuyuki YOKOIKimihiko SAITOKatsushi ONO Koichi EBIHARA

More information

第六章

第六章 Reflection and Serving Learning 長 庚 科 技 大 學 護 理 系 劉 杏 元 一 服 務 學 習 為 何 要 反 思 All those things that we had to do for the service-learning, each one, successively helped me pull together what I d learned.

More information

3 月 17 日 托 三 班 正 式 开 班 了, 才 来 的 时 候 他 们 舍 不 得 离 开 爸 爸 妈 妈 和 熟 悉 的 家 庭, 到 现 在 半 个 月 过 去 了, 孩 子 们 对 幼 儿 园 的 生 活 已 经 非 常 熟 悉 了 而 这 半 个 月 的 时 间 里 他 们 也 成 长 了 许 多, 他 们 不 仅 不 哭 了, 还 能 做 到 独 立 入 厕 独 立 洗 手 独 立

More information

01 招 生 简 章 03 考 试 说 明 04 笔 试 样 题 2 emba.pbcsf.tsinghua.edu.cn

01 招 生 简 章 03 考 试 说 明 04 笔 试 样 题 2 emba.pbcsf.tsinghua.edu.cn 01 招 生 简 章 03 考 试 说 明 04 笔 试 样 题 2 emba.pbcsf.tsinghua.edu.cn 清 华 五 道 口 金 融 EMBA 招 生 简 章 金 融 EMBA 教 育 中 心 2012 年, 为 加 快 现 代 金 融 学 科 建 设, 培 养 高 端 金 融 人 才, 促 进 金 融 界 与 金 融 教 育 界 的 联 系, 提 高 金 融 研 究 水 平, 推

More information

快乐蜂(Jollibee)快餐连锁店 的国际扩张历程

快乐蜂(Jollibee)快餐连锁店 的国际扩张历程 Case6 Jollibee Foods Corporation Jollibee FAN Libo Case Synopsis (1) The case opens with a trigger issue focused on three investment decisions facing the international division new manager, Noli Tingzon.

More information

Theory of Groups is another course for undergraduates; and Module Theory will be a basic course of graduates). The main contents include the basic str

Theory of Groups is another course for undergraduates; and Module Theory will be a basic course of graduates). The main contents include the basic str 抽 象 代 数 课 程 教 学 大 纲 课 程 基 本 信 息 (Course Information) 课 程 代 码 (Course Code) * 学 时 MA20 (Credit Hours) 6 * 学 分 (Credits) * 课 程 名 称 抽 象 代 数 (Course Name) Abstract Algebra 课 程 性 质 (Course Type) 必 修 课 授 课 对

More information

第十二课:保罗的宣教计划,问安,劝勉与对福音的总结

第十二课:保罗的宣教计划,问安,劝勉与对福音的总结 第 十 二 课 : 保 罗 的 宣 教 计 划, 问 安, 劝 勉 与 对 福 音 的 总 结 12-1 第 十 二 课 保 罗 的 宣 教 计 划, 问 安, 劝 勉 与 对 福 音 的 总 结 罗 马 书 15 章 14 节 16 章 27 节 (15:14 16:27) 思 信 仰 一 对 上 一 课 因 信 白 白 称 义 与 因 信 操 练 成 圣 ( 圣 徒 的 本 分 ): 活 出 神

More information

\\Lhh\07-02\黑白\内页黑白1-16.p

\\Lhh\07-02\黑白\内页黑白1-16.p Abstract: Urban Grid Management Mode (UGMM) is born against the background of the fast development of digital city. It is a set of urban management ideas, tools, organizations and flow, which is on the

More information

EP 的 准 备 考 完 高 科 到 EP 面 试 也 就 一 个 月 的 时 间, 所 以 我 建 议 大 家 立 即 准 备 起 来, 只 要 GPA 够, 材 料 都 没 有 缺 的 话, 拿 到 面 试 的 机 会 是 不 难 的, 而 且 向 今 年 我 是 号 面 试,23

EP 的 准 备 考 完 高 科 到 EP 面 试 也 就 一 个 月 的 时 间, 所 以 我 建 议 大 家 立 即 准 备 起 来, 只 要 GPA 够, 材 料 都 没 有 缺 的 话, 拿 到 面 试 的 机 会 是 不 难 的, 而 且 向 今 年 我 是 号 面 试,23 https://bbs.sjtu.edu.cn/bbsanc,path,%2fgroups%2fgroup_5%2ffrench %2FD515BBF70%2FD5D315A95%2FG.1167658731.A.html 又 开 始 紧 张 了, 因 为 我 知 道 ep 的 面 试 是 很 难 的, 看 过 他 们 考 纲 上 公 布 的 例 题, 数 学 题 基 本 都 不 会 又 看 过 前

More information

89???????q?l?????T??

89???????q?l?????T?? 華 興 電 子 報 第 89 期 民 國 102 年 01 月 12 日 出 刊 網 址 :www.hhhs.tp.edu.tw 發 行 人 : 高 宏 煙 總 編 輯 : 蕭 慶 智 董 大 鋼 許 莙 葇 王 雅 慧 主 編 : 賴 怡 潔 編 輯 群 : 周 慧 婷 陳 怡 君 陳 玫 禎 楊 雅 惠 郭 孟 平 伍 玉 琪 林 冠 良 林 淑 惠 賴 姿 潔 王 思 方 102 年 01 月

More information

TLLFDEC2013.indd

TLLFDEC2013.indd GOOD PEOPLE MANAGEMENT AWARD 2 學教卓越 行政長官卓越教學獎 2010 / 2011 本校重視學生全人發展 致力提供具專業的教學環 6. 通識科的閱讀課藉報章及時事影片與同學進行課堂討 境 營造純樸良好的校風 建立優良的班級文化 積極提 論 提升學生的批判思考及高階思維能力 並藉不同形 升教學效能 善用資源為學生提供分組教學及各種增潤課 程 並成功為學生創造多元化的成功學習經驗

More information