Algorithms and Complexity

Size: px
Start display at page:

Download "Algorithms and Complexity"

Transcription

1 Algorithms and Complexity

2 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 name of a Persian author, Abu Ja far Mohammed ibn Musa al Khowarizmi (c. 825 A.D.), who wrote a textbook on mathematics. Example: A computer program is an algorithm, more precisely, program = algorithm + data structure Remark: From a mathematical perspective, an algorithm represents a function. The British mathematician Alan Turing proved that some functions cannot be represented by an algorithm.

3 Properties of algorithms Input Output Definiteness : The steps of an algorithm must be defined precisely. Correctness : produce correct output values Finiteness : produce the desired output after a finite number of step. Generality : The procedure should be applicable for all problems of the desired form, not just for a particular set of input values Effectiveness

4 Pseudo-code Terminology: A good pseudocoding of an algorithm provides a clear prose representation of the algorithm and also is transformable into one or more target programming languages.

5 Find Maximum Find maximum from a sequence of integers: Set the temporary maximum equal to the first integer in the sequence. Compare the next integer in the sequence to the temporary maximum, and if it is larger than the temporary maximum, set the temporary maximum equal to this integer. Repeat the previous step if there are more integers in the sequence. Stop when there are no integers left in the sequence. The temporary maximum at this point is the largest integer in the sequence.

6

7 Problem Locate an element x in a list of distinct elements a 1, a 2,., a n, or determine that it is not in the list

8

9 Remark If the array were pre-sorted into ascending (or descending) order, then faster algorithms could be used.

10

11

12 Binary Search Example example

13 Remark Sorting algorithms Bubble sort Insertion sort Quick sort Merge sort etc

14 Sorting Algorithms Problem : Suppose that we have a list of elements, a sorting is putting these elements into a list in which the elements are in increasing order. example 7, 2, 1, 4, 5, 9 1, 2, 4, 5, 7, 9

15 Bubble Sort( 氣泡排序法 ) 設原 sequence 為 a 1,,a n 從 a 1, a 2 開始, 向後兩兩比較, 若 a i > a i+1 則交換, 當檢查完 a n 時,a n 必定是最大數 再從 a 1,a 2 開始向後比較, 若 a i > a i+1 則交換, 此時只需檢查到 a n-1 即可 依此類推

16 Example Put 3, 2, 4, 1, 5 in increasing order using the bubble sort Sol : First pass (i=1) : Second pass (i=2) : Third pass (i=3) : Fourth pass (i=4) :

17 Bubble Sort( 氣泡排序法 ) Algorithm The Bubble Sort procedure bubble_sort (a 1,,a n ) for i := 1 to n 1 for j := 1 to n i if a j > a j+1 then interchange a j and a j+1 { a 1,a 2,,a n is in increasing order }

18 Insertion Sort 設原 sequence 為 a 1,,a n 從 j = 2 開始, 將 a j 插入已排序好 a 1,,a j-1 間的位置, 使得 a 1,,a j 都由小到大排好 j 逐次遞增, 重複上一步驟至做完

19 Example Use insertion sort to put 3, 2, 4, 1, 5 in increasing order Solution (j=2 時,a 1 =3 可看成已經排序好的數列, 此時要插入 a 2 ) : 3 < 2 2, 3 交換 2, 3, 4, 1, 5 (j=3 時,a 1,a 2 已經排序好, 此時要插入 a 3 ) : 4 > 2, 4 > 3 4 的位置不變 2, 3, 4, 1, 5 (j=4 時,a 1,a 2,a 3 已經排序好, 此時要插入 a 4 ) : 1 < 2 將 1 插在最前面 1, 2, 3, 4, 5 (j=5 時,a 1,a 2,a 3,a 4 已經排序好, 此時要插入 a 5 ) : 5 > 1, 5 > 2, 5 > 3, 5 > 4 5 不變 1, 2, 3, 4, 5

20 Insertion Sort( 插入排序法 ) Algorithm The Insertion Sort procedure insertion_sort ( a 1,,a n : real numbers with n 2 ) for j := 2 to n begin i := 1 找出 a j 應插入的位置 while a j > a 最後 a i i 1 < a j <= a i i := i + 1 m := a j 將 a for k := 0 to j i 1 i, a i+1,, a j 1 全部往右移一格 a j k := a j k 1 a i := m end { a 1,a 2,,a n are sorted }

21 Summary Search Find maximum Binary search Sort Bubble sort Insertion sort

22 Remark Strategies of designing good algorithms: Greedy Divide & conquer Prune & search Dynamic programming Branch and bound Approximation Heuristics

23 Exercises Section (b), 34, 38

24 2.2 The Growth of Functions To analyze the practicality of the program, we need to understand how quickly the function (number of operations used by this algorithm) grows as n (number of input elements) grows.

25 Asymptotical Upper Bound

26 BIG OH CLASSES

27 Def ( Big-O notation ) Let f and g be functions from the set of integers to the set of real numbers. We say that f (x) is O(g(x)) if there are constants C and K such that f (x) C g(x) whenever x > K. ( read as f (x) is big-oh of g(x) )

28 Figure The function f (x) is O(g(x)) Cg(x) f (x) g(x) k f (x) < C g(x) for x > k

29 Witness

30 Example Example Show that f (x) = x 2 +2x+1 is O(x 2 ) Sol : Since x 2 +2x+1 x 2 +2x 2 +x 2 = 4x 2 whenever x > 1, it follows f (x) is O(x 2 ) (take C = 4 and K =1 ) Method 2: If x > 2, we see that x 2 +2x+1 x 2 +x 2 +x 2 = 3x 2 ( take C = 3 and K = 2 )

31 Example Example Show that f (n)= n 2 +2n +2 is O(n 3 ) Sol : Since n 2 +2n+2 n 3 +n 3 +n 3 = 3n 3 whenever n > 1, we see that f (n) is O(n 3 ) ( take C = 3 and K = 1 ) Note. The function g in O(g) is chosen to be as small as possible.

32 Exercise Show that f (n)= n 2 +2n +2 is O(n 2 )

33 Remark Big O = asymptotic upper bound Big Ω = asymptotic lower bound Big Θ = exact order

34 Theorem Let f (x) = a n x n +a n-1 x n-1 + +a 1 x+a 0 where a 0, a 1,, a n are real numbers. Then f (x) is O (x n ).

35 Example Give big-o estimates for f (n) = n! Sol : n! = n n n n = n n n! is O(n n ), taking C =1 and K =1. Example (see Figure 3 in textbook) 常見 function 的成長速度由小至大排列 : 1 < log n < n < n log n < n 2 < 2 n < n!

36 Theorem Suppose that f1(x) is O(g1(x)) and f2(x) is O(g2(x)), then (f1+f2)(x) is O(max( g1(x), g2(x) )), (f1 f2)(x) is O(g1(x) g2(x)).

37 Exercises Section 2.2 3,18

38 2.3 Complexity of Algorithms Question : How can the efficiency of an algorithm be analyzed? Answer : (1) time (2) memory

39 Complexity Def : Time complexity : an analysis of the time required to solve a problem of a particular size. ( 評量方式 : 計算 # of operations, 如 comparison 次數, 加法 或 乘法 次數等 ) Space complexity : an analysis of the computer memory required to solve a problem of a particular size. ( 是 data structure 探討範圍 )

40

41 Example Describe the time complexity of Algorithm Find Max Algorithm ( Find Max ) procedure max(a 1,,a n : integers) max := a 1 for i := 2 to n if max < a i then max := a i { max is the largest element } Sol : ( 計算 # of comparisons) i 值一開始 = 2 逐次加一, 並比較是否 >n. 當 i 變成 n+1 時因比 n 大, 故結束 for 迴圈 共有 n 次 comparison 共有 n-1 次 comparison 故整個演算法共做 2n-1 次 comparison 其 time complexity 為 O(n).

42 Example Describe the time complexity of the binary search algorithm. Algorithm ( Binary Search ) procedure bs ( x : integer, a 1,,a n : increasing integers ) i := 1 { left endpoint } j := n { right endpoint } while i < j /* ( k+1 次 ) begin m := ( i + j ) / 2 if x > a m then i := m+1 /* ( k 次 ) else j := m end if x = a i then location := i /* ( 1 次 ) else location := 0 Sol : 設 n = 2 k 以簡化計算 ( 若 n < 2 k, 其比較次數必小於等於 n = 2 k 的情況 ) 因 while 迴圈每次執行後整個 list 會切成兩半故最多只能切 k 次就會因 i = j 而跳出迴圈 共比較 2k+2 次 time complexity 為 O(k) = O(log n)

43 Table Commonly Used Terminology Complexity O(1) O(log n) O(n) O(n log n) O(n b ) O(b n ), b >1 O(n!) Terminology constant complexity Logarithmic complexity Linear complexity n log n complexity Polynomial complexity Exponential complexity Factorial complexity

44 COMPLEXITY JARGON def: A problem is solvable if it can be solved by an algorithm. Example: Alan Turing defined the halting problem to be that of deciding whether a computational procedure (e.g., a program) halts for all possible input. He proved that the halting problem is unsolvable.

45 COMPLEXITY JARGON def: A problem is in class P if it is solvable by an algorithm that runs in polynomial time. def: A problem is tractable if it is in class P. def: A problem is in class NP if an algorithm can decide in polynomial time whether a putative solution is really a solution.

46 Exercises Is P = NP?

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

= 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

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

生物統計教育訓練 - 課程. 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

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

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

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

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

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

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

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

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

邏輯設計 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

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

雷射原理. 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

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

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

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

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

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

More information

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

pseudo-code-2012.docx 2013/5/9 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 1+2+...+n

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

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

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

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

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

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

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

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

相關分析. 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

壓差式迴路式均熱片之研製 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

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

國立中正大學八十一學年度應用數學研究所 碩士班研究生招生考試試題 國立中正大學八十一學年度應用數學研究所 碩士班研究生招生考試試題 基礎數學 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

CH 5 More on the analysis of consumer behavior

CH 5 More on the analysis of consumer behavior 個體經濟學一 M i c r o e c o n o m i c s (I) CH 5 More on the analysis of consumer behavior Figure74 An increase in the price of X, P x P x1 P x2, P x2 > P x1 Assume = 1 and m are fixed. m =e(p X2,, u 1 ) m=e(p

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

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

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

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

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

國立成功大學 航空太空工程學系 碩士論文 研究生 : 柯宗良 指導教授 : 楊憲東

國立成功大學 航空太空工程學系 碩士論文 研究生 : 柯宗良 指導教授 : 楊憲東 國立成功大學 航空太空工程學系 碩士論文 波函數的統計力學詮釋 Statistical Interpretation of Wave Function 研究生 : 柯宗良 指導教授 : 楊憲東 Department of Aeronautics and Astronautics National Cheng Kung University Tainan, Taiwan, R.O.C. Thesis

More information

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

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

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

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

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

Algorithms and Their Complexity

Algorithms and Their Complexity CSCE 222 Discrete Structures for Computing David Kebo Houngninou Algorithms and Their Complexity Chapter 3 Algorithm An algorithm is a finite sequence of steps that solves a problem. Computational complexity

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

ApTutorGroup. SAT II Chemistry Guides: Test Basics Scoring, Timing, Number of Questions Points Minutes Questions (Multiple Choice)

ApTutorGroup. SAT II Chemistry Guides: Test Basics Scoring, Timing, Number of Questions Points Minutes Questions (Multiple Choice) SAT II Chemistry Guides: Test Basics Scoring, Timing, Number of Questions Points Minutes Questions 200-800 60 85 (Multiple Choice) PART A ----------------------------------------------------------------

More information

CSCE 222 Discrete Structures for Computing

CSCE 222 Discrete Structures for Computing CSCE 222 Discrete Structures for Computing Algorithms Dr. Philip C. Ritchey Introduction An algorithm is a finite sequence of precise instructions for performing a computation or for solving a problem.

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

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

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

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

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

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

Regression Analysis. Institute of Statistics, National Tsing Hua University, Taiwan

Regression Analysis. Institute of Statistics, National Tsing Hua University, Taiwan Regression Analysis Ching-Kang Ing ( 銀慶剛 ) Institute of Statistics, National Tsing Hua University, Taiwan Regression Models: Finite Sample Theory y i = β 0 + β 1 x i1 + + β k x ik + ε i, i = 1,, n, where

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

Discrete Mathematics CS October 17, 2006

Discrete Mathematics CS October 17, 2006 Discrete Mathematics CS 2610 October 17, 2006 Uncountable sets Theorem: The set of real numbers is uncountable. If a subset of a set is uncountable, then the set is uncountable. The cardinality of a subset

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

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

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

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

適應控制與反覆控制應用在壓電致動器之研究 Adaptive and Repetitive Control of Piezoelectric Actuators

適應控制與反覆控制應用在壓電致動器之研究 Adaptive and Repetitive Control of Piezoelectric Actuators 行 精 類 行 年 年 行 立 林 參 理 劉 理 論 理 年 行政院國家科學委員會補助專題研究計畫成果報告 適應控制與反覆控制應用在壓電致動器之研究 Adaptive and Repetitive Control of Piezoelectric Actuators 計畫類別 : 個別型計畫 整合型計畫 計畫編號 :NSC 97-2218-E-011-015 執行期間 :97 年 11 月 01

More information

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

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

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

原子模型 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

命名, 構象分析及合成簡介 (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

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

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

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

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

3. Algorithms. What matters? How fast do we solve the problem? How much computer resource do we need?

3. Algorithms. What matters? How fast do we solve the problem? How much computer resource do we need? 3. Algorithms We will study algorithms to solve many different types of problems such as finding the largest of a sequence of numbers sorting a sequence of numbers finding the shortest path between two

More information

Chapter 13. Enzyme Kinetics ( 動力學 ) and Specificity ( 特異性 專一性 ) Biochemistry by. Reginald Garrett and Charles Grisham

Chapter 13. Enzyme Kinetics ( 動力學 ) and Specificity ( 特異性 專一性 ) Biochemistry by. Reginald Garrett and Charles Grisham Chapter 13 Enzyme Kinetics ( 動力學 ) and Specificity ( 特異性 專一性 ) Biochemistry by Reginald Garrett and Charles Grisham Y.T.Ko class version 2016 1 Essential Question What are enzymes? Features, Classification,

More information

ECOM Discrete Mathematics

ECOM Discrete Mathematics ECOM 2311- Discrete Mathematics Chapter # 3 : Algorithms Fall, 2013/2014 ECOM 2311- Discrete Mathematics - Ch.3 Dr. Musbah Shaat 1 / 41 Outline 1 Algorithms 2 The Growth of Functions 3 Complexity of Algorithms

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

Chapter 9 Time-Weighted Control Charts. Statistical Quality Control (D. C. Montgomery)

Chapter 9 Time-Weighted Control Charts. Statistical Quality Control (D. C. Montgomery) Chapter 9 Time-Weighted Control Charts 許湘伶 Statistical Quality Control (D. C. Montgomery) Introduction I Shewhart control chart: Chap. 5 7: basic SPC methods Useful in phase I implementation( 完成 ) of SPC

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

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

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

Sparse Learning Under Regularization Framework

Sparse Learning Under Regularization Framework Sparse Learning Under Regularization Framework YANG, Haiqin A Thesis Submitted in Partial Fulfilment of the Requirements for the Degree of Doctor of Philosophy in Computer Science and Engineering The Chinese

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

Algorithms 2/6/2018. Algorithms. Enough Mathematical Appetizers! Algorithm Examples. Algorithms. Algorithm Examples. Algorithm Examples

Algorithms 2/6/2018. Algorithms. Enough Mathematical Appetizers! Algorithm Examples. Algorithms. Algorithm Examples. Algorithm Examples Enough Mathematical Appetizers! Algorithms What is an algorithm? Let us look at something more interesting: Algorithms An algorithm is a finite set of precise instructions for performing a computation

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

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

Ch. 6 Electronic Structure and The Periodic Table

Ch. 6 Electronic Structure and The Periodic Table Ch. 6 Eectronic tructure and The Periodic Tabe 6-: Light, Photon Energies, and Atoic pectra. The Wave Nature of Light: Waveength and Frequency. The partice Nature of Light; Photon Energies 3. Atoic pectra

More information

Chapter 7. The Quantum- Mechanical Model of the Atom. Chapter 7 Lecture Lecture Presentation. Sherril Soman Grand Valley State University

Chapter 7. The Quantum- Mechanical Model of the Atom. Chapter 7 Lecture Lecture Presentation. Sherril Soman Grand Valley State University Chapter 7 Lecture Lecture Presentation Chapter 7 The Quantum- Mechanical Model of the Atom Sherril Soman Grand Valley State University 授課教師 : 林秀美辦公室 : 綜合二館 302B TEL: 5562 email:hmlin@mail.ntou.edu.tw 評量方式

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

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

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

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

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

Announcements. CompSci 230 Discrete Math for Computer Science. The Growth of Functions. Section 3.2

Announcements. CompSci 230 Discrete Math for Computer Science. The Growth of Functions. Section 3.2 CompSci 230 Discrete Math for Computer Science Announcements Read Chap. 3.1-3.3 No recitation Friday, Oct 11 or Mon Oct 14 October 8, 2013 Prof. Rodger Section 3.2 Big-O Notation Big-O Estimates for Important

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

Announcements. CompSci 102 Discrete Math for Computer Science. Chap. 3.1 Algorithms. Specifying Algorithms

Announcements. CompSci 102 Discrete Math for Computer Science. Chap. 3.1 Algorithms. Specifying Algorithms CompSci 102 Discrete Math for Computer Science Announcements Read for next time Chap. 3.1-3.3 Homework 3 due Tuesday We ll finish Chapter 2 first today February 7, 2012 Prof. Rodger Chap. 3.1 Algorithms

More information

Algebraic Algorithms in Combinatorial Optimization

Algebraic Algorithms in Combinatorial Optimization Algebraic Algorithms in Combinatorial Optimization CHEUNG, Ho Yee A Thesis Submitted in Partial Fulfillment of the Requirements for the Degree of Master of Philosophy in Computer Science and Engineering

More information

With Question/Answer Animations

With Question/Answer Animations Chapter 3 With Question/Answer Animations Copyright McGraw-Hill Education. All rights reserved. No reproduction or distribution without the prior written consent of McGraw-Hill Education. Chapter Summary

More information

Hong Kong s temperature record: Is it in support of global warming? 香港的溫度記錄 : 全球暖化的證據?

Hong Kong s temperature record: Is it in support of global warming? 香港的溫度記錄 : 全球暖化的證據? Hong Kong s temperature record: Is it in support of global warming? 香港的溫度記錄 : 全球暖化的證據? Wyss W.-S. Yim 嚴維樞教授 Department of Earth Sciences, The University of Hong Kong / School of Energy & Environment, City

More information

A proof of the 3x +1 conjecture

A proof of the 3x +1 conjecture A proof of he 3 + cojecure (Xjag, Cha Rado ad Televso Uversy) (23..) Su-fawag Absrac: Fd a soluo o 3 + cojecures a mahemacal ool o fd ou he codo 3 + cojecures gve 3 + cojecure became a proof. Keywords:

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

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

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

More information

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

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

More information

Chemistry advance in molecular imaging March 8, 2005 ABSTRACT Zeitsan Tsai

Chemistry advance in molecular imaging March 8, 2005 ABSTRACT Zeitsan Tsai Chemistry advance in molecular imaging March 8, 2005 ABSTRACT Zeitsan Tsai Molecular imaging is broadly defined as the characterization & measurement of biological processes in vivo at cellular and molecular

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

Examples (Chapter )

Examples (Chapter ) 7 C Exales (Chater 6 -- 8) F x F y A A cs60 + A cs60 F Q ρq + ρ( ) cs60 Q + ρ( )( x )cs60 0 (atsheric) then Fx ρ Q -767 N In the y-directin: ( 0) A sin60 A sin60 + Fy Q Q ρq(0) + ρ( ) sin60 + ρ( )( sin60

More information

2012 AP Calculus BC 模拟试卷

2012 AP Calculus BC 模拟试卷 0 AP Calculus BC 模拟试卷 北京新东方罗勇 luoyong@df.cn 0-3- 说明 : 请严格按照实际考试时间进行模拟, 考试时间共 95 分钟 Multiple-Choice section A 部分 : 无计算器 B 部分 : 有计算器 Free-response section A 部分 : 有计算器 B 部分 : 无计算器 总计 45 题 /05 分钟 8 题,55 分钟

More information