pseudo-code-2012.docx 2013/5/9

Size: px
Start display at page:

Download "pseudo-code-2012.docx 2013/5/9"

Transcription

1 Pseudo-code 偽代碼 & Flow charts 流程圖 : Sum Bubble sort 1 Prime factors of Magic square Total & Average Bubble sort 2 Factors of Zodiac (simple) Quadratic equation Train fare n <= limit Calculator Digital Clock Animal of the year Square numbers Word Count 三角形測試 Decimal to Binary Largest numbers Skip Comments HKCEE 198x MTR fare Smallest & largest Greetings Middle number Leap year test Trim spaces GCD/LCM Odd and Even Linear search Euclidean Algorithm Encoding / Decoding Binary search Admission Fee ASCII table a,b,c? a,b,c? a,b,c? a,b,c? a,b,c? 開始 輸入 a,b,c a,b,c? a,b,c? a,b,c? a,b,c? a,b,c? a>b? x=b c b=b+5 x>a? b>c? c=b 3 b=c 3 x=c b a=b c b>c? b>5? x=b 2 x=c 2 x=c 4 x=x+3 結束 a,b,c,x 的最終值是什麼? p.1

2 Sum sum = 0 as long as sum < 10 do input x sum = sum + x end do output sum inputs: output: inputs: output: Total & Average Total = 0, Avg = 0, n = 0 IPUT x WHILE x > 0 DO Total = Total + x n = n+1 IPUT x ED WHILE IF n>0 THE Avg = Total / n OUTPUT Avg inputs: output: inputs: output: inputs: output: Quadratic equation IPUT A,B,C D=B 2-4AC IF D=0 THE X = -B/2A OUTPUT X ED IF D<0 THE OUTPUT O REAL ROOT ED IF D>0 THE B D x1 2A B D x2 2A OUTPUT x1,x2 ED sum = 0 只要 sum<10 進行輸入 x sum = sum + x 輸出 sum Total = 0, Avg = 0, n = 0 輸入 x 只要 x > 0 進行 Total = Total + x n = n+1 輸入 x 如果 n>0 則 Avg = Total / n 輸出 Avg 輸入 A,B,C D=B 2-4AC 若果 D=0 則 X = -B/2A 輸出 X 若果 D<0 則 輸出 " 沒有根 " 若果 D>0 則 B D x1 2A B D x2 2A 輸出 x1,x2 p.2

3 Digital Clock IPUT HH,MM,SS WHILE HH<24 DO OUTPUT HH,MM,SS SS = SS+1 輸入 HH,MM,SS 只要 HH<24 進行輸出 HH,MM,SS SS = SS+1 IF SS=60 THE MM = MM+1 SS = 0 EDIF IF MM=60 THE HH = HH+1 MM = 0 EDIF IF HH=24 THE HH = 0 ED WHILE 若果 SS=60 則 MM = MM+1 及 SS = 0 若果 MM=60 則 HH = HH+1 及 MM = 0 若果 HH=24 則 HH = 0 試把下列 算法 (Algorithm) 改寫為 C 程式 ( 三角形測試 ) 步驟 : (1) 要求使用者輸入三角形各邊長, 並分別儲存在變量 A, B 及 C 內 ; 假設 A B C (i) (2) 儲存 C 2 的數值在變量 S1 內 C (3) 儲存 A 2 + B 2 的數值在變量 S2 內 A B (4) 跟據下表, 輸出不同的結果 條件 輸出 i 若 C 大於或等於 A 及 B 之和 not a (triangle) ( 不是三角形 ) (ii) A B C 否則 ii 若 C 2 iii 若 C 2 iv 若 C 2 小於 A 2 及 B 2 之和 an acute ( 銳角三角形 ) 等於 A 2 及 B 2 之和 a right-angled ( 直角三角形 ) 大於 A 2 及 B 2 之和 an obtuse ( 鈍角三角形 ) (iii) A B C (iv) A C B p.3

4 HKCEE 1991 count = 1 score = 0 R = 7 WHILE count 5 IPUT x IF(abs(R-x)<3) THE score = score + 2 ELSE score = score - 1 count = count+1 ED WHILE OUTPUT score 輸入數值 input values: 2, 5, 8, 0, 10 count = 1 score = 0 R = 7 只要 count 5 便進行輸入 x 如果 (abs(r-x)<3) 則 score = score + 2 否則 score = score - 1 count = count+1 輸出 score Greetings Time Message 00:00 Mid-night 午夜 00:01-11:59 Morning 早晨 12:00 oon 正午 12:01-17:59 Afternoon 下午 18:00-23:59 Evening 晚上 sum = n <= limit IPUT limit sum = 0 n = 1 WHILE sum+n <= limit DO OUTPUT n sum = sum+n n = n+1 ED WHILE OUTPUT sum Trim spaces: inputs: abcd pqrxyz outputs: abcd pqrxyz 輸入 limit sum = 0 n = 1 只要 sum+n <= limit 便進行輸出 n sum = sum+n n = n+1 輸出 sum previous current previous char current char (c) space non-space space --- output c non-space output c output c inword p.4

5 Decimal to Binary: simple version: reversed binary IPUT dec WHILE dec>0 DO r = dec % 2 dec = dec / 2 OUTPUT r ED WHILE final version s = ULL IPUT dec WHILE dec>0 DO r = dec % 2 dec = dec / 2 attach r to the front of s ED WHILE OUTPUT s MTR Fare IPUT age, fr_stn, to_stn fare = (to_stn-fr_stn)*2 IF fare<5 THE fare = 5 IF age<12 THE fare = fare / 2 IF age>60 THE fare = fare / 2 OUTPUT fare age = 999 只要 age>0 便進行輸入 age, fr_stn, to_stn fare = (to_stn-fr_stn)*2 如果 fare<5 則 fare = 5 如果 age<12 則 fare = fare / 2 如果 age>60 則 fare = fare / 2 輸出 fare Find the middle number: IPUT 輸入 X,,Z IF 如果 X> THE 則 IF X>Z THE IF >Z THE OUTPUT ELSE OUTPUT Z ELSE 否則 OUTPUT X ED IF ELSE IF >Z THE IF X>Z THE OUTPUT X ELSE OUTPUT Z ELSE OUTPUT B: x % y remainder of x/y ED IF ED IF 輸入 x,y,z 如果 x>y 則如果 x>z 則如果 y>z 則輸出 y 否則輸出 z 否則輸出 x 否則如果 y>z 則如果 x>z 則輸出 x 否則輸出 z 否則輸出 y p.5

6 GCD/HCF (Simple & Straight forward) IPUT two positive integers (A & B) IF A<B THE swap A & B GCD=0 n=b WHILE n>1 AD GCD<1 DO IF A & B are both divisible by n THE GCD=n ELSE n=n-1 ED DO OUTPUT GCD 輸入兩整數 (A & B) 如果 A<B 則對換 A & B GCD=0 n=b 只要 n>1 及 GCD<1 便進行如果 A & B 可被 n 整除則 GCD=n 否則 n=n-1 輸出 GCD LCM (Simple & Straight forward) IPUT two positive integers (A & B) IF A<B THE swap A & B LCM=0 輸入兩整數 (A & B) 如果 A<B 則對換 A & B LCM=0 n=a // n=max(a,b) n=a WHILE n<axb AD LCM<1 DO IF n is divisible by both A & B THE LCM=n ELSE n=n+1 ED DO OUTPUT LCM 只要 n<axb 及 LCM<1 便進行如果 n 可被 A & B 整除則 LCM=n 否則 n=n+1 輸出 LCM LCM(A,B) GCD(A,B) = A B Euclidean Algorithm: Repeat Find C = A%B (remainder of A divided by B) Until C=0 B will be the HCF(A,B) A B C=A%B %12= %8= %4=0 HCF = 4 p.6

7 GCD Euclidean Algorithm 歐基里德算法/ 輾轉相除法 計算 A 和 B 的最大公因數 (GCD/HCF) 要求使用者輸入兩個整數 (A 和 B) 若 A 的值少於 B 的值, 則換轉 (Swap) A 和 B 的值 只要 B 的值大於 0 便進行把 A 除 B 的餘數 賦予 C 把 B 的值賦予 A 把 C 的值賦予 B 把 A 的值賦予 HCF 輸出 HCF 假設 Admission Fee ($100) 輸入 dow, time, age fee = 100 如果 (dow=0 或 dow=6) 則 fee = fee * 1.1 否則如果 (time<14) 則 fee = fee * 0.9 Prime factors 質因數 of n: IPUT n d=2 WHILE n>1 DO IF n is divisible by d THE OUTPUT d n = n/d ELSE d = d+1 ED IF ED WHILE Factors of n 因數 : IPUT n d=2 WHILE d<=n DO IF n is divisible by d THE OUTPUT d d = d+1 ED WHILE (i) "Swap" 是一個預定處理程序 (ii) X % 的結果是 X 除 的餘數 如果 (age>60) 則 fee = fee * 0.5 否則如果 (age<12 或學生 ) 如果 (dow=0 或 dow=6) 則 fee = fee * 0.8 否則 fee = fee * 0.5 輸出 fee 輸入 n d=2 只要 n>1 進行如果 n 可被 d 整除則輸出 d n = n/d 否則 d = d+1 輸入 n d=2 只要 d<=n 進行如果 n 可被 d 整除則輸出 d d = d+1 p.7

8 Encode / Decode (ASCII code of 'A'=65) 編碼 / 解碼 A B C D E F G H I J K L M O P Q R S T U V W X Z Q R S T U V W X Z A B C D E F G H I J K L M O P Encode 編碼 A(65) Q(81) B(66) R(82) I(73) (89) J(74) Z(90) K(75) A(65) L(76) B(66) (89) O(79) Z(90) P(80) Encode 編碼 IPUT alphabet c 輸入字母 c n = 16 + ASCII code of c n = 字母 c 的 ASCII 碼 IF n>90 THE n=n-26 如果 n<75 c = the n'th char in ASCII table 則 n=n+16 OUTPUT alphabet c 否則 n=n-10 c = ASCII 編碼表內第 n 個字符 輸出字母 c Decode 解碼輸入字母 c n = 字母 c 的 ASCII 碼 - 16 如果 n<65 則 n=n+10 c = ASCII 編碼表內第 n 個字符輸出字母 c Linear Search, Binary Search, Bubble Sort: Train Fare: Word Count: Skip Comments: Ping-Pong Rebound: x++,y++ (0,20) (80,0) To determine if year (yy) is a Leap ear or not: yy = 999 只要 yy>0 便進行輸入 yy 如果 yy%400=0 則 Leapear="" 否則如果 yy%4=0 則如果 yy%100 0 則 Leapear="" 否則 Leapear="" 否則 Leapear="" 輸出 Leapear p.8

0 0 = 1 0 = 0 1 = = 1 1 = 0 0 = 1

0 0 = 1 0 = 0 1 = = 1 1 = 0 0 = 1 0 0 = 1 0 = 0 1 = 0 1 1 = 1 1 = 0 0 = 1 : = {0, 1} : 3 (,, ) = + (,, ) = + + (, ) = + (,,, ) = ( + )( + ) + ( + )( + ) + = + = = + + = + = ( + ) + = + ( + ) () = () ( + ) = + + = ( + )( + ) + = = + 0

More information

邏輯設計 Hw#6 請於 6/13( 五 ) 下課前繳交

邏輯設計 Hw#6 請於 6/13( 五 ) 下課前繳交 邏輯設計 Hw#6 請於 6/3( 五 ) 下課前繳交 . A sequential circuit with two D flip-flops A and B, two inputs X and Y, and one output Z is specified by the following input equations: D A = X A + XY D B = X A + XB Z = XB

More information

Numbers and Fundamental Arithmetic

Numbers and Fundamental Arithmetic 1 Numbers and Fundamental Arithmetic Hey! Let s order some pizzas for a party! How many pizzas should we order? There will be 1 people in the party. Each people will enjoy 3 slices of pizza. Each pizza

More information

Chapter 6. Series-Parallel Circuits ISU EE. C.Y. Lee

Chapter 6. Series-Parallel Circuits ISU EE. C.Y. Lee Chapter 6 Series-Parallel Circuits Objectives Identify series-parallel relationships Analyze series-parallel circuits Determine the loading effect of a voltmeter on a circuit Analyze a Wheatstone bridge

More information

Algorithms and Complexity

Algorithms and Complexity Algorithms and Complexity 2.1 ALGORITHMS( 演算法 ) Def: An algorithm is a finite set of precise instructions for performing a computation or for solving a problem The word algorithm algorithm comes from the

More information

5.5 Using Entropy to Calculate the Natural Direction of a Process in an Isolated System

5.5 Using Entropy to Calculate the Natural Direction of a Process in an Isolated System 5.5 Using Entropy to Calculate the Natural Direction of a Process in an Isolated System 熵可以用來預測自發改變方向 我們現在回到 5.1 節引入兩個過程 第一個過程是關於金屬棒在溫度梯度下的自然變化方向 試問, 在系統達平衡狀態時, 梯度變大或更小? 為了模擬這過程, 考慮如圖 5.5 的模型, 一孤立的複合系統受

More information

= lim(x + 1) lim x 1 x 1 (x 2 + 1) 2 (for the latter let y = x2 + 1) lim

= lim(x + 1) lim x 1 x 1 (x 2 + 1) 2 (for the latter let y = x2 + 1) lim 1061 微乙 01-05 班期中考解答和評分標準 1. (10%) (x + 1)( (a) 求 x+1 9). x 1 x 1 tan (π(x )) (b) 求. x (x ) x (a) (5 points) Method without L Hospital rule: (x + 1)( x+1 9) = (x + 1) x+1 x 1 x 1 x 1 x 1 (x + 1) (for the

More information

GSAS 安裝使用簡介 楊仲準中原大學物理系. Department of Physics, Chung Yuan Christian University

GSAS 安裝使用簡介 楊仲準中原大學物理系. Department of Physics, Chung Yuan Christian University GSAS 安裝使用簡介 楊仲準中原大學物理系 Department of Physics, Chung Yuan Christian University Out Line GSAS 安裝設定 CMPR 安裝設定 GSAS 簡易使用說明 CMPR 轉出 GSAS 實驗檔簡易使用說明 CMPR 轉出 GSAS 結果簡易使用說明 1. GSAS 安裝設定 GSAS 安裝設定 雙擊下載的 gsas+expgui.exe

More information

Answers: ( HKMO Heat Events) Created by: Mr. Francis Hung Last updated: 23 November see the remark

Answers: ( HKMO Heat Events) Created by: Mr. Francis Hung Last updated: 23 November see the remark 9 50450 8 4 5 8-9 04 6 Individual 6 (= 8 ) 7 6 8 4 9 x =, y = 0 (= 8 = 8.64) 4 4 5 5-6 07 + 006 4 50 5 0 Group 6 6 7 0 8 *4 9 80 0 5 see the remark Individual Events I Find the value of the unit digit

More information

EXPERMENT 9. To determination of Quinine by fluorescence spectroscopy. Introduction

EXPERMENT 9. To determination of Quinine by fluorescence spectroscopy. Introduction EXPERMENT 9 To determination of Quinine by fluorescence spectroscopy Introduction Many chemical compounds can be excited by electromagnetic radication from normally a singlet ground state S o to upper

More information

生物統計教育訓練 - 課程. Introduction to equivalence, superior, inferior studies in RCT 謝宗成副教授慈濟大學醫學科學研究所. TEL: ext 2015

生物統計教育訓練 - 課程. Introduction to equivalence, superior, inferior studies in RCT 謝宗成副教授慈濟大學醫學科學研究所. TEL: ext 2015 生物統計教育訓練 - 課程 Introduction to equivalence, superior, inferior studies in RCT 謝宗成副教授慈濟大學醫學科學研究所 tchsieh@mail.tcu.edu.tw TEL: 03-8565301 ext 2015 1 Randomized controlled trial Two arms trial Test treatment

More information

相關分析. Scatter Diagram. Ch 13 線性迴歸與相關分析. Correlation Analysis. Correlation Analysis. Linear Regression And Correlation Analysis

相關分析. Scatter Diagram. Ch 13 線性迴歸與相關分析. Correlation Analysis. Correlation Analysis. Linear Regression And Correlation Analysis Ch 3 線性迴歸與相關分析 相關分析 Lear Regresso Ad Correlato Aalyss Correlato Aalyss Correlato Aalyss Correlato Aalyss s the study of the relatoshp betwee two varables. Scatter Dagram A Scatter Dagram s a chart that

More information

tan θ(t) = 5 [3 points] And, we are given that d [1 points] Therefore, the velocity of the plane is dx [4 points] (km/min.) [2 points] (The other way)

tan θ(t) = 5 [3 points] And, we are given that d [1 points] Therefore, the velocity of the plane is dx [4 points] (km/min.) [2 points] (The other way) 1051 微甲 06-10 班期中考解答和評分標準 1. (10%) A plane flies horizontally at an altitude of 5 km and passes directly over a tracking telescope on the ground. When the angle of elevation is π/3, this angle is decreasing

More information

Chapter 22 Lecture. Essential University Physics Richard Wolfson 2 nd Edition. Electric Potential 電位 Pearson Education, Inc.

Chapter 22 Lecture. Essential University Physics Richard Wolfson 2 nd Edition. Electric Potential 電位 Pearson Education, Inc. Chapter 22 Lecture Essential University Physics Richard Wolfson 2 nd Edition Electric Potential 電位 Slide 22-1 In this lecture you ll learn 簡介 The concept of electric potential difference 電位差 Including

More information

1 dx (5%) andˆ x dx converges. x2 +1 a

1 dx (5%) andˆ x dx converges. x2 +1 a 微甲 - 班期末考解答和評分標準. (%) (a) (7%) Find the indefinite integrals of secθ dθ.) d (5%) and + d (%). (You may use the integral formula + (b) (%) Find the value of the constant a for which the improper integral

More information

Chapter 20 Cell Division Summary

Chapter 20 Cell Division Summary Chapter 20 Cell Division Summary Bk3 Ch20 Cell Division/1 Table 1: The concept of cell (Section 20.1) A repeated process in which a cell divides many times to make new cells Cell Responsible for growth,

More information

14-A Orthogonal and Dual Orthogonal Y = A X

14-A Orthogonal and Dual Orthogonal Y = A X 489 XIV. Orthogonal Transform and Multiplexing 14-A Orthogonal and Dual Orthogonal Any M N discrete linear transform can be expressed as the matrix form: 0 1 2 N 1 0 1 2 N 1 0 1 2 N 1 y[0] 0 0 0 0 x[0]

More information

國立中正大學八十一學年度應用數學研究所 碩士班研究生招生考試試題

國立中正大學八十一學年度應用數學研究所 碩士班研究生招生考試試題 國立中正大學八十一學年度應用數學研究所 碩士班研究生招生考試試題 基礎數學 I.(2%) Test for convergence or divergence of the following infinite series cos( π (a) ) sin( π n (b) ) n n=1 n n=1 n 1 1 (c) (p > 1) (d) n=2 n(log n) p n,m=1 n 2 +

More information

原子模型 Atomic Model 有了正確的原子模型, 才會發明了雷射

原子模型 Atomic Model 有了正確的原子模型, 才會發明了雷射 原子模型 Atomic Model 有了正確的原子模型, 才會發明了雷射 原子結構中的電子是如何被發現的? ( 1856 1940 ) 可以參考美國物理學會 ( American Institute of Physics ) 網站 For in-depth information, check out the American Institute of Physics' History Center

More information

Glossary. Mathematics Glossary. Elementary School Level. English Traditional Chinese

Glossary. Mathematics Glossary. Elementary School Level. English Traditional Chinese Elementary School Level Glossary Mathematics Glossary English Traditional Chinese Translation of Mathematics Terms Based on the Coursework for Mathematics Grades 3 to 5. This glossary is to PROVIDE PERMITTED

More information

Digital Integrated Circuits Lecture 5: Logical Effort

Digital Integrated Circuits Lecture 5: Logical Effort Digital Integrated Circuits Lecture 5: Logical Effort Chih-Wei Liu VLSI Signal Processing LAB National Chiao Tung University cwliu@twins.ee.nctu.edu.tw DIC-Lec5 cwliu@twins.ee.nctu.edu.tw 1 Outline RC

More information

Statistical Intervals and the Applications. Hsiuying Wang Institute of Statistics National Chiao Tung University Hsinchu, Taiwan

Statistical Intervals and the Applications. Hsiuying Wang Institute of Statistics National Chiao Tung University Hsinchu, Taiwan and the Applications Institute of Statistics National Chiao Tung University Hsinchu, Taiwan 1. Confidence Interval (CI) 2. Tolerance Interval (TI) 3. Prediction Interval (PI) Example A manufacturer wanted

More information

2001 HG2, 2006 HI6, 2010 HI1

2001 HG2, 2006 HI6, 2010 HI1 - Individual 9 50450 8 4 5 8 9 04 6 6 ( 8 ) 7 6 8 4 9 x, y 0 ( 8 8.64) 4 4 5 5 - Group Individual Events I 6 07 + 006 4 50 5 0 6 6 7 0 8 *4 9 80 0 5 see the remark Find the value of the unit digit of +

More information

Finite Interval( 有限區間 ) open interval ( a, closed interval [ ab, ] = { xa x b} half open( or half closed) interval. Infinite Interval( 無限區間 )

Finite Interval( 有限區間 ) open interval ( a, closed interval [ ab, ] = { xa x b} half open( or half closed) interval. Infinite Interval( 無限區間 ) Finite Interval( 有限區間 ) open interval ( a, b) { a< < b} closed interval [ ab, ] { a b} hal open( or hal closed) interval ( ab, ] { a< b} [ ab, ) { a < b} Ininite Interval( 無限區間 ) [ a, ) { a < } (, b] {

More information

Chapter 1 Linear Regression with One Predictor Variable

Chapter 1 Linear Regression with One Predictor Variable Chapter 1 Linear Regression with One Predictor Variable 許湘伶 Applied Linear Regression Models (Kutner, Nachtsheim, Neter, Li) hsuhl (NUK) LR Chap 1 1 / 41 Regression analysis is a statistical methodology

More information

Advanced Engineering Mathematics 長榮大學科工系 105 級

Advanced Engineering Mathematics 長榮大學科工系 105 級 工程數學 Advanced Engineering Mathematics 長榮大學科工系 5 級 姓名 : 學號 : 工程數學 I 目錄 Part I: Ordinary Differential Equations (ODE / 常微分方程式 ) Chapter First-Order Differential Equations ( 一階 ODE) 3 Chapter Second-Order

More information

Ch2 Linear Transformations and Matrices

Ch2 Linear Transformations and Matrices Ch Lea Tasfoatos ad Matces 7-11-011 上一章介紹抽象的向量空間, 這一章我們將進入線代的主題, 也即了解函數 能 保持 向量空間結構的一些共同性質 這一章討論的向量空間皆具有相同的 体 F 1 Lea Tasfoatos, Null spaces, ad ages HW 1, 9, 1, 14, 1, 3 Defto: Let V ad W be vecto spaces

More information

Candidates Performance in Paper I (Q1-4, )

Candidates Performance in Paper I (Q1-4, ) HKDSE 2016 Candidates Performance in Paper I (Q1-4, 10-14 ) 7, 17 November 2016 General Comments General and Common Weaknesses Weak in calculations Unable to give the appropriate units for numerical answers

More information

雷射原理. The Principle of Laser. 授課教授 : 林彥勝博士 Contents

雷射原理. The Principle of Laser. 授課教授 : 林彥勝博士   Contents 雷射原理 The Principle of Laser 授課教授 : 林彥勝博士 E-mail: yslin@mail.isu.edu.tw Contents Energy Level( 能階 ) Spontaneous Emission( 自發輻射 ) Stimulated Emission( 受激發射 ) Population Inversion( 居量反轉 ) Active Medium( 活性介質

More information

基因演算法 學習速成 南台科技大學電機系趙春棠講解

基因演算法 學習速成 南台科技大學電機系趙春棠講解 基因演算法 學習速成 南台科技大學電機系趙春棠講解 % 以下程式作者 : 清大張智星教授, 摘自 Neuro-Fuzzy and Soft Computing, J.-S. R. Jang, C.-T. Sun, and E. Mizutani 讀者可自張教授網站下載該書籍中的所有 Matlab 程式 % 主程式 : go_ga.m % 這是書中的一個範例, 了解每一個程式指令後, 大概就對 基因演算法,

More information

台灣大學開放式課程 有機化學乙 蔡蘊明教授 本著作除另有註明, 作者皆為蔡蘊明教授, 所有內容皆採用創用 CC 姓名標示 - 非商業使用 - 相同方式分享 3.0 台灣授權條款釋出

台灣大學開放式課程 有機化學乙 蔡蘊明教授 本著作除另有註明, 作者皆為蔡蘊明教授, 所有內容皆採用創用 CC 姓名標示 - 非商業使用 - 相同方式分享 3.0 台灣授權條款釋出 台灣大學開放式課程 有機化學乙 蔡蘊明教授 本著作除另有註明, 作者皆為蔡蘊明教授, 所有內容皆採用創用 姓名標示 - 非商業使用 - 相同方式分享 3.0 台灣授權條款釋出 hapter S Stereochemistry ( 立體化學 ): chiral molecules ( 掌性分子 ) Isomerism constitutional isomers butane isobutane 分子式相同但鍵結方式不同

More information

命名, 構象分析及合成簡介 (Nomenclature, Conformational Analysis, and an Introduction to Synthesis)

命名, 構象分析及合成簡介 (Nomenclature, Conformational Analysis, and an Introduction to Synthesis) 第 3 章烷烴 命名, 構象分析及合成簡介 (Nomenclature, Conformational Analysis, and an Introduction to Synthesis) 一 ) Introduction Alkane: C n 2n+2 Alkene: C n 2n ydrocarbon Alkyne: C n 2n-2 Cycloalkane: C n 2n Aromatic

More information

Multiple sequence alignment (MSA)

Multiple sequence alignment (MSA) Multiple sequence alignment (MSA) From pairwise to multiple A T _ A T C A... A _ C A T _ A... A T _ G C G _... A _ C G T _ A... A T C A C _ A... _ T C G A G A... Relationship of sequences (Tree) NODE

More information

Page 1

Page 1 nswers: (008-09 HKMO Heat Events) reated by: Mr. Francis Hung Last updated: 8 ugust 08 08-09 Individual 00 980 007 008 0 7 9 8 7 9 0 00 (= 8.) Spare 0 9 7 Spare 08-09 Group 8 7 8 9 0 0 (=.) Individual

More information

Chapter 1 Physics and Measurement

Chapter 1 Physics and Measurement Chapter 1 Physics and Measurement We have always been curious about the world around us. Classical Physics It constructs the concepts Galileo (1564-1642) and Newton s space and time. It includes mechanics

More information

Linear Regression. Applied Linear Regression Models (Kutner, Nachtsheim, Neter, Li) hsuhl (NUK) SDA Regression 1 / 34

Linear Regression. Applied Linear Regression Models (Kutner, Nachtsheim, Neter, Li) hsuhl (NUK) SDA Regression 1 / 34 Linear Regression 許湘伶 Applied Linear Regression Models (Kutner, Nachtsheim, Neter, Li) hsuhl (NUK) SDA Regression 1 / 34 Regression analysis is a statistical methodology that utilizes the relation between

More information

Work Energy And Power 功, 能量及功率

Work Energy And Power 功, 能量及功率 p. 1 Work Energy And Power 功, 能量及功率 黃河壺口瀑布 p. 2 甚麼是 能量? p. 3 常力所作的功 ( Work Done by a Constant Force ) p. 4 F F θ F cosθ s 要有出力才有 功 勞 造成位移才有 功 勞 W = F cos θ s ( Joule, a scalar ) = F s or F Δx F : force,

More information

統計學 Spring 2011 授課教師 : 統計系余清祥日期 :2011 年 3 月 22 日第十三章 : 變異數分析與實驗設計

統計學 Spring 2011 授課教師 : 統計系余清祥日期 :2011 年 3 月 22 日第十三章 : 變異數分析與實驗設計 統計學 Spring 2011 授課教師 : 統計系余清祥日期 :2011 年 3 月 22 日第十三章 : 變異數分析與實驗設計 Chapter 13, Part A Analysis of Variance and Experimental Design Introduction to Analysis of Variance Analysis of Variance and the Completely

More information

Digital Image Processing

Digital Image Processing Dgtal Iage Processg Chater 08 Iage Coresso Dec. 30, 00 Istructor:Lh-Je Kau( 高立人 ) Deartet of Electroc Egeerg Natoal Tae Uversty of Techology /35 Lh-Je Kau Multeda Coucato Grou Natoal Tae Uv. of Techology

More information

Differential Equations (DE)

Differential Equations (DE) 工程數學 -- 微分方程 51 Differenial Equaions (DE) 授課者 : 丁建均 教學網頁 :hp://djj.ee.nu.edu.w/de.hm 本著作除另有註明外, 採取創用 CC 姓名標示 - 非商業性 - 相同方式分享 台灣 3. 版授權釋出 Chaper 8 Sysems of Linear Firs-Order Differenial Equaions 另一種解 聯立微分方程式

More information

課程名稱 : 電路學 (2) 授課教師 : 楊武智 期 :96 學年度第 2 學期

課程名稱 : 電路學 (2) 授課教師 : 楊武智 期 :96 學年度第 2 學期 課程名稱 : 電路學 (2) 授課教師 : 楊武智 學 期 :96 學年度第 2 學期 1 基礎電路學 主要在探討 電路分析技巧 教材分二部份 : 電路時域分析及電路頻域分析 時域分析 ( 電路學 (1)): 電路變數及元件 電路簡化技巧 電路分析技巧 RL 及 RC 電路的自然及步進響應及 RLC 電路的自然及步進響應 頻域分析 ( 電路學 (2)): 正弦性信號穩態分析 拉普拉斯轉換簡介 拉普拉斯轉換的電路分析及

More information

Lecture Notes on Propensity Score Matching

Lecture Notes on Propensity Score Matching Lecture Notes on Propensity Score Matching Jin-Lung Lin This lecture note is intended solely for teaching. Some parts of the notes are taken from various sources listed below and no originality is claimed.

More information

SIMPLE Algorithm for Two-Dimensional Flow - Fluid Flow and Heat Transfer

SIMPLE Algorithm for Two-Dimensional Flow - Fluid Flow and Heat Transfer SIMPLE Algorithm for Two-Dimensional Flow - Fluid Flow and Heat Transfer by Professor Jung-Yang San Mechanical Engineering Department National Chung Hsing University Two-dimensional, transient, incompressible

More information

在雲層閃光放電之前就開始提前釋放出離子是非常重要的因素 所有 FOREND 放電式避雷針都有離子加速裝置支援離子產生器 在產品設計時, 為增加電場更大範圍, 使用電極支援大氣離子化,

在雲層閃光放電之前就開始提前釋放出離子是非常重要的因素 所有 FOREND 放電式避雷針都有離子加速裝置支援離子產生器 在產品設計時, 為增加電場更大範圍, 使用電極支援大氣離子化, FOREND E.S.E 提前放電式避雷針 FOREND Petex E.S.E 提前放電式避雷針由 3 個部分組成 : 空中末端突針 離子產生器和屋頂連接管 空中末端突針由不鏽鋼製造, 有適合的直徑, 可以抵抗強大的雷擊電流 離子產生器位於不鏽鋼針體內部特別的位置, 以特別的樹脂密封, 隔絕外部環境的影響 在暴風雨閃電期間, 大氣中所引起的電場增加, 離子產生器開始活化以及產生離子到周圍的空氣中

More information

KWUN TONG GOVERNMENT SECONDARY SCHOOL 觀塘官立中學 (Office) Shun Lee Estate Kwun Tong, Kowloon 上學期測驗

KWUN TONG GOVERNMENT SECONDARY SCHOOL 觀塘官立中學 (Office) Shun Lee Estate Kwun Tong, Kowloon 上學期測驗 觀塘官立中學 Tel.: 2343 7772 (Principal) 9, Shun Chi Street, 2343 6220 (Office) Shun Lee Estate Kwun Tong, Kowloon 各位中一至中三級學生家長 : 上學期測驗 上學期測驗將於二零一二年十月二十四日至十月三十日進行 安排如下 : 1. 測驗於 24/10, 25/10, 26/10, 29/10 早上八時三十五分至十時四十分進行

More information

Candidates Performance in Paper I (Q1-4, )

Candidates Performance in Paper I (Q1-4, ) HKDSE 2018 Candidates Performance in Paper I (Q1-4, 10-14 ) 8, 9 November 2018 General and Common Weaknesses Weak in calculations Weak in conversion of units in calculations (e.g. cm 3 to dm 3 ) Weak in

More information

授課大綱 課號課程名稱選別開課系級學分 結果預視

授課大綱 課號課程名稱選別開課系級學分 結果預視 授課大綱 課號課程名稱選別開課系級學分 B06303A 流體力學 Fluid Mechanics 必 結果預視 課程介紹 (Course Description): 機械工程學系 三甲 3 在流體力學第一課的學生可能會問 : 什麼是流體力學? 為什麼我必須研究它? 我為什麼要研究它? 流體力學有哪些應用? 流體包括液體和氣體 流體力學涉及靜止和運動時流體的行為 對流體力學的基本原理和概念的了解和理解對分析任何工程系統至關重要,

More information

REAXYS NEW REAXYS. RAEXYS 教育訓練 PPT HOW YOU THINK HOW YOU WORK

REAXYS NEW REAXYS. RAEXYS 教育訓練 PPT HOW YOU THINK HOW YOU WORK REAXYS HOW YOU THINK HOW YOU WORK RAEXYS 教育訓練 PPT Karen.liu@elsevier.com NEW REAXYS. 1 REAXYS 化學資料庫簡介 CONTENTS 收錄內容 & 界面更新 資料庫建置原理 個人化功能 Searching in REAXYS 主題 1 : 化合物搜尋 主題 2 : 反應搜尋 主題 3 : 合成計畫 主題 4 :

More information

大原利明 算法点竄指南 点竄術 算 額 絵馬堂

大原利明 算法点竄指南 点竄術 算 額 絵馬堂 算額 大原利明 算法点竄指南 点竄術 算 額 絵馬 絵 馬 絵馬堂 甲 一 乙 二 丙 三 丁 四 戊 五 己 六 庚 七 辛 八 壬 九 癸 十 十五 二十 百 千 甲 乙 丙 丁 傍書法 関孝和 点竄術 松永良弼 甲 甲 甲 甲 甲 乙 甲 甲 乙 甲 乙 甲 乙 甲 乙 丙 丁 戊 a + b 2 c 甲 a a 二乙 2 b b 2 小 c c SOLVING SANGAKU 5 3.1.

More information

2019 年第 51 屆國際化學奧林匹亞競賽 國內初選筆試 - 選擇題答案卷

2019 年第 51 屆國際化學奧林匹亞競賽 國內初選筆試 - 選擇題答案卷 2019 年第 51 屆國際化學奧林匹亞競賽 國內初選筆試 - 選擇題答案卷 一 單選題 :( 每題 3 分, 共 72 分 ) 題號 1 2 3 4 5 6 7 8 答案 B D D A C B C B 題號 9 10 11 12 13 14 15 16 答案 C E D D 送分 E A B 題號 17 18 19 20 21 22 23 24 答案 D A E C A C 送分 B 二 多選題

More information

期中考前回顧 助教 : 王珊彗. Copyright 2009 Cengage Learning

期中考前回顧 助教 : 王珊彗. Copyright 2009 Cengage Learning 期中考前回顧 助教 : 王珊彗 考前提醒 考試時間 :11/17( 四 )9:10~12:10 考試地點 : 管二 104 ( 上課教室 ) 考試範圍 :C1-C9, 選擇 + 計算 注意事項 : 考試請務必帶工程計算機 可帶 A4 參考紙 ( 單面 不能浮貼 ) 計算過程到第四位, 結果寫到小數點第二位 不接受沒有公式, 也不接受沒算出最後答案 考試只會附上 standard normal distribution

More information

PHI7470 Topics in Applied Philosophy: The Philosopher and Sociology

PHI7470 Topics in Applied Philosophy: The Philosopher and Sociology PHI7470 Topics in Applied Philosophy: The Philosopher and Sociology Mr. Lui Ping Keung (frcisco@netvigator.com) Sociology grew and continues to grow from philosophy. At the same time, sociology has made

More information

Factorizing a Polynomial. What is Quadratic Equation? What is Polynomial Factorization? Factorizing by grouping like terms. Factorizing by identities

Factorizing a Polynomial. What is Quadratic Equation? What is Polynomial Factorization? Factorizing by grouping like terms. Factorizing by identities Chapter 3 Quadratic Equation and Polynomial Factorization What is Quadratic Equation? Quadratic equation ( 二次方程 ) is a type of polynomials. It is an equation that the left-hand-side is a polynomial with

More information

d) There is a Web page that includes links to both Web page A and Web page B.

d) There is a Web page that includes links to both Web page A and Web page B. P403-406 5. Determine whether the relation R on the set of all eb pages is reflexive( 自反 ), symmetric( 对 称 ), antisymmetric( 反对称 ), and/or transitive( 传递 ), where (a, b) R if and only if a) Everyone who

More information

4 內流場之熱對流 (Internal Flow Heat Convection)

4 內流場之熱對流 (Internal Flow Heat Convection) 4 內流場之熱對流 (Intenal Flow Heat Convection) Pipe cicula coss section. Duct noncicula coss section. Tubes small-diamete pipes. 4.1 Aveage Velocity (V avg ) Mass flowate and aveage fluid velocity in a cicula

More information

Ch.9 Liquids and Solids

Ch.9 Liquids and Solids Ch.9 Liquids and Solids 9.1. Liquid-Vapor Equilibrium 1. Vapor Pressure. Vapor Pressure versus Temperature 3. Boiling Temperature. Critical Temperature and Pressure 9.. Phase Diagram 1. Sublimation. Melting

More information

2. Suppose that a consumer has the utility function

2. Suppose that a consumer has the utility function 中正大學 94-6 94 { 修正 }. Suose that you consume nothing ut milk and cake and your references remain constant through time. In 3, your income is $ er week, milk costs $ er ottle, cake costs $ er slice and you

More information

Chapter 1 Linear Regression with One Predictor Variable

Chapter 1 Linear Regression with One Predictor Variable Chapter 1 Linear Regression with One Predictor Variable 許湘伶 Applied Linear Regression Models (Kutner, Nachtsheim, Neter, Li) hsuhl (NUK) LR Chap 1 1 / 52 迴歸分析 Regression analysis is a statistical methodology

More information

GRE 精确 完整 数学预测机经 发布适用 2015 年 10 月考试

GRE 精确 完整 数学预测机经 发布适用 2015 年 10 月考试 智课网 GRE 备考资料 GRE 精确 完整 数学预测机经 151015 发布适用 2015 年 10 月考试 20150920 1. n is an integer. : (-1)n(-1)n+2 : 1 A. is greater. B. is greater. C. The two quantities are equal D. The relationship cannot be determined

More information

2( 2 r 2 2r) rdrdθ. 4. Your result fits the correct answer: get 2 pts, if you make a slight mistake, get 1 pt. 0 r 1

2( 2 r 2 2r) rdrdθ. 4. Your result fits the correct answer: get 2 pts, if you make a slight mistake, get 1 pt. 0 r 1 Page 1 of 1 112 微甲 7-11 班期末考解答和評分標準 1. (1%) Find the volume of the solid bounded below by the cone z 2 4(x 2 + y 2 ) and above by the ellipsoid 4(x 2 + y 2 ) + z 2 8. Method 1 Use cylindrical coordinates:

More information

Elementary Number Theory An Algebraic Apporach

Elementary Number Theory An Algebraic Apporach Elementary Number Theory An Algebraic Apporach Base on Burton s Elementary Number Theory 7/e 張世杰 bfhaha@gmail.com Contents 1 Preliminaries 11 1.1 Mathematical Induction.............................. 11

More information

Chapter 13 Thin-layer chromatography. Shin-Hun Juang, Ph.D.

Chapter 13 Thin-layer chromatography. Shin-Hun Juang, Ph.D. Chapter 13 Thin-layer chromatography Shin-Hun Juang, Ph.D. 1 Principles An analyte migrates up or across a layer of stationary phase (most commonly silica gel), under the influence of a mobile phase (usually

More information

Statistics and Econometrics I

Statistics and Econometrics I Statistics and Econometrics I Probability Model Shiu-Sheng Chen Department of Economics National Taiwan University October 4, 2016 Shiu-Sheng Chen (NTU Econ) Statistics and Econometrics I October 4, 2016

More information

Chapter 5-7 Errors, Random Errors, and Statistical Data in Chemical Analyses

Chapter 5-7 Errors, Random Errors, and Statistical Data in Chemical Analyses Chapter 5-7 Errors, Random Errors, and Statistical Data in Chemical Analyses Impossible: The analytical results are free of errors or uncertainties. Possible: Minimize these errors and estimate their size

More information

壓差式迴路式均熱片之研製 Fabrication of Pressure-Difference Loop Heat Spreader

壓差式迴路式均熱片之研製 Fabrication of Pressure-Difference Loop Heat Spreader 壓差式迴路式均熱片之研製 Fabrication of Pressure-Difference Loop Heat Spreader 1 2* 3 4 4 Yu-Tang Chen Shei Hung-Jung Sheng-Hong Tsai Shung-Wen Kang Chin-Chun Hsu 1 2* 3! "# $ % 4& '! " ( )* +, -. 95-2622-E-237-001-CC3

More information

HKDSE Chemistry Paper 2 Q.1 & Q.3

HKDSE Chemistry Paper 2 Q.1 & Q.3 HKDSE 2017 Chemistry Paper 2 Q.1 & Q.3 Focus areas Basic chemical knowledge Question requirement Experimental work Calculations Others Basic Chemical Knowledge Question 1(a)(i) (1) Chemical equation for

More information

CHAPTER 4. Thermochemistry ( 熱化學是熱力學的一支, 在化學反應或相變化過程中發生的能量吸收或釋出, 若以吸放熱的形式表現, 即為熱化學研究的對象 ) Chap. 4 Thermochemistry

CHAPTER 4. Thermochemistry ( 熱化學是熱力學的一支, 在化學反應或相變化過程中發生的能量吸收或釋出, 若以吸放熱的形式表現, 即為熱化學研究的對象 ) Chap. 4 Thermochemistry CHAPTER 4 Thermochemistry ( 熱化學是熱力學的一支, 在化學反應或相變化過程中發生的能量吸收或釋出, 若以吸放熱的形式表現, 即為熱化學研究的對象 ) 1 2 4.1 Energy Stored in Chemical Bonds Is Released or Taken Up in Chemical Reactions 3 I 2.2 Food and Energy reserves

More information

The dynamic N1-methyladenosine methylome in eukaryotic messenger RNA 报告人 : 沈胤

The dynamic N1-methyladenosine methylome in eukaryotic messenger RNA 报告人 : 沈胤 The dynamic N1-methyladenosine methylome in eukaryotic messenger RNA 报告人 : 沈胤 2016.12.26 研究背景 RNA 甲基化作为表观遗传学研究的重要内容之一, 是指发生在 RNA 分子上不同位置的甲基化修饰现象 RNA 甲基化在调控基因表达 剪接 RNA 编辑 RNA 稳定性 控制 mrna 寿命和降解等方面可能扮演重要角色

More information

Multimedia Communications Fall 07 Midterm Exam (Close Book)

Multimedia Communications Fall 07 Midterm Exam (Close Book) Multimedia Communications Fall 07 Midterm Exam (Close Book) 1. (20%) (a) For video compression using motion compensated predictive coding, compare the advantages and disadvantages of using a large block-size

More information

Chapter 2 the z-transform. 2.1 definition 2.2 properties of ROC 2.3 the inverse z-transform 2.4 z-transform properties

Chapter 2 the z-transform. 2.1 definition 2.2 properties of ROC 2.3 the inverse z-transform 2.4 z-transform properties Chapter 2 the -Transform 2.1 definition 2.2 properties of ROC 2.3 the inverse -transform 2.4 -transform properties 2.1 definition One motivation for introducing -transform is that the Fourier transform

More information

Beckman Coulter Cytomics FC500 Flow Cytometry 自動化五色螢光流式細胞分析儀 Training Course

Beckman Coulter Cytomics FC500 Flow Cytometry 自動化五色螢光流式細胞分析儀 Training Course Beckman Coulter Cytomics FC500 Flow Cytometry 自動化五色螢光流式細胞分析儀 Training Course 美商貝克曼庫爾特公司台灣分公司 http://www.beckman.com Principle and Concept of Cytomics FC500 Flow Cytometer 產品專員李明純 Sabrina Lee 美商貝克曼庫爾特公司台灣分公司生物醫學部

More information

A Direct Simulation Method for Continuous Variable Transmission with Component-wise Design Specifications

A Direct Simulation Method for Continuous Variable Transmission with Component-wise Design Specifications 第十七屆全國機構機器設計學術研討會中華民國一零三年十一月十四日 國立勤益科技大學台灣 台中論文編號 :CSM048 A Direct Simulation Method for Continuous Variable Transmission with Component-wise Design Specifications Yu-An Lin 1,Kuei-Yuan Chan 1 Graduate

More information

FUNDAMENTALS OF FLUID MECHANICS. Chapter 8 Pipe Flow. Jyh-Cherng. Shieh Department of Bio-Industrial

FUNDAMENTALS OF FLUID MECHANICS. Chapter 8 Pipe Flow. Jyh-Cherng. Shieh Department of Bio-Industrial Chapter 8 Pipe Flow FUNDAMENTALS OF FLUID MECHANICS Jyh-Cherng Shieh Department of Bio-Industrial Mechatronics Engineering National Taiwan University 1/1/009 1 MAIN TOPICS General Characteristics of Pipe

More information

Frequency Response (Bode Plot) with MATLAB

Frequency Response (Bode Plot) with MATLAB Frequency Response (Bode Plot) with MATLAB 黃馨儀 216/6/15 適應性光子實驗室 常用功能選單 File 選單上第一個指令 New 有三個選項 : M-file Figure Model 開啟一個新的檔案 (*.m) 用以編輯 MATLAB 程式 開始一個新的圖檔 開啟一個新的 simulink 檔案 Help MATLAB Help 查詢相關函式 MATLAB

More information

MECHANICS OF MATERIALS

MECHANICS OF MATERIALS CHAPTER 2 MECHANICS OF MATERIALS Ferdinand P. Beer E. Russell Johnston, Jr. John T. DeWolf David F. Mazurek Lecture Notes: J. Walt Oler Texas Tech University Stress and Strain Axial Loading 2.1 An Introduction

More information

數位系統設計 Digital System Design

數位系統設計 Digital System Design 數位系統設計 Digital System Design Instructor: Kuan Jen Lin ( 林寬仁 ) E-Mail: kjlin@mails.fju.edu.tw Web: http://vlsi.ee.fju.edu.tw/teacher/kjlin/kjlin.htm Room: SF 727B 1 電子電機產業 消費性 通訊 控制 生醫 多媒體 綠能 作業系統 開發工具

More information

MRDFG 的周期界的計算的提升計畫編號 :NSC E 執行期限 : 94 年 8 月 1 日至 94 年 7 月 31 日主持人 : 趙玉政治大學資管系計畫參與人員 :

MRDFG 的周期界的計算的提升計畫編號 :NSC E 執行期限 : 94 年 8 月 1 日至 94 年 7 月 31 日主持人 : 趙玉政治大學資管系計畫參與人員 : MRDFG 的周期界的計算的提升計畫編號 :NSC 94-2213-E-004-005 執行期限 : 94 年 8 月 1 日至 94 年 7 月 31 日主持人 : 趙玉政治大學資管系計畫參與人員 : 一 中文摘要 Schoenen [4] 證實了我們的理論 即如果 MRDFG 的標記使它像 SRDFG 一樣表現, 不需要變換為 SRDFG 他們表明當標記高于相符標記, 在回界相對於標記的圖中,

More information

第 3 章有機化學反應種類及酸鹼有機反應. 一 ) 有機化反應的種類及有機反應機制 (organic reactions and their mechanism)

第 3 章有機化學反應種類及酸鹼有機反應. 一 ) 有機化反應的種類及有機反應機制 (organic reactions and their mechanism) 第 3 章有機化學反應種類及酸鹼有機反應 一 ) 有機化反應的種類及有機反應機制 (organic reactions and their mechanism) 1) a) Substitution reaction: (Saturated compound such as alkanes or alkyl halides, aromatic compounds) ne group replace

More information

Ch 13 Acids and Bases

Ch 13 Acids and Bases Ch 13 Acids and Bases 13-1 BrФnsted-Lowry acid-base model 13- The ion product of water [H ][OH ] = K w 13-3 ph and poh ph =log[h ] 13-4 Weak acid and their equilibrium constants 13-5 Weak base and their

More information

Chapter 5-6 Experimental Error

Chapter 5-6 Experimental Error Chapter 5-6 Expermental Error Contents n Chapter 5-6. Sgnfcant Fgures. Sgnfcant Fgures n Arthmetc 3. Error Systematc Error Random Error 4. Propagaton of Uncertanty from Random Error 5. Propagaton of Uncertanty:

More information

USTC SNST 2014 Autumn Semester Lecture Series

USTC SNST 2014 Autumn Semester Lecture Series USTC SNST 2014 Autumn Semester Lecture Series Title: Introduction to Tokamak Fusion Energy Nuclear Science and Technology Research and Development (R&D) L8 A: Putting it all together: the box and thinking

More information

Revised Dynamic Optimal Training of Three-Layer Neural Network

Revised Dynamic Optimal Training of Three-Layer Neural Network 國立交通大學 電機與控制工程學系 碩士論文 三層類神經網路的改良式動態最佳學習 Revised Dynamic Optimal Training of Three-Layer Neural Network 研究生 : 林書帆 指導教授 : 王啟旭教授 中華民國九十五年十月 1 三層類神經網路的改良式動態最佳學習 Revised Dynamic Optimal Training of Three-Layer

More information

Boundary Influence On The Entropy Of A Lozi-Type Map. Cellular Neural Networks : Defect Patterns And Stability

Boundary Influence On The Entropy Of A Lozi-Type Map. Cellular Neural Networks : Defect Patterns And Stability Boundary Influence On The Entropy Of A Lozi-Type Map Yu-Chuan Chang and Jonq Juang Abstract: Let T be a Henon-type map induced from a spatial discretization of a Reaction-Diffusion system With the above-mentioned

More information

On the Quark model based on virtual spacetime and the origin of fractional charge

On the Quark model based on virtual spacetime and the origin of fractional charge On the Quark model based on virtual spacetime and the origin of fractional charge Zhi Cheng No. 9 Bairong st. Baiyun District, Guangzhou, China. 510400. gzchengzhi@hotmail.com Abstract: The quark model

More information

FUNDAMENTALS OF FLUID MECHANICS Chapter 3 Fluids in Motion - The Bernoulli Equation

FUNDAMENTALS OF FLUID MECHANICS Chapter 3 Fluids in Motion - The Bernoulli Equation FUNDAMENTALS OF FLUID MECHANICS Chater 3 Fluids in Motion - The Bernoulli Equation Jyh-Cherng Shieh Deartment of Bio-Industrial Mechatronics Engineering National Taiwan University 09/8/009 MAIN TOPICS

More information

CHAPTER 2. Energy Bands and Carrier Concentration in Thermal Equilibrium

CHAPTER 2. Energy Bands and Carrier Concentration in Thermal Equilibrium CHAPTER 2 Energy Bands and Carrier Concentration in Thermal Equilibrium 光電特性 Ge 被 Si 取代, 因為 Si 有較低漏電流 Figure 2.1. Typical range of conductivities for insulators, semiconductors, and conductors. Figure

More information

在破裂多孔介質中的情形 底下是我們考慮的抛物線微分方程式. is a domain and = f. in f. . Denote absolute permeability by. P in. k in. p in. and. and. , and external source by

在破裂多孔介質中的情形 底下是我們考慮的抛物線微分方程式. is a domain and = f. in f. . Denote absolute permeability by. P in. k in. p in. and. and. , and external source by 行 裂 精 類 行 年 年 行 立 數 葉立 論 理 年 背景及目的很多的化學工廠的廢水經由水井排放到地底, 地面的有毒廢棄物也經由雨水進入地底, 核能電廠儲存在地底下的核廢棄物由於時間的關係造成容器腐蝕 或是由於地層變動造成容器破裂, 放射性物質也因此進入地下水 這些都造成日常飲用水的不安全 這些問題不是只發生在臺灣, 世界其它國家也有同樣的情形 歐美一些國家都有專責機構負責這些污染源的清除工作

More information

Chapter 8 Lecture. Essential University Physics Richard Wolfson 2 nd Edition. Gravity 重力 Pearson Education, Inc. Slide 8-1

Chapter 8 Lecture. Essential University Physics Richard Wolfson 2 nd Edition. Gravity 重力 Pearson Education, Inc. Slide 8-1 Chapter 8 Lecture Essential University Physics Richard Wolfson 2 nd Edition Gravity 重力 Slide 8-1 In this lecture you ll learn 簡介 Newton s law of universal gravitation 萬有引力 About motion in circular and

More information

個體經濟學二. Ch10. Price taking firm. * Price taking firm: revenue = P(x) x = P x. profit = total revenur total cost

個體經濟學二. Ch10. Price taking firm. * Price taking firm: revenue = P(x) x = P x. profit = total revenur total cost Ch10. Price taking firm 個體經濟學二 M i c r o e c o n o m i c s (I I) * Price taking firm: revenue = P(x) x = P x profit = total revenur total cost Short Run Decision:SR profit = TR(x) SRTC(x) Figure 82: AR

More information

論文與專利寫作暨學術 倫理期末報告 班級 : 碩化一甲學號 :MA 姓名 : 林郡澤老師 : 黃常寧

論文與專利寫作暨學術 倫理期末報告 班級 : 碩化一甲學號 :MA 姓名 : 林郡澤老師 : 黃常寧 論文與專利寫作暨學術 倫理期末報告 班級 : 碩化一甲學號 :MA540117 姓名 : 林郡澤老師 : 黃常寧 About 85% of the world s energy requirements are currently satisfied by exhaustible fossil fuels that have detrimental consequences on human health

More information

Ch2. Atoms, Molecules and Ions

Ch2. Atoms, Molecules and Ions Ch2. Atoms, Molecules and Ions The structure of matter includes: (1)Atoms: Composed of electrons, protons and neutrons.(2.2) (2)Molecules: Two or more atoms may combine with one another to form an uncharged

More information

Chapter 1 Introduction: Matter and Measurement

Chapter 1 Introduction: Matter and Measurement Chapter 1 Introduction: and, Inc. Introduction: and 1.1 The Study of Chemistry 1.2 Classifications of 1.3 Properties of 1.4 Units of 1.5 Uncertainty in 1.6 Dimensional Analysis Chemistry is the study of

More information

( 选出不同类别的单词 ) ( 照样子完成填空 ) e.g. one three

( 选出不同类别的单词 ) ( 照样子完成填空 ) e.g. one three Contents 目录 TIPS: 对于数量的问答 - How many + 可数名词复数 + have you/i/we/they got? has he/she/it/kuan got? - I/You/We/They have got + 数字 (+ 可数名词复数 ). He/She/It/Kuan has got + 数字 (+ 可数名词复数 ). e.g. How many sweets

More information

Default risk premium + Liquidity premium + maturity risk premium (2) PV of perpetuity

Default risk premium + Liquidity premium + maturity risk premium (2) PV of perpetuity The Prevew of L Quattatve Method Chapter.The Tme Value of Moey ( Requred rate of retur o a securty Requred rate omal rsk-free rate a + all kds of premums b a omal rsk-free rate real rsk-free rate + expected

More information

行政院國家科學委員會補助專題研究計畫 成果報告 期中進度報告 ( 計畫名稱 )

行政院國家科學委員會補助專題研究計畫 成果報告 期中進度報告 ( 計畫名稱 ) 附件一 行政院國家科學委員會補助專題研究計畫 成果報告 期中進度報告 ( 計畫名稱 ) 發展紅外線 / 可見光合頻波成像顯微術以研究表面催化反應 計畫類別 : 個別型計畫 整合型計畫計畫編號 :NSC 97-2113 - M - 009-002 - MY2 執行期間 : 97 年 3 月 1 日至 98 年 7 月 31 日 計畫主持人 : 重藤真介共同主持人 : 計畫參與人員 : 成果報告類型 (

More information

Chapter 7 Propositional and Predicate Logic

Chapter 7 Propositional and Predicate Logic Chapter 7 Propositional and Predicate Logic 1 What is Artificial Intelligence? A more difficult question is: What is intelligence? This question has puzzled philosophers, biologists and psychologists for

More information

世界自然基金會米埔濕地中學教育項目 紅樹林生態 學生工作紙 ( 參考答案 ) WWF Mai Po Wetland Secondary School Education Programme Mangrove Ecology Student Worksheet (Reference Answer)

世界自然基金會米埔濕地中學教育項目 紅樹林生態 學生工作紙 ( 參考答案 ) WWF Mai Po Wetland Secondary School Education Programme Mangrove Ecology Student Worksheet (Reference Answer) 世界自然基金會米埔濕地中學教育項目 紅樹林生態 學生工作紙 ( 參考答案 ) Mangrove cology Student Worksheet (Reference nswer). 紅樹在其居住環境面對什麼困難?What difficulties are mangroves facing in their habitat? a. 缺乏氧氣 naerobic condition d. 乾旱 esiccation

More information

Permutation Tests for Difference between Two Multivariate Allometric Patterns

Permutation Tests for Difference between Two Multivariate Allometric Patterns Zoological Studies 38(1): 10-18 (1999) Permutation Tests for Difference between Two Multivariate Allometric Patterns Tzong-Der Tzeng and Shean-Ya Yeh* Institute of Oceanography, National Taiwan University,

More information

Lecture Note on Linear Algebra 14. Linear Independence, Bases and Coordinates

Lecture Note on Linear Algebra 14. Linear Independence, Bases and Coordinates Lecture Note on Linear Algebra 14 Linear Independence, Bases and Coordinates Wei-Shi Zheng, wszheng@ieeeorg, 211 November 3, 211 1 What Do You Learn from This Note Do you still remember the unit vectors

More information

Chapter 1 Thermodynamics and Phase Diagrams

Chapter 1 Thermodynamics and Phase Diagrams Chapter Thermoynamics an Phase Diagrams Equilibrium Single component systems inary solutions Equilibrium in heterogeneous system inary phase iagrams The influence of interfaces on equilibrium Ternary equilibrium

More information