& BLS 9/7/7 Define: - Define Score of Optimal lignment using Recursion S(i, j) = Score of optimal alignment of x..i and y..j Initial conditions: x..i

Size: px
Start display at page:

Download "& BLS 9/7/7 Define: - Define Score of Optimal lignment using Recursion S(i, j) = Score of optimal alignment of x..i and y..j Initial conditions: x..i"

Transcription

1 & BLS 9/7/7 BB 444/544 Lecture 8 Finish: Dynamic Programming Global vs Local lignment Scoring Matrices & lignment Statistics BLS #8_Sept7 Required Reading (before lecture) Last week: - for Lectures 4-7 Pairwise Sequence lignment, Dynamic Programming, Global vs Local lignment, Scoring Matrices, Statistics Xiong: hp 3 Eddy: What is Dynamic Programming? 4 Nature Biotechnol :99 Wed Sept 5 - for Lecture 7 & Lab 3 Database Similarity Searching: BLS (nope, more DP) hp 4 - pp 5-6 Fri Sept - for Lecture 8 (will finish on Monday) BLS variations; BLS vs FS hp 4 - pp 5-6 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 ssignments & nnouncements hp 3- Sequence lignment ues Sept 4 - Lab # Exercise Writeup due by 5 PM Send via to Pete Zaback petez@iastate.edu (For now, no late penalty - just send SP) Wed Sept 5 - Notes for Lecture 5 posted online - HW# posted online & sent via & handed out in class Fri Sept 4 - HW# Due by 5 PM Fri Sept - Exam # BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 3 SEION II SEQUENE LIGNMEN Xiong: hp 3 Pairwise Sequence lignment Evolutionary Basis Sequence Homology versus Sequence Similarity Sequence Similarity versus Sequence Identity Methods - cont Scoring Matrices Statistical Significance of Sequence lignment dapted from Brown and aragea, 7, with some slides from: ltman, Fernandez-Baca, Batzoglou, raven, Hunter, Page. BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 4 Methods Global and Local lignment lignment lgorithms Dot Matrix Method Dynamic Programming Method - cont Gap penalities DP for Global lignment DP for Local lignment Scoring Matrices mino acid scoring matrices PM BLOSUM omparisons between PM & BLOSUM Statistical Significance of Sequence lignment Dynamic Programming - 4 Steps:. Define score of optimal alignment, using recursion. Initialize and fill in a DP matrix for storing optimal scores of subproblems, by solving smallest subproblems first (bottom-up approach) 3. alculate score of optimal alignment(s) 4. race back through matrix to recover optimal alignment(s) that generated optimal score BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 5 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 6 BB 444/544 Fall 7 Dobbs

2 & BLS 9/7/7 Define: - Define Score of Optimal lignment using Recursion S(i, j) = Score of optimal alignment of x..i and y..j Initial conditions: x..i = Prefix of length i of x y.. j = Prefix of length j of y S(i,) = "i #$ S(, j) = " j #$ Recursive definition: For i N, j M: % S(i ", j ") +# (x i, y j ) ' S(i, j) = max& S(i ", j) "$ ' ( S(i, j ") "$ α = Match Reward β = Mismatch Penalty γ = Gap penalty σ(x i,y j ) = α or β γ = Gap penalty BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 7 - Initialize & Fill in DP Matrix for Storing Optimal Scores of Subproblems onstruct sequence vs sequence matrix Fill in from [,] to [N,M] (row by row), calculating best possible score for each alignment ending at residues at [i,j] N S(,)= M S(i,j) S(N,M) BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 8 How do we calculate S(i,j)? i.e., Score for alignment of x[..i] to y[..j]? of 3 cases optimal score for this subproblem: x i aligns to y j x i aligns to a gap y j aligns to a gap x x... x i- x i y y... y j- y j x x... x i- x i y y... y j x x... x i y y... y j- y j Specific Example: ase : Line up x i with y j i - i x: - G y: - j - j ase : Line up x i with space i - i x: - G - y: - - j Note: I changed sequences on this slide (to match the rest of DP example) Scoring onsequence? Match Bonus Space Penalty S(i-,j-) + σ(x i,y j ) S(i-,j) - γ S(i,j-) - γ ase 3: Line up y j with space i x: - G - y: - - j - j Space Penalty BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 9 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 α = Match Reward β = Mismatch Penalty γ = Gap penalty Ready? Fill in DP Matrix Keep track of dependencies of scores (in a pointer matrix) N S(,)= + σ(x i,y j ) = α or β M Initialization S(i,) = "i #$ S(, j) = " j #$ S(i-,j-) S(i,j-) - γ S(i-,j) S(i,j) S(N,M) Recursion % S(i ", j ") +# (x i, y j ) ' S(i, j) = max& S(i ", j) "$ ' ( S(i, j ") "$ BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 - γ Fill in the DP matrix!! G G for match, - for mismatch, -5 for space BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 BB 444/544 Fall 7 Dobbs

3 & BLS 9/7/7 3- alculate Score S(N,M) of Optimal lignment - for Global lignment G G + for match, - for mismatch, -5 for space 3- alculate Score S(N,M) of Optimal lignment - for Global lignment G G + for match, - for mismatch, -5 for space BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 3 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/ race back through matrix to recover optimal alignment(s) that generated the optimal score How? "Repeat" alignment calculations in reverse order, starting at from position with highest score and following path, position by position, back through matrix Result? Optimal alignment(s) of sequences raceback - for Global lignment Start in lower right corner & trace back to upper left Each arrow introduces one character at end of alignment: horizontal move puts a gap in left sequence vertical move puts a gap in top sequence diagonal move uses one character from each sequence BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 5 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 6 raceback to Recover lignment raceback to Recover lignment G G G G an have > optimal alignment; this example has Where did red arrows come from? BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 7 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 8 BB 444/544 Fall 7 Dobbs 3

4 & BLS 9/7/7 raceback to Recover lignment G G raceback to Recover lignment G G + for match, - for mismatch, -5 for space Where did 33 come from? Match =, so 33-= 3 Must have come from diagonal Where did 3 come from? (Not a match) Left? 8-5= 3; Diag? 3-= ; op? 8-5= 3 + for match, - for mismatch, -5 for space Where did 8 come from? wo possibilities: 3-5= 8 or -=8 hen, follow both paths BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 9 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 raceback to Recover lignment G G raceback to Recover lignment G G with - with with with - G with with with G with - with with - with with with G with - with with G with - with Great - but what are the alignments? # Great - but what are the alignments? # BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 What are the Global lignments with Optimal Score = 33? What are the Global lignments with Optimal Score = 33? op: G G Left: op: G G Left: : - G G : - G G - - : - G G : - G G - - horizontal move puts a gap in left sequence vertical move puts a gap in top sequence diagonal move uses one character from each sequence horizontal move puts a gap in left sequence vertical move puts a gap in top sequence diagonal move uses one character from each sequence BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 3 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 4 BB 444/544 Fall 7 Dobbs 4

5 & BLS 9/7/7 heck raceback? G G d v d h d d d h d h d BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 5 horizontal move puts a gap in left sequence vertical move puts a gap in top sequence diagonal move uses one character from each sequence Local lignment: Motivation o "ignore" stretches of non-coding DN: Non-coding regions (if "non-functional") are more likely to contain mutations than coding regions Local alignment between two protein-encoding sequences is likely to be between two exons o locate protein domains or motifs: Proteins with similar structures and/or similar functions but from different species (for example), often exhibit local sequence similarities Local sequence similarities may indicate functional modules Non-coding - "not encoding protein" Exons - "protein-encoding" parts of genes vs Introns = "intervening sequences" - segments of eukaryotic genes that "interrupt" exons Introns are transcribed into RN, but are later removed by RN processing & are not translated into protein BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 6 Local lignment: Example Local lignment: lgorithm G G G G G Match: + Mismatch or space: - S [i, j] = Score for optimally aligning a suffix of X with a suffix of Y Initialize top row & leftmost column of matrix with "" Best local alignment: G G G G G - Score = 5 Recall: for Global lignment, S [i, j] = Score for optimally aligning a prefix of X with a prefix of Y Initialize top row & leftmost column of with gap penalty BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 7 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 8 Filling in DP Matrix for Local lignment G G + for a match, - for a mismatch, -5 for a space raceback - for Local lignment G G + for a match, - for a mismatch, -5 for a space BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 9 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 3 BB 444/544 Fall 7 Dobbs 5

6 & BLS 9/7/7 : : 3: 4: What are the 4 Local lignments with Optimal Score =? G G G G G G G G G G Some Results re: lignment lgorithms (for oms, pre & Math types!) Most pairwise sequence alignment problems can be solved in O(mn) time Space requirement can be reduced to O(m+n), while keeping run-time fixed [Myers88] Highly similar sequences can be aligned in O (dn) time, where d measures the distance between the sequences [Landau86] BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 3 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 3 ffine Gap Penalty Functions Methods ffine Gap Penalties = Differential Gap Penalties used to reflect cost differences between opening a gap and extending an existing gap otal Gap Penalty is linear function of gap length: W = γ + δ X (k - ) where γ = gap opening penalty δ = gap extension penalty k = length of gap an also be solved in O(nm) time using DP Sometimes, a onstant Gap Penalty is used, but it is usually least realistic than the ffine Gap Penalty Global and Local lignment lignment lgorithms Dot Matrix Method Dynamic Programming Method - cont Gap penalities DP for Global lignment DP for Local lignment Scoring Matrices mino acid scoring matrices PM BLOSUM omparisons between PM & BLOSUM Statistical Significance of Sequence lignment BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 33 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 34 "Scoring" or "Substitution" Matrices Major types for mino cids: PM & BLOSUM PM = Point ccepted Mutation relies on "evolutionary model" based on observed differences in alignments of closely related proteins BLOSUM = BLOck SUbstitution Matrix based on % aa substitutions observed in blocks of conserved sequences within evolutionarily divergent proteins PM Matrix PM = Point ccepted Mutation relies on "evolutionary model" based on observed differences in closely related proteins Model includes defined rate for each type of sequence change Suffix number (n) reflects amount of "time" passed: rate of expected mutation if n% of amino acids had changed PM - for less divergent sequences (shorter time) PM5 - for more divergent sequences (longer time) BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 35 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 36 BB 444/544 Fall 7 Dobbs 6

7 & BLS 9/7/7 BLOSUM Matrix PM5 vs BLOSUM 6 BLOSUM = BLOck SUbstitution Matrix based on % aa substitutions observed in blocks of conserved sequences within evolutionarily divergent proteins Doesn't rely on a specific evolutionary model Suffix number (n) reflects expected similarity: average % aa identity in the MS from which the matrix was generated BLOSUM45 - for more divergent sequences BLOSUM6 - for less divergent sequences See ext Fig 3.5 = PM5 Fig 3.6= BLOSUM6 Usually only / of matrix is displayed (it is symmetric) Here: s(a,b) corresponds to score of aligning character a with character b BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 37 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 38 Which is Better? PM or BLOSUM PM matrices derived from evolutionary model often used in reconstructing phylogenetic trees - but, not very good for highly divergent sequences BLOSUM matrices based on direct observations more 'realistic" - and outperform PM matrices in terms of accuracy in local alignment Which ype of Matrix Should You Use? Several other types of matrices available: Gonnet & Jones-aylor-hornton: very robust in tree construction "Best" matrix depends on task: different matrices for different applications DVIE: if unsure, try several different matrices & choose the one that gives best alignment result BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 39 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 4 Sequence lignment Statistics Distribution of similarity scores in sequence alignment is not a simple "normal" distribution "Gumble extreme value distribution" - a highly skewed normal distribution with a long tail How ssess Statistical Significance of an lignment? ompare score of an alignment with distribution of scores of alignments for many 'randomized' (shuffled) versions of the original sequence If score is in extreme margin, then unlikely due to random chance P-value = probability that original alignment is due to random chance (lower P is better) P = sequences have clear homology P > - no better than random heck out: PRSS (Probability of Random Shuffles) BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 4 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 4 BB 444/544 Fall 7 Dobbs 7

8 & BLS 9/7/7 SEION II hp 4- Database Similarity Searching SEQUENE LIGNMEN Xiong: hp 4 Database Similarity Searching Unique Requirements of Database Searching Heuristic Database Searching Basic Local lignment Search ool (BLS) FS omparison of FS and BLS Database Searching with Smith-Waterman Method Exhaustive vs Heuristic Methods Exhaustive - tests every possible solution guaranteed to give best answer (identifies optimal solution) can be very time/space intensive! e.g., Dynamic Programming as in Smith-Waterman algorithm Heuristic - does NO test every possibility no guarantee that answer is best (but, often can identify optimal solution) sacrifices accuracy (potentially) for speed uses "rules of thumb" or "shortcuts" e.g., BLS & FS BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 43 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 44 SEPS: oday's Lab: focus on BLS Basic Local lignment Search ool. reate list of very possible "word" (e.g., 3- letters) from query sequence. Search database to identify sequences that contain matching words 3. Score match of word with sequence, using a substitution matrix 4. Extend match (seed) in both directions, while calculating alignment score at each step 5. ontinue extension until score drops below a threshold (due to mismatches) 6. ontiguous aligned segment pair (no gaps) is called: High Scoring Segment Pair (HSP) Lab3: focus on BLS Basic Local lignment Search ool BLS Results? Original version of BLS? List of HSPs = Maximum Scoring Pairs More recent, improved version of BLS? llows gaps: Gapped lignment How? llows score to drop below threshold, (but only temporarily) BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 45 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 46 BLS - a few details Developed by Stephen ultschul at NBI in 99 Word length? ypically: 3 aa for protein sequence nt for DN sequence Substitution matrix? Default is BLOSUM6 an change under lgorithm Parameters hoose other BLOSUM or PM matrices Stop-Extension hreshold? ypically: for proteins for DN BLS - Statistical Significance?. E-value: E = m x n x P m = total number of residues in database n = number of residues in query sequence P = probability that an HSP is result of random chance lower E-value, less likely to result from random change, thus higher significance. Bit Score: S' normalized score, to account for differences in sequence length & size of database 3. Low omplexity Masking remove repeats that confound scoring BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 47 BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 48 BB 444/544 Fall 7 Dobbs 8

9 & BLS 9/7/7 BLS - a Family of Programs: Several different BLS "flavors" BLSN - BLSP - BLSX - BLSN - BLSN - BB 444/544 F7 ISU Dobbs #8 - Finish DP, Scoring Matrices, Stats & BLS 9/7/7 49 BB 444/544 Fall 7 Dobbs 9

Global vs Local lignment - example Global alignment GGGG -G---G--G GGGG -GG-----G 1 = GGGG 2 = GGG Local alignment GGGG -GG-G---- Which is better? Glo

Global vs Local lignment - example Global alignment GGGG -G---G--G GGGG -GG-----G 1 = GGGG 2 = GGG Local alignment GGGG -GG-G---- Which is better? Glo BB 444/544 Lecture 7 Still more: Dynamic Programming Global vs Local lignment Scoring Matrices & lignment Statistics BLS #7_Sept5 Required Reading (before lecture) Last week: - for Lectures 4-7 Pairwise

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

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

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

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

穨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

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

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

More information

Microsoft PowerPoint - NCBA_Cattlemens_College_Darrh_B

Microsoft PowerPoint - NCBA_Cattlemens_College_Darrh_B Introduction to Genetics Darrh Bullock University of Kentucky The Model Trait = Genetics + Environment Genetics Additive Predictable effects that get passed from generation to generation Non-Additive Primarily

More information

Microsoft PowerPoint - 04 Models of Amino Acid and Codon Substitution.ppt

Microsoft PowerPoint - 04 Models of Amino Acid and Codon Substitution.ppt Nei and Gojobori(986) ATG GTC ACT CAT TTA ATA AAT CGG ATA TAA M V T H L I N R I * ATG GTT ACG CAA CTC ATG ACG AGG ATT TGA M V T Q L M T R I * Pathway I: Pathway II: Pathway I: Pathway II: AAT(N) ACT(T)

More information

coverage2.ppt

coverage2.ppt Satellite Tool Kit STK/Coverage STK 82 0715 010-68745117 1 Coverage Definition Figure of Merit 2 STK Basic Grid Assets Interval Description 3 Grid Global Latitude Bounds Longitude Lines Custom Regions

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

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

Fuzzy Highlight.ppt

Fuzzy Highlight.ppt Fuzzy Highlight high light Openfind O(kn) n k O(nm) m Knuth O(n) m Knuth Unix grep regular expression exact match Yahoo agrep fuzzy match Gais agrep Openfind gais exact match fuzzy match fuzzy match O(kn)

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

(baking powder) 1 ( ) ( ) 1 10g g (two level design, D-optimal) 32 1/2 fraction Two Level Fractional Factorial Design D-Optimal D

(baking powder) 1 ( ) ( ) 1 10g g (two level design, D-optimal) 32 1/2 fraction Two Level Fractional Factorial Design D-Optimal D ( ) 4 1 1 1 145 1 110 1 (baking powder) 1 ( ) ( ) 1 10g 1 1 2.5g 1 1 1 1 60 10 (two level design, D-optimal) 32 1/2 fraction Two Level Fractional Factorial Design D-Optimal Design 1. 60 120 2. 3. 40 10

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 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

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl SKLOIS (Pseudo) Preimage Attack on Reduced-Round Grøstl Hash Function and Others Shuang Wu, Dengguo Feng, Wenling Wu, Jian Guo, Le Dong, Jian Zou March 20, 2012 Institute. of Software, Chinese Academy

More information

Introduction to Hamilton-Jacobi Equations and Periodic Homogenization

Introduction to Hamilton-Jacobi Equations  and Periodic Homogenization Introduction to Hamilton-Jacobi Equations and Periodic Yu-Yu Liu NCKU Math August 22, 2012 Yu-Yu Liu (NCKU Math) H-J equation and August 22, 2012 1 / 15 H-J equations H-J equations A Hamilton-Jacobi equation

More information

Microsoft PowerPoint - CH 04 Techniques of Circuit Analysis

Microsoft PowerPoint - CH 04 Techniques of Circuit Analysis Chap. 4 Techniques of Circuit Analysis Contents 4.1 Terminology 4.2 Introduction to the Node-Voltage Method 4.3 The Node-Voltage Method and Dependent Sources 4.4 The Node-Voltage Method: Some Special Cases

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

<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

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

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

5 1 linear 5 circular 2 6 2003 10 3000 2 400 ~ 500 4500 7 2013 3500 400 ~ 500 8 3 1900 1. 2 9 1 65

5 1 linear 5 circular 2 6 2003 10 3000 2 400 ~ 500 4500 7 2013 3500 400 ~ 500 8 3 1900 1. 2 9 1 65 2014 2 43 EXAMINATIONS RESEARCH No. 2 2014 General No. 43 李 迅 辉 随 着 新 课 程 改 革 的 不 断 深 入, 教 学 理 念 逐 步 更 新, 学 生 的 英 语 水 平 也 在 逐 渐 提 高, 但 沿 用 多 年 的 高 考 英 语 书 面 表 达 的 评 分 标 准 并 没 有 与 时 俱 进, 已 经 不 能 完 全 适 应

More information

國 史 館 館 刊 第 23 期 Chiang Ching-kuo s Educational Innovation in Southern Jiangxi and Its Effects (1941-1943) Abstract Wen-yuan Chu * Chiang Ching-kuo wa

國 史 館 館 刊 第 23 期 Chiang Ching-kuo s Educational Innovation in Southern Jiangxi and Its Effects (1941-1943) Abstract Wen-yuan Chu * Chiang Ching-kuo wa 國 史 館 館 刊 第 二 十 三 期 (2010 年 3 月 ) 119-164 國 史 館 1941-1943 朱 文 原 摘 要 1 關 鍵 詞 : 蔣 經 國 贛 南 學 校 教 育 社 會 教 育 掃 盲 運 動 -119- 國 史 館 館 刊 第 23 期 Chiang Ching-kuo s Educational Innovation in Southern Jiangxi and

More information

untitled

untitled MSE200 Lecture 10 (CH. 7.3-7.4) Mechanical Properties II Instructor: Yuntian Zhu Objectives/outcoes: You will learn the following: Crack growth rate during fatigue. Fatigue life of cracked coponents. Stages

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

<4D6963726F736F667420576F7264202D20B5DAC8FDB7BDBE57C9CFD6A7B8B6D6AEB7A8C2C98696EE7DCCBDBEBF2E646F63>

<4D6963726F736F667420576F7264202D20B5DAC8FDB7BDBE57C9CFD6A7B8B6D6AEB7A8C2C98696EE7DCCBDBEBF2E646F63> 題 目 : 第 三 方 網 上 支 付 之 法 律 問 題 探 究 Title:A study on legal issues of the third-party online payment 姓 名 Name 學 號 Student No. 學 院 Faculty 課 程 Program 專 業 Major 指 導 老 師 Supervisor 日 期 Date : 王 子 瑜 : 1209853J-LJ20-0021

More information

10384 19020101152519 UDC Rayleigh Quasi-Rayleigh Method for computing eigenvalues of symmetric tensors 2 0 1 3 2 0 1 3 2 0 1 3 2013 , 1. 2. [4], [27].,. [6] E- ; [7], Z-. [15]. Ramara G. kolda [1, 2],

More information

untitled

untitled LBS Research and Application of Location Information Management Technology in LBS TP319 10290 UDC LBS Research and Application of Location Information Management Technology in LBS , LBS PDA LBS

More information

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

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

More information

硕 士 学 位 论 文 论 文 题 目 : 北 岛 诗 歌 创 作 的 双 重 困 境 专 业 名 称 : 中 国 现 当 代 文 学 研 究 方 向 : 中 国 新 诗 研 究 论 文 作 者 : 奚 荣 荣 指 导 老 师 : 姜 玉 琴 2014 年 12 月

硕 士 学 位 论 文 论 文 题 目 : 北 岛 诗 歌 创 作 的 双 重 困 境 专 业 名 称 : 中 国 现 当 代 文 学 研 究 方 向 : 中 国 新 诗 研 究 论 文 作 者 : 奚 荣 荣 指 导 老 师 : 姜 玉 琴 2014 年 12 月 硕 士 学 位 论 文 论 文 题 目 : 北 岛 诗 歌 创 作 的 双 重 困 境 专 业 名 称 : 中 国 现 当 代 文 学 研 究 方 向 : 中 国 新 诗 研 究 论 文 作 者 : 奚 荣 荣 指 导 老 师 : 姜 玉 琴 2014 年 12 月 致 谢 文 学 是 我 们 人 类 宝 贵 的 精 神 财 富 两 年 半 的 硕 士 学 习 让 我 进 一 步 接 近 文 学,

More information

<4D6963726F736F667420576F7264202D203338B4C12D42A448A4E5C3C0B34EC3FE2DAB65ABE1>

<4D6963726F736F667420576F7264202D203338B4C12D42A448A4E5C3C0B34EC3FE2DAB65ABE1> ϲ ฯ र ቑ ጯ 高雄師大學報 2015, 38, 63-93 高雄港港史館歷史變遷之研究 李文環 1 楊晴惠 2 摘 要 古老的建築物往往承載許多回憶 也能追溯某些歷史發展的軌跡 位於高雄市蓬 萊路三號 現為高雄港港史館的紅磚式建築 在高雄港三號碼頭作業區旁的一片倉庫 群中 格外搶眼 這棟建築建成於西元 1917 年 至今已將近百年 不僅躲過二戰戰 火無情轟炸 並保存至今 十分可貴 本文透過歷史考證

More information

2015 Chinese FL Written examination

2015 Chinese FL Written examination Victorian Certificate of Education 2015 SUPERVISOR TO ATTACH PROCESSING LABEL HERE Letter STUDENT NUMBER CHINESE FIRST LANGUAGE Written examination Monday 16 November 2015 Reading time: 11.45 am to 12.00

More information

Microsoft Word doc

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

More information

TA-research-stats.key

TA-research-stats.key Research Analysis MICHAEL BERNSTEIN CS 376 Last time What is a statistical test? Chi-square t-test Paired t-test 2 Today ANOVA Posthoc tests Two-way ANOVA Repeated measures ANOVA 3 Recall: hypothesis testing

More information

高中英文科教師甄試心得

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

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

标题

标题 第1期 阅江学刊 2016 年 2 月 Yuejiang Academic Journal No 1 Feb 2016 审美文化研究 植物审美专辑 论 红楼梦 中的桂花 俞香顺 南京师范大学 南京 210097 摘要 红楼梦 继承了桂花的原型意义 比德 思路 用桂花形容袭人的性格 还使用了 蟾桂 折桂 两个与桂花有关的典故 红楼梦 中出现的桂花既有秋桂 也有南方特有的春 桂 红楼梦 中有两次赏桂活动

More information

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

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

More information

Microsoft Word - ChineseSATII .doc

Microsoft Word - ChineseSATII .doc 中 文 SAT II 冯 瑶 一 什 么 是 SAT II 中 文 (SAT Subject Test in Chinese with Listening)? SAT Subject Test 是 美 国 大 学 理 事 会 (College Board) 为 美 国 高 中 生 举 办 的 全 国 性 专 科 标 准 测 试 考 生 的 成 绩 是 美 国 大 学 录 取 新 生 的 重 要 依

More information

<4D F736F F F696E74202D20A8E2A9A4AA41B0C8B77EB654A9F6B67DA9F1ABE1A141BB4FC657AAF7BFC4AAF7BFC4AA41B0C8B77EA4A7B0D3BEF7BB50AC44BED420A6BFACB C >

<4D F736F F F696E74202D20A8E2A9A4AA41B0C8B77EB654A9F6B67DA9F1ABE1A141BB4FC657AAF7BFC4AAF7BFC4AA41B0C8B77EA4A7B0D3BEF7BB50AC44BED420A6BFACB C > 兩 岸 服 務 業 貿 易 開 放 後, 臺 灣 金 融 服 務 業 之 商 機 與 挑 戰 Part I: 兩 岸 服 務 業 貿 易 開 放 Chung Hua Shen 沈 中 華 Department of Finance National Taiwan Univeristy Chung Hua Shen 1 Chung Hua Shen 2 台 資 銀 行 赴 中 國 大 陸 發 展 歷

More information

考試學刊第10期-內文.indd

考試學刊第10期-內文.indd misconception 101 Misconceptions and Test-Questions of Earth Science in Senior High School Chun-Ping Weng College Entrance Examination Center Abstract Earth Science is a subject highly related to everyday

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

K301Q-D VRT中英文说明书141009

K301Q-D VRT中英文说明书141009 THE INSTALLING INSTRUCTION FOR CONCEALED TANK Important instuction:.. Please confirm the structure and shape before installing the toilet bowl. Meanwhile measure the exact size H between outfall and infall

More information

TX-NR3030_BAS_Cs_ indd

TX-NR3030_BAS_Cs_ indd TX-NR3030 http://www.onkyo.com/manual/txnr3030/adv/cs.html Cs 1 2 3 Speaker Cable 2 HDMI OUT HDMI IN HDMI OUT HDMI OUT HDMI OUT HDMI OUT 1 DIGITAL OPTICAL OUT AUDIO OUT TV 3 1 5 4 6 1 2 3 3 2 2 4 3 2 5

More information

第16卷 第2期 邯郸学院学报 2006年6月

第16卷 第2期                                邯郸学院学报                            2006年6月 第 18 卷 第 4 期 邯 郸 学 院 学 报 2008 年 12 月 Vol.18 No.4 Journal of Handan College Dec. 2008 赵 文 化 研 究 论 赵 都 邯 郸 与 赵 国 都 城 研 究 问 题 朱 士 光 ( 陕 西 师 范 大 学 历 史 地 理 研 究 所, 陕 西 西 安 710062) 摘 要 : 战 国 七 雄 之 一 的 赵 国 都 城

More information

2. 佔 中 對 香 港 帶 來 以 下 影 響 : 正 面 影 響 - 喚 起 市 民 對 人 權 及 ( 專 制 ) 管 治 的 關 注 和 討 論 o 香 港 市 民 總 不 能 一 味 認 命, 接 受 以 後 受 制 於 中 央, 沒 有 機 會 選 出 心 中 的 理 想 特 首 o 一

2. 佔 中 對 香 港 帶 來 以 下 影 響 : 正 面 影 響 - 喚 起 市 民 對 人 權 及 ( 專 制 ) 管 治 的 關 注 和 討 論 o 香 港 市 民 總 不 能 一 味 認 命, 接 受 以 後 受 制 於 中 央, 沒 有 機 會 選 出 心 中 的 理 想 特 首 o 一 220 參 考 答 案 專 題 1. 公 民 抗 命 與 革 命 的 異 同 如 下 : 公 民 抗 命 革 命 相 同 之 處 目 的 兩 種 行 動 都 是 為 了 抗 拒 當 權 政 府 不 受 歡 迎 的 決 定 及 政 策 方 法 兩 者 都 是 在 嘗 試 其 他 合 法 的 抗 爭 行 動 後, 無 可 奈 何 的 最 後 手 段 不 同 之 處 目 的 只 是 令 政 府 的 某 些

More information

Microsoft Word - HSK使用手册.doc

Microsoft Word - HSK使用手册.doc HSK / New HSK Online Mock Test/Practices Student User Manual Table of contents New User... 2 1.1 Register... 2 1.2 Login... 3 1.3 Homepage... 4 Free Test... 4 2.1 Start... 5 2.2 Results... 6 Mock Test...

More information

Microsoft Word - p11.doc

Microsoft Word - p11.doc () 11-1 ()Classification Analysis( ) m() p.d.f prior (decision) (loss function) Bayes Risk for any decision d( ) posterior risk posterior risk Posterior prob. j (uniform prior) where Mahalanobis Distance(M-distance)

More information

Microsoft Word - KSAE06-S0262.doc

Microsoft Word - KSAE06-S0262.doc Stereo Vision based Forward Collision Warning and Avoidance System Yunhee LeeByungjoo KimHogi JungPaljoo Yoon Central R&D Center, MANDO Corporation, 413-5, Gomae-Ri, Gibeung-Eub, Youngin-Si, Kyonggi-Do,

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

untitled

untitled and Due Diligence M&A in China Prelude and Due Diligence A Case For Proper A Gentleman s Agreement? 1 Respect for the Rule of Law in China mandatory under law? CRITICAL DOCUMENTS is driven by deal structure:

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

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

Shanghai International Studies University THE STUDY AND PRACTICE OF SITUATIONAL LANGUAGE TEACHING OF ADVERB AT BEGINNING AND INTERMEDIATE LEVEL A Thes

Shanghai International Studies University THE STUDY AND PRACTICE OF SITUATIONAL LANGUAGE TEACHING OF ADVERB AT BEGINNING AND INTERMEDIATE LEVEL A Thes 上 海 外 国 语 大 学 硕 士 学 位 论 文 对 外 汉 语 初 中 级 副 词 情 境 教 学 研 究 与 实 践 院 系 : 国 际 文 化 交 流 学 院 学 科 专 业 : 汉 语 国 际 教 育 姓 名 : 顾 妍 指 导 教 师 : 缪 俊 2016 年 5 月 Shanghai International Studies University THE STUDY AND PRACTICE

More information

Microsoft Word - HC20138_2010.doc

Microsoft Word - HC20138_2010.doc Page: 1 of 7 Date: April 26, 2010 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified by the vendor as:

More information

Microsoft Word - 先玉335 copy.doc

Microsoft Word - 先玉335 copy.doc http://news.xinhuanet.com/herald/2010-09/21/c_13522940.htm 2010-09-21 12:11:10 335 335 PH4CV 3 10 300 50 20 100 5 8 5 8 20 16 10 4 10 1/3 4 3 4 2 22 8 60 50 6 13 7 21 21 13 1 13 10 2 9 100 80 10 70 335

More information

WTO

WTO 10384 200015128 UDC Exploration on Design of CIB s Human Resources System in the New Stage (MBA) 2004 2004 2 3 2004 3 2 0 0 4 2 WTO Abstract Abstract With the rapid development of the high and new technique

More information

Microsoft PowerPoint - ~6631638.ppt

Microsoft PowerPoint - ~6631638.ppt Fixed Income 1 Why Investing in bonds? 2 CPY Fixed Income Department Overview Professional and experienced team Top-notch client-focused services Offering diversified fixed income products Unique short

More information

致 谢 开 始 这 篇 致 谢 的 时 候, 以 为 这 是 最 轻 松 最 愉 快 的 部 分, 而 此 时 心 头 却 充 满 了 沉 甸 甸 的 回 忆 和 感 恩, 一 时 间 竟 无 从 下 笔 虽 然 这 远 不 是 一 篇 完 美 的 论 文, 但 完 成 这 篇 论 文 要 感 谢

致 谢 开 始 这 篇 致 谢 的 时 候, 以 为 这 是 最 轻 松 最 愉 快 的 部 分, 而 此 时 心 头 却 充 满 了 沉 甸 甸 的 回 忆 和 感 恩, 一 时 间 竟 无 从 下 笔 虽 然 这 远 不 是 一 篇 完 美 的 论 文, 但 完 成 这 篇 论 文 要 感 谢 中 国 科 学 技 术 大 学 博 士 学 位 论 文 论 文 课 题 : 一 个 新 型 简 易 电 子 直 线 加 速 器 的 关 键 技 术 研 究 学 生 姓 名 : 导 师 姓 名 : 单 位 名 称 : 专 业 名 称 : 研 究 方 向 : 完 成 时 间 : 谢 家 麟 院 士 王 相 綦 教 授 国 家 同 步 辐 射 实 验 室 核 技 术 及 应 用 加 速 器 物 理 2006

More information

ebook14-4

ebook14-4 4 TINY LL(1) First F o l l o w t o p - d o w n 3 3. 3 backtracking parser predictive parser recursive-descent parsing L L ( 1 ) LL(1) parsing L L ( 1 ) L L ( 1 ) 1 L 2 L 1 L L ( k ) k L L ( 1 ) F i r s

More information

spss.doc

spss.doc SPSS 8 8.1 K-Means Cluster [ 8-1] 1962 1988 8-1 2 5 31 3 7 20 F2-F3 2 3 F3-F4 3 4 109 8 8-1 2 3 2 3 F2-F3 F3-F4 1962 344 3333 29 9 9.69 1.91 1963 121 1497 27 19 12.37 1.34 1964 187 1813 32 18 9.70 1.06

More information

<4D6963726F736F667420576F7264202D2031322D312DC2B2B4C2AB47A16DC5AAAED1B0F3B5AAB0DDA144A7B5B867A16EB2A4B1B4A277A548AED1A4A4BEC7A5CDB0DDC344ACB0A8D2>

<4D6963726F736F667420576F7264202D2031322D312DC2B2B4C2AB47A16DC5AAAED1B0F3B5AAB0DDA144A7B5B867A16EB2A4B1B4A277A548AED1A4A4BEC7A5CDB0DDC344ACB0A8D2> 弘 光 人 文 社 會 學 報 第 12 期 簡 朝 亮 讀 書 堂 答 問. 孝 經 略 探 以 書 中 學 生 問 題 為 例 趙 詠 寬 彰 化 師 範 大 學 國 文 學 系 博 士 班 研 究 生 摘 要 孝 經 是 十 三 經 中 字 數 最 少 的 經 典, 然 實 踐 性 高, 受 歷 來 帝 王 重 視 但 在 清 末 民 初, 傳 統 思 維 受 到 挑 戰, 被 視 為 維 護

More information

Stochastic Processes (XI) Hanjun Zhang School of Mathematics and Computational Science, Xiangtan University 508 YiFu Lou talk 06/

Stochastic Processes (XI) Hanjun Zhang School of Mathematics and Computational Science, Xiangtan University 508 YiFu Lou talk 06/ Stochastic Processes (XI) Hanjun Zhang School of Mathematics and Computational Science, Xiangtan University hjzhang001@gmail.com 508 YiFu Lou talk 06/04/2010 - Page 1 Outline 508 YiFu Lou talk 06/04/2010

More information

國 立 政 治 大 學 教 育 學 系 2016 新 生 入 學 手 冊 目 錄 表 11 國 立 政 治 大 學 教 育 學 系 博 士 班 資 格 考 試 抵 免 申 請 表... 46 論 文 題 目 申 報 暨 指 導 教 授... 47 表 12 國 立 政 治 大 學 碩 博 士 班 論

國 立 政 治 大 學 教 育 學 系 2016 新 生 入 學 手 冊 目 錄 表 11 國 立 政 治 大 學 教 育 學 系 博 士 班 資 格 考 試 抵 免 申 請 表... 46 論 文 題 目 申 報 暨 指 導 教 授... 47 表 12 國 立 政 治 大 學 碩 博 士 班 論 國 立 政 治 大 學 教 育 學 系 2016 新 生 入 學 手 冊 目 錄 一 教 育 學 系 簡 介... 1 ( 一 ) 成 立 時 間... 1 ( 二 ) 教 育 目 標 與 發 展 方 向... 1 ( 三 ) 授 課 師 資... 2 ( 四 ) 行 政 人 員... 3 ( 五 ) 核 心 能 力 與 課 程 規 劃... 3 ( 六 ) 空 間 環 境... 12 ( 七 )

More information

Microsoft Word - CX VMCO 3 easy step v1.doc

Microsoft Word - CX VMCO 3 easy step v1.doc Abacus Fully Automated Process of VMCO on CX, KA, CPH & KAH 16 Nov 2009 To streamline the VMCO handling on CX, KA, CPH & KAH, Abacus is pleased to inform you that manual submission of VMCO to CX/KA/CPH/KAH

More information

, : III

, : III 河北师范大学硕士学位论文石家庄公共卫生间设计研究姓名 : 武秀娥申请学位级别 : 硕士专业 : 美术学指导教师 : 张爱民 20100406 , : III Abstract Rapid economic development for the city's construction and development, cities around the country to the city in

More information

KillTest 质量更高 服务更好 学习资料 半年免费更新服务

KillTest 质量更高 服务更好 学习资料   半年免费更新服务 KillTest 质量更高 服务更好 学习资料 http://www.killtest.cn 半年免费更新服务 Exam : ICDL-Excel Title : The ICDL L4 excel exam Version : DEMO 1 / 11 1. Which one of the following formulas would be appropriate to calculate the

More information

國 立 屏 東 教 育 大 學 中 國 語 文 學 系 碩 士 班 碩 士 論 文 國 小 國 語 教 科 書 修 辭 格 分 析 以 南 一 版 為 例 指 導 教 授 : 柯 明 傑 博 士 研 究 生 : 鄺 綺 暖 撰 中 華 民 國 一 百 零 二 年 七 月 謝 辭 寫 作 論 文 的 日 子 終 於 畫 下 了 句 點, 三 年 前 懷 著 對 文 學 的 熱 愛, 報 考 了 中

More information

Windows XP

Windows XP Windows XP What is Windows XP Windows is an Operating System An Operating System is the program that controls the hardware of your computer, and gives you an interface that allows you and other programs

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

课题调查对象:

课题调查对象: 1 大 陆 地 方 政 府 大 文 化 管 理 职 能 与 机 构 整 合 模 式 比 较 研 究 武 汉 大 学 陈 世 香 [ 内 容 摘 要 ] 迄 今 为 止, 大 陆 地 方 政 府 文 化 管 理 体 制 改 革 已 经 由 试 点 改 革 进 入 到 全 面 推 行 阶 段 本 文 主 要 通 过 结 合 典 型 调 查 法 与 比 较 研 究 方 法, 对 已 经 进 行 了 政 府

More information

1 SIGMA Lab Sydney IntelliGent MultimediA Laboratory Electrical and Information Engineering department EIE Ph.D. M.Phil. 1.QS (Associate Profess

1 SIGMA Lab Sydney IntelliGent MultimediA Laboratory Electrical and Information Engineering department EIE Ph.D. M.Phil. 1.QS (Associate Profess SIGMA Lab October 31, 2018 1 1. 2. 3. 4. Q&A (a) (b) SIGMA Lab (c) (d) 5. (a) (b) i. ii. funding iii. CSC (c) 6. 1 1 1 SIGMA Lab Sydney IntelliGent MultimediA Laboratory Electrical and Information Engineering

More information

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

國立中山大學學位論文典藏.PDF ( ) 2-1 p33 3-1 p78 3-2 p79 3-3 p80 3-4 p90 4-1 p95 4-2 p97 4-3 p100 4-4 p103 4-5 p105 4-6 p107 4-7 p108 4-8 p108 4-9 p112 4-10 p114 4-11 p117 4-12 p119 4-13 p121 4-14 p123 4-15 p124 4-16 p131 4-17 p133

More information

國家圖書館典藏電子全文

國家圖書館典藏電子全文 i ii Abstract The most important task in human resource management is to encourage and help employees to develop their potential so that they can fully contribute to the organization s goals. The main

More information

热设计网

热设计网 例 例 Agenda Popular Simulation software in PC industry * CFD software -- Flotherm * Advantage of Flotherm Flotherm apply to Cooler design * How to build up the model * Optimal parameter in cooler design

More information

Chinese Journal of Applied Probability and Statistics Vol.25 No.4 Aug (,, ;,, ) (,, ) 应用概率统计 版权所有, Zhang (2002). λ q(t)

Chinese Journal of Applied Probability and Statistics Vol.25 No.4 Aug (,, ;,, ) (,, ) 应用概率统计 版权所有, Zhang (2002). λ q(t) 2009 8 Chinese Journal of Applied Probability and Statistics Vol.25 No.4 Aug. 2009,, 541004;,, 100124),, 100190), Zhang 2002). λ qt), Kolmogorov-Smirov, Berk and Jones 1979). λ qt).,,, λ qt),. λ qt) 1,.

More information

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

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

More information

Male Circumcision - Traditional Chinese

Male Circumcision - Traditional Chinese Male Circumcision Male circumcision is the removal of the foreskin around the end of the penis. If you decide on circumcision, your baby s doctor will do it in the hospital s nursery. If your baby is small

More information

168 健 等 木醋对几种小浆果扦插繁殖的影响 第1期 the view of the comprehensive rooting quality, spraying wood vinegar can change rooting situation, and the optimal concent

168 健 等 木醋对几种小浆果扦插繁殖的影响 第1期 the view of the comprehensive rooting quality, spraying wood vinegar can change rooting situation, and the optimal concent 第 31 卷 第 1 期 2013 年 3 月 经 济 林 研 究 Nonwood Forest Research Vol. 31 No.1 Mar. 2013 木醋对几种小浆果扦插繁殖的影响 健 1,2 杨国亭 1 刘德江 2 (1. 东北林业大学 生态研究中心 黑龙江 哈尔滨 150040 2. 佳木斯大学 生命科学学院 黑龙江 佳木斯 154007) 摘 要 为了解决小浆果扦插繁殖中生根率及成活率低等问题

More information

2005 Research on the Lucre, Risk, and Development of Native Bankcard Business 2005 3 2003 6.5 45 18, WTO SWOT I Abstract Research on the Lucre, Risk, and Development of Native Bankcard Business Research

More information

Male Circumcision - Simplified Chinese

Male Circumcision - Simplified Chinese Male Circumcision Male circumcision is the removal of the foreskin around the end of the penis. If you decide on circumcision, your baby s doctor will do it in the hospital s nursery. If your baby is small

More information

東莞工商總會劉百樂中學

東莞工商總會劉百樂中學 /2015/ 頁 (2015 年 版 ) 目 錄 : 中 文 1 English Language 2-3 數 學 4-5 通 識 教 育 6 物 理 7 化 學 8 生 物 9 組 合 科 學 ( 化 學 ) 10 組 合 科 學 ( 生 物 ) 11 企 業 會 計 及 財 務 概 論 12 中 國 歷 史 13 歷 史 14 地 理 15 經 濟 16 資 訊 及 通 訊 科 技 17 視 覺

More information

天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 百 善 孝 為 先? 奉 養 父 母 與 接 受 子 女 奉 養 之 態 度 及 影 響 因 素 : 跨 時 趨 勢 分 析 Changes in attitude toward adult children's responsibilit

天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 百 善 孝 為 先? 奉 養 父 母 與 接 受 子 女 奉 養 之 態 度 及 影 響 因 素 : 跨 時 趨 勢 分 析 Changes in attitude toward adult children's responsibilit 天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 指 導 老 師 : 翁 志 遠 百 善 孝 為 先? 奉 養 父 母 與 接 受 子 女 奉 養 之 態 度 及 影 響 因 素 : 跨 時 趨 勢 分 析 Changes in attitude toward adult children's responsibility to financially support and to live

More information

u l l u u l l

u l l u u l l u l l u u l l DNA u u Cystic Fibrosis u u CF u u CF CF ATP u u u CF u u CF CFTR CF CFTR CF u u u l u l u l 1 u l l l l u l l l l l l n n l l l n Ø l n n u u : minnumcoins(m-1) + 1 minnumcoins(m) = min

More information

Microsoft PowerPoint SSBSE .ppt [Modo de Compatibilidade]

Microsoft PowerPoint SSBSE .ppt [Modo de Compatibilidade] SSBSE 2015, Bergamo Transformed Search Based Software Engineering: A New Paradigm of SBSE He JIANG, Zhilei Ren, Xiaochen Li, Xiaochen Lai jianghe@dlut.edu.cn School of Software, Dalian Univ. of Tech. Outline

More information

Microsoft PowerPoint - ATF2015.ppt [相容模式]

Microsoft PowerPoint - ATF2015.ppt [相容模式] Improving the Video Totalized Method of Stopwatch Calibration Samuel C.K. Ko, Aaron Y.K. Yan and Henry C.K. Ma The Government of Hong Kong Special Administrative Region (SCL) 31 Oct 2015 1 Contents Introduction

More information

, (), 15,,,,, 2,,,1000 2,,, 5, ;, 5,,3,,,4 2,,, :, , , ,

, (), 15,,,,, 2,,,1000 2,,, 5, ;, 5,,3,,,4 2,,, :, , , , ,,,,,,, 1924 1927,,,,, 1993 5 (1988 ), 1 2002 2 1927, (), 15,,,,, 2,,,1000 2,,, 5, ;, 5,,3,,,4 2,,, :,1927 4 16,1927 4 19,1927 4 18,1927 4 16 2 ,,,,,,,,, 14,, 15,,, 10,, 3, 6,,,,,,,,,,,,, 1,,, 30,,,,2,15

More information

36 监 管 与 会 计 口 径 差 异 下 的 贷 款 拨 备 率 达 标 及 监 管 研 究 总 第 44 期 失 准 备 金 是 指 商 业 银 行 在 成 本 中 列 支 用 以 抵 御 贷 款 风 险 的 准 备 金, 不 包 括 在 利 润 分 配 中 计 提 的 一 般 风 险 准 备

36 监 管 与 会 计 口 径 差 异 下 的 贷 款 拨 备 率 达 标 及 监 管 研 究 总 第 44 期 失 准 备 金 是 指 商 业 银 行 在 成 本 中 列 支 用 以 抵 御 贷 款 风 险 的 准 备 金, 不 包 括 在 利 润 分 配 中 计 提 的 一 般 风 险 准 备 2015 年 第 8 期 35 监 管 与 会 计 口 径 差 异 下 的 贷 款 拨 备 率 达 标 及 监 管 研 究 葛 蔚 周 瑞 1 摘 要 : 按 照 监 管 要 求, 至 2016 年 年 底 前, 贷 款 拨 备 率 指 标 需 达 到 2.5% 这 其 中 涉 及 到 监 管 和 会 计 上 的 不 同 处 理 本 文 在 对 上 海 22 家 外 资 法 人 银 行 的 调 查

More information

has become a rarity. In other words, the water resources that supply the needs in Taiwan depend crucially on the reservoirs built at least more than t

has become a rarity. In other words, the water resources that supply the needs in Taiwan depend crucially on the reservoirs built at least more than t 臺 灣 水 利 第 64 卷 第 1 期 民 國 105 年 3 月 出 版 Taiwan Water Conservancy Vol. 64, No. 1, March 2016 論 台 灣 水 資 源 開 發 的 必 要 性 The Essentiality of Water Resource Development in Taiwan * 虞 國 興 GWO-HSING YU 淡 江 大 學

More information

ch_code_infoaccess

ch_code_infoaccess 地 產 代 理 監 管 局 公 開 資 料 守 則 2014 年 5 月 目 錄 引 言 第 1 部 段 數 適 用 範 圍 1.1-1.2 監 管 局 部 門 1.1 紀 律 研 訊 1.2 提 供 資 料 1.3-1.6 按 慣 例 公 布 或 供 查 閱 的 資 料 1.3-1.4 應 要 求 提 供 的 資 料 1.5 法 定 義 務 及 限 制 1.6 程 序 1.7-1.19 公 開 資

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

096STUT DOC

096STUT DOC i YouTube was established in 2005 until now only more than 3 years. Although it was established just more than 3 years, it has already become the one of multitudinous video shares website that most people

More information

ap15_chinese_interpersoanal_writing_ _response

ap15_chinese_interpersoanal_writing_ _response 2015 SCORING GUIDELINES Interpersonal Writing: 6 EXCELLENT excellence in 5 VERY GOOD Suggests excellence in 4 GOOD 3 ADEQUATE Suggests 2 WEAK Suggests lack of 1 VERY WEAK lack of 0 UNACCEPTABLE Contains

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

壹 緒 論 由 於 作 者 任 教 於 大 專 軍 事 校 院, 依 校 規 規 定 學 生 於 第 八 學 期 必 須 通 過 3000 公 尺 跑 步 測 驗 限 定 14 分 鐘 的 及 格 標 準 始 得 畢 業 ; 因 此 探 討 提 升 中 長 距 離 與 長 距 離 跑 步 能 力 的

壹 緒 論 由 於 作 者 任 教 於 大 專 軍 事 校 院, 依 校 規 規 定 學 生 於 第 八 學 期 必 須 通 過 3000 公 尺 跑 步 測 驗 限 定 14 分 鐘 的 及 格 標 準 始 得 畢 業 ; 因 此 探 討 提 升 中 長 距 離 與 長 距 離 跑 步 能 力 的 四 週 800 公 尺 間 歇 跑 步 訓 練 教 學 方 案 對 不 同 跑 步 能 力 者 的 訓 練 成 效 蔡 玉 敏 1 陳 智 仁 2, 3 * 陳 明 坤 1 中 華 民 國 空 軍 官 校 總 教 官 室 2 桃 園 創 新 技 術 學 院 體 育 保 健 室 3 國 立 中 興 大 學 體 育 室 摘 要 目 的 : 探 討 800 公 尺 間 歇 跑 步 訓 練 教 學 對 不

More information

2005 3,? :; ;, ;,,,,,,1 % %,,,,, 1 %,,,, : () ;, ;,,,,,,,,,,,,, (2004) ( GBΠT ) 16 (2004), (2004) 47

2005 3,? :; ;, ;,,,,,,1 % %,,,,, 1 %,,,, : () ;, ;,,,,,,,,,,,,, (2004) ( GBΠT ) 16 (2004), (2004) 47 : 3 ( 100836) :,, : :,,,,,,,,,,, ; (),,,,,??,??,,?,? 1982 1995,?,,?, 3 (2004) (Harry X. Wu) ;(:Measuring Output of Service Sector in China ; :16913107) (:; :70273058), 46 2005 3,? :; ;, ;,,,,,,1 % 1987

More information

新竹市建華國民中學九十四學年度課程計畫

新竹市建華國民中學九十四學年度課程計畫 目 錄 壹 依 據... 3 貳 目 的... 3 參 學 校 背 景 簡 述 與 課 程 發 展 條 件 分 析... 3 一 學 校 基 本 資 料... 3 二 學 校 課 程 發 展 條 件 分 析 (SWOTS)... 4 肆 學 校 教 育 目 標 與 願 景... 5 ㄧ 學 校 願 景... 5 二 學 校 願 景 圖 像... 5 三 學 校 發 展 方 向 與 展 望... 5

More information