Answer for Exercises (Page 45, Theory of Computer Science: Definitions and Examples. 3 rd Ed.)

Size: px
Start display at page:

Download "Answer for Exercises (Page 45, Theory of Computer Science: Definitions and Examples. 3 rd Ed.)"

Transcription

1 Answer for Exercises (Page 45, Theory of Computer cience: Definitions and Examples. 3 rd Ed.) Part A Multiple Choices Questions 1. B 2. B 3. D 4. C 5. D 6. D 7. D 8. C 9. D 10. A 11. A 12. C 13. C 14. B 15. C 16. B 17. A 18. A 19. D 20. D 21. B 22. D 23. B 24. C 25. C 26. A 27. D 28. A 29. D 30. C 31. B 32. D 33. C 34. A 35. B 36. B 37. B 38. A 39. A 40. A 41. A 42. B 43. C 44. C 45. D 46. D 1 P a g e

2 Part B tructured Questions 1. a) AB ABAB λabab λabab λabbab λabbbab λabbλab λabbλaab λabbλaab λabbλaabb λabbλaabλ abbaab b) AB AB λab ABAB λaab λabab λaab λabab λaaλ λaλab aa λaλab λaλaλ aa c) A B λ a A λ a A B A B a λ λ a λ d) (a*ab*)* 2 P a g e

3 2. b) Derivation Rule abc abc ababcc abc ababacc A ababcadcc A cad ababccddcc A cd c) The derivation tree corresponding to the preceding derivation is a b c a b c A c A d c d d) L(G) = {(ab) n c m d m c n n 0; m > 0} 3. a) Derivation Rule AB AB aabb A aab aaabbb A aab aa bbb A aa bb B aa bb ba B ba aabbba b) Derivation Rule AB AB AbBa B bba Abbaa B ba AABbbaa AB AAbBabbaa B bba AAb abbaa B AAABb abbaa AB AAA b abbaa B AAA b abbaa 3 P a g e

4 AAaAb b abbaa A aab AAaaAbb b abbaa A aab AAaa bb b abbaa A AaAbaa bb b abbaa A aab Aa baa bb b abbaa A a baa bb b abbaa A abaabbbabbaa c) A B a A b b a a A b A B A B b B a a A b A B b B a b a a A b a A b d) L(G) = {a n1 b n1 a nk b nk b m1 a m1 b ml a ml n i, m i > 0; k, l 0; k l} 4. a) AB aab aab aaab aaab aaab 4 P a g e

5 b) AB AAB AaB Aab aaab aaab 5. et notations {a 2i b i b*, i 0} or {(aa) i b j i > 0, j i} { } or {a 2i b j i > 0, j i} { }. {a n c + b 2n, n 0} or {a n c m (bb) n n 0, m > 0} or {a n c m b 2n n 0, m > 0}. {(ab) n (cd) m (ba) m (dc) n, n 1, m 0} {a n c m a p b p d m b n, m 1, n 0, p 1} {a k b j 0 < k j 2k} Descriptions The rules aab and generate an equal number of leading aa's and trailing B's. Each B is transformed into one or more b's. ince at least one application of the rule aab is necessary to generate b's, strings consisting solely of b's are not in the language. The language of the grammar is {(aa) i b j i > 0, j i} { } or we can write {a 2i b j i > 0, j i} { }. The recursion of rules abb generate an equal number of leading a's and trailing bb's. The recursion is terminated by an application of the rule A. Each A is transformed into one or more c's. The language of the grammar is {a n c m (bb) n n 0, m > 0} or we can write {a n c m b 2n n 0, m > 0}. Repeated applications of the recursive rule abdc produce a string of the form (ab) i (dc) i, i 0. The recursion is terminated by an application of the rule A. The A rules produce strings of the form (cd) j (ba) j, j 0. The language generated by the rules is {(ab) i (cd) j (ba) j (dc) i i 0, j 0}. Repeated applications of the recursive rule ab produce a string of the form a m b m, m 0. The recursion is terminated by an application of the rule A. The A rules produce strings of the form c n Ad n, n > 0. While the B rules produce strings of the form a i Bb i, i > 0. The language generated by the rules is {a m c n a i b i d n b m m 0; n, i > 0} The rule ab ab generates strings of the form a k B k, by applying the first option of the rewrite rule k times, or a k abb k by applying the second option to replace. The rule B b bb, applied k times to the strings generated above will eventually yield a k ab(b bb) k. This can be written as L = {a k b j 0 < k j 2k}. hortest string and 3 other strings aab aabb, aaaabb, aaaabbb c aacbbbb accbb acccbb abdc / cdba abcdbadc, abcdcdbabadc, ababcdcdbabadcdc cabd aacccabdddbb, acaabbdb, aacaabbdbb ab abb, abbb, aabb 5 P a g e

6 6. AB A aabb abb B cb c 7. The language consisting of the set of strings {a n b m c 2n+m m, n > 0} is generated by acc aacc A bac bc For each leading a generated by the rules, two c's are produced at the end of the string. The rule A rules generate an equal number of b's and c's. 8. This grammar can be constructed by first generating as many a's as c's to the left and right. ubsequently generate as many b's as c's in the middle. This gives us as many a's and b's as c's. Then we create possibly more c's. ac B Generate a n Bc n, n 0 by applying left option n times. B bbc C Use a n Bc n and this rule to generate a n b m Cc n+m, n, m 0. C cc Use a n b m Cc n+m and this rule to get a n b m c j c n+m, n, m, j 0}. This gives us the language L = {a n b m c j c n+m n, m, j 0}. Let i = j + n + m to get: {a n b m c i 0 n + m i}. 9. AAab λ or Ab λ A a λ A a aa aaa 10. LR L alb λ R bla λ 11. The grammar of this language is ab ba 12. An a can be specifically placed in the middle position of a string using the rules A aaa aab baa bab a The termination of the application of recursive A rules by the rule A a inserts the symbol a into the middle of the string. Using this strategy, the grammar aaa aab bba bbb a b A aaa aab baa bab a B aba abb bba bbb b generates all strings over fa; bg with the same symbol in the beginning and middle positions. If the derivation begins with an rule that begins with an a, the A rules ensure that an a occurs in the middle of the string. imilarly, the and B rules combine to produce strings with a b in the first and middle positions. 13. a) (a + b)*aa(a + b)* b) AaaA A aa ba λ 6 P a g e

7 14. a) a*bb b) Abb A aa λ 15. AA aba abba abbba abbλa abbλab abbλaλ abba A A a B a B b B λ b B λ 16. axb abbab abbabaxb abbabaabbb abbabaabbbaxb abbabaabbbabbab a X b a X b a X b b b a a b b b b a 17. U111 U 0U 1U λ 18. a) AB ABAB λabab λaabab λaabab λaabbab λaabλab λaabλaab λaabλaaab λaabλaaab λaabλaaabb 7 P a g e

8 λaabλaaabbb λaabλaaabbλ aabaaabb b) A B A B a A b B λ a A b B a A b B a λ a λ c) A B A B a A b B A B a b B a A b B λ a λ λ a λ d) (a*ab*)* 19. a) Analysis: the language will produce strings with exactly 3 a s and end with a. in between of the a s can have as many b s as we like. The pattern of the string will be : BaBaBa. b aa A ba ab B bb a b) Analysis: the language will produce strings with at least one a and one b. The pattern of the string will be : AbBBaA. a ba A bba ab B ab λ 20. a) aa A aa ab 8 P a g e

9 B ba b) aa aaa aaaa aaaab aaaaba aaaabab aaaababa aaaababaa aaaababa. 21. L(G 1 ) = {b m a n b m : n 0, m 0} 22. G1 = ({a, b, }, {a, b},, P) with P defined by: abb λ 23. a) ba bb bba failed. b) a aba abaa abab ababba ababb ba baa baaa baab baaba baababa baabab a b A b A a A a A a A b b b A a b A 24. a) a(a + b)*b b) aa*bb* or a + b + c) a*bba* d) (a* + ba*b)* 25. a aa A ba bb B cb 26. The language (a b)*aa(a b)*bb(a b)* is generated by G 1 : 1 a 1 b 1 aa A ab B ab bb bc C bd D ad bd 9 P a g e

10 G 2 generates the strings (a b)*bb(a b)*aa(a b)* G 2 : 2 a 2 b 2 be E bf F af bf ag G ah H ah bh A grammar G that generates (a b)*aa(a b)*bb(a b)* (a b)*bb(a b)*aa(a b)* can be obtained from G 1 and G 2. The rules of G consist of the rules of G1 and G2 augmented with 1 2 where is the start symbol of the composite grammar. The alternative in these productions corresponds to the in the definition of the language. While the grammar described above generates the desired language, it is not regular. The rules 1 2 do not have the form required for rules of a regular grammar. A regular grammar can be obtained by explicitly replacing 1 and 2 in the rules with the right-hand sides of the 1 and 2 rules. The rules of the new grammar are a1 b1 aa a2 b2 be The strategy used to modify the rules 1 2 is an instance of a more general rule modification technique known as removing chain rules. 27. a b aa A ab B ab bb ac C ad D ad bd 28. G 1 generates the strings (a b)*ab(a b)*ba(a b)* G 1 : 1 a 1 b 1 aa A bb B ab bb bc C ad D ad bd G 2 generates the strings (a b)*ba(a b)*ab(a b)* G 2 : 2 a 2 b 2 be E af F af bf ag G bh H ah bh Thus a grammar G that generates (a b)*ab(a b)*ba(a b)* (a b)*ba(a b)*ab(a b)* a1 b1 aa a2 b2 be 1 a 1 b 1 aa A bb B ab bb bc C ad 10 P a g e

11 D ad bd 2 a 2 b 2 be E af F af bf ag G bh H ah bh or G: a b aa be A bb B ab bb bc C ad D ad bd E af F af bf ag G bh H ah bh 29. b aa λ A ba ab B bb a 30. The language ((a )b(a ))* is generated by the grammar aa bb A bb B a bb This language consists of all strings over {a, b} in which every a is preceded or followed by a b. An a generated by the rule aa is followed by a b. An a generated by B a is preceded by a b. 31. When we start and we read a b then we are no closer to reading aba and we remain in the same state. However, if we read an a, we may encounter ba next, so we proceed to a state A, where we may not read ba next. If we read an a in this state A there still might follow Ba, so we remain in state A. On the other hand, when we read a B in state A, we end up in a state where we may not read an a because we have just read ab. If the character we read then is a b we are back at the initial state where the string to follow may not be aba. Of course, we are always allowed to stop reading and accept that word in any state. This yields the following grammar b aa A aa bb B b 32. G: b aa ac A ab B bb bd C b D ab string to follow may not be aba string to follow may not be ba string to follow may not be a 11 P a g e

12 33. G: a aa bd bg A bb B ab bc C ac D ae E ae bf F af G ag bh H ai I ai 34. The variables of the grammar indicate whether an even or odd number of ab's has been generated and the progress toward the next ab. The interpretation of the variables is Variable Parity Progress toward ab even none A even a B odd none C odd a The rules of the grammar are aa b A aa bb B ac bb C ac b A derivation may terminate with a -rule when a B or a C is present in the sentential form since this indicates that an odd number of ab's have been generated. 35. The objective is to construct a grammar that generates the set of strings over {a, b} containing an even number of a's or an odd number of b's. In the grammar, aoa bea bob aeb Ea aoa bea Oa aea boa Ob aob beb Eb aeb bob the Ea and Oa rules generate strings with an even number of a's. The derivation of a string with a positive even number of a's is initiated by the application of an rule that generates either Ea or Oa. The derivation then alternates between occurrences of Ea and Oa until it is terminated with an application of the rule Ea. In a like manner, the Ob and Eb rules generate strings with an odd number of b's. The string aab can be generated by two derivations; one beginning with the application of the rule aoa and the other beginning with aeb. 36. a) {a n b m b n n 0, m > 0} or we can write {a m b n n > m 0}. b) {a n b 2m d 2m a 2n n 0, m > 0} c) {a n a m b n n, m 0} 12 P a g e

13 37. a) (a + b + ) + b) The rules a and b allow the generation of leading a's or trailing b's in any order. Two leftmost derivations for the string aabb are a b ab ab aabb aabb c) The derivation trees corresponding to the derivations of (b) are a b b a a b a b 38. The regular expression for this language is a + b + b. 39. {a m a n b n m > 0, n 0} or we can write {a m b n m > n 0} a) The language {a, b}* b) The set {a, b}*{a} c) The set {ba}*{b} d) The set {b*ab*} e) {a}*{b}{a}*{b}{a}*, the set of strings in *{a, b} containing exactly two b s f) The set of strings over {a, b} that are not palindromes but could be made into palindromes by changing one a to b or vice versa g) The set of even-length strings in {a, b}* h) The set of odd-length strings in {a, b}* a) ab b b) ab b b c) abb d) ab abb e) abb ab a f) aab aa; A aabb aab aa 13 P a g e

14 42. Table 1. Table 2. No. Language No. s CFG or RG 1. (a + b)* 6 aa A aa bb B bb λ RG 2. (a + b) + 5 Abb A aa λ 3. (a + b) 2 a b a b RG 4. (ab) a*bb 4 6. aa*bb* 9 7. a*bba* 8 AaaA A aa ba λ aa A b a b ba A bb B ab bb λ aa A aa ba b 8. a(a + b)*b 1 a b λ RG 9. (a + b)*bb(a + b)* 7 a ba A bb B ab λ 10. (a + b)*aa(a + b)* 3 a b RG RG CFG RG RG RG RG 43. Table 3. Table 4. No. Language No. s CFG or RG Generate 3 possible strings 1. L = {ww R : w (a + b)*} 4 ab ba CFG ab, ba, aaba 2. L = {a n b 2m c n n, m > 0} 3 3. L = (bb*a + ab*b)* 5 4. Let L be the language of all strings over {a, b} that have the same number of a s as b s ba ab λ A ba a B bb b X Y X axb ab Y bya ba AC B A a C c B bbb bb 5. L = {a n b n n > 0} {b n a n n > 0} 1 aa bb CFG 2 RG CFG CFG 14 P a g e

CS103B Handout 17 Winter 2007 February 26, 2007 Languages and Regular Expressions

CS103B Handout 17 Winter 2007 February 26, 2007 Languages and Regular Expressions CS103B Handout 17 Winter 2007 February 26, 2007 Languages and Regular Expressions Theory of Formal Languages In the English language, we distinguish between three different identities: letter, word, sentence.

More information

ÖVNINGSUPPGIFTER I SAMMANHANGSFRIA SPRÅK. 15 april 2003. Master Edition

ÖVNINGSUPPGIFTER I SAMMANHANGSFRIA SPRÅK. 15 april 2003. Master Edition ÖVNINGSUPPGIFTER I SAMMANHANGSFRIA SPRÅK 5 april 23 Master Edition CONTEXT FREE LANGUAGES & PUSH-DOWN AUTOMATA CONTEXT-FREE GRAMMARS, CFG Problems Sudkamp Problem. (3.2.) Which language generates the grammar

More information

Pushdown Automata. place the input head on the leftmost input symbol. while symbol read = b and pile contains discs advance head remove disc from pile

Pushdown Automata. place the input head on the leftmost input symbol. while symbol read = b and pile contains discs advance head remove disc from pile Pushdown Automata In the last section we found that restricting the computational power of computing devices produced solvable decision problems for the class of sets accepted by finite automata. But along

More information

CMPSCI 250: Introduction to Computation. Lecture #19: Regular Expressions and Their Languages David Mix Barrington 11 April 2013

CMPSCI 250: Introduction to Computation. Lecture #19: Regular Expressions and Their Languages David Mix Barrington 11 April 2013 CMPSCI 250: Introduction to Computation Lecture #19: Regular Expressions and Their Languages David Mix Barrington 11 April 2013 Regular Expressions and Their Languages Alphabets, Strings and Languages

More information

Fundamentele Informatica II

Fundamentele Informatica II Fundamentele Informatica II Answer to selected exercises 1 John C Martin: Introduction to Languages and the Theory of Computation M.M. Bonsangue (and J. Kleijn) Fall 2011 Let L be a language. It is clear

More information

C H A P T E R Regular Expressions regular expression

C H A P T E R Regular Expressions regular expression 7 CHAPTER Regular Expressions Most programmers and other power-users of computer systems have used tools that match text patterns. You may have used a Web search engine with a pattern like travel cancun

More information

Visa Smart Debit/Credit Certificate Authority Public Keys

Visa Smart Debit/Credit Certificate Authority Public Keys CHIP AND NEW TECHNOLOGIES Visa Smart Debit/Credit Certificate Authority Public Keys Overview The EMV standard calls for the use of Public Key technology for offline authentication, for aspects of online

More information

Formal Languages and Automata Theory - Regular Expressions and Finite Automata -

Formal Languages and Automata Theory - Regular Expressions and Finite Automata - Formal Languages and Automata Theory - Regular Expressions and Finite Automata - Samarjit Chakraborty Computer Engineering and Networks Laboratory Swiss Federal Institute of Technology (ETH) Zürich March

More information

2110711 THEORY of COMPUTATION

2110711 THEORY of COMPUTATION 2110711 THEORY of COMPUTATION ATHASIT SURARERKS ELITE Athasit Surarerks ELITE Engineering Laboratory in Theoretical Enumerable System Computer Engineering, Faculty of Engineering Chulalongkorn University

More information

Pattern Co. Monkey Trouble Wall Quilt. Size: 48" x 58"

Pattern Co. Monkey Trouble Wall Quilt. Size: 48 x 58 .............................................................................................................................................. Pattern Co..........................................................................................

More information

Online EFFECTIVE AS OF JANUARY 2013

Online EFFECTIVE AS OF JANUARY 2013 2013 A and C Session Start Dates (A-B Quarter Sequence*) 2013 B and D Session Start Dates (B-A Quarter Sequence*) Quarter 5 2012 1205A&C Begins November 5, 2012 1205A Ends December 9, 2012 Session Break

More information

Regular Languages and Finite State Machines

Regular Languages and Finite State Machines Regular Languages and Finite State Machines Plan for the Day: Mathematical preliminaries - some review One application formal definition of finite automata Examples 1 Sets A set is an unordered collection

More information

6.045: Automata, Computability, and Complexity Or, Great Ideas in Theoretical Computer Science Spring, 2010. Class 4 Nancy Lynch

6.045: Automata, Computability, and Complexity Or, Great Ideas in Theoretical Computer Science Spring, 2010. Class 4 Nancy Lynch 6.045: Automata, Computability, and Complexity Or, Great Ideas in Theoretical Computer Science Spring, 2010 Class 4 Nancy Lynch Today Two more models of computation: Nondeterministic Finite Automata (NFAs)

More information

Acceptance Page 2. Revision History 3. Introduction 14. Control Categories 15. Scope 15. General Requirements 15

Acceptance Page 2. Revision History 3. Introduction 14. Control Categories 15. Scope 15. General Requirements 15 Acceptance Page 2 Revision History 3 Introduction 14 Control Categories 15 Scope 15 General Requirements 15 Control Category: 0.0 Information Security Management Program 17 Objective Name: 0.01 Information

More information

Estimating Probability Distributions

Estimating Probability Distributions Estimating Probability Distributions Readings: Manning and Schutze, Section 6.2 Jurafsky & Martin, Section 6.3 One of the central problems we face in using probability models for NLP is obtaining the actual

More information

DHL EXPRESS CANADA E-BILL STANDARD SPECIFICATIONS

DHL EXPRESS CANADA E-BILL STANDARD SPECIFICATIONS DHL EXPRESS CANADA E-BILL STANDARD SPECIFICATIONS 1 E-Bill Standard Layout A B C D E F G Field/ DHL Account Number Billing Customer Name Billing Customer Address Billing Customer City Billing Customer

More information

Chapter 3. Maximum Mortgage Amounts on Refinance Transactions Table of Contents

Chapter 3. Maximum Mortgage Amounts on Refinance Transactions Table of Contents Chapter 3, Table of Contents Chapter 3. Maximum Mortgage Amounts on Refinance Transactions Table of Contents Section A. Refinance Transaction Overview Overview... 3-A-1 1. General Information on Refinance

More information

Lecture 18 Regular Expressions

Lecture 18 Regular Expressions Lecture 18 Regular Expressions Many of today s web applications require matching patterns in a text document to look for specific information. A good example is parsing a html file to extract tags

More information

SERVER CERTIFICATES OF THE VETUMA SERVICE

SERVER CERTIFICATES OF THE VETUMA SERVICE Page 1 Version: 3.4, 19.12.2014 SERVER CERTIFICATES OF THE VETUMA SERVICE 1 (18) Page 2 Version: 3.4, 19.12.2014 Table of Contents 1. Introduction... 3 2. Test Environment... 3 2.1 Vetuma test environment...

More information

DETERMINATOR GM 1 GM 1 GM 3 GM 4. These instructions and procedures cover only the GM 1 DETERMINATOR.

DETERMINATOR GM 1 GM 1 GM 3 GM 4. These instructions and procedures cover only the GM 1 DETERMINATOR. GM 1 General Motors has expanded their lock systems. There are now 3 manufactures of their locks, Stratec, HUF and Ortec. There are now 3 different S to cover the GM 10 cut systems: GM 1 GM 3 GM 4 These

More information

Future Trends in Airline Pricing, Yield. March 13, 2013

Future Trends in Airline Pricing, Yield. March 13, 2013 Future Trends in Airline Pricing, Yield Management, &AncillaryFees March 13, 2013 THE OPPORTUNITY IS NOW FOR CORPORATE TRAVEL MANAGEMENT BUT FIRST: YOU HAVE TO KNOCK DOWN BARRIERS! but it won t hurt much!

More information

CSC4510 AUTOMATA 2.1 Finite Automata: Examples and D efinitions Definitions

CSC4510 AUTOMATA 2.1 Finite Automata: Examples and D efinitions Definitions CSC45 AUTOMATA 2. Finite Automata: Examples and Definitions Finite Automata: Examples and Definitions A finite automaton is a simple type of computer. Itsoutputislimitedto yes to or no. It has very primitive

More information

DATING YOUR GUILD 1952-1960

DATING YOUR GUILD 1952-1960 DATING YOUR GUILD 1952-1960 YEAR APPROXIMATE LAST SERIAL NUMBER PRODUCED 1953 1000-1500 1954 1500-2200 1955 2200-3000 1956 3000-4000 1957 4000-5700 1958 5700-8300 1959 12035 1960-1969 This chart displays

More information

Service Instruction. 1.0 SUBJECT: ECi Accessory Cases for Lycoming 4-Cylinder engines with single magneto configurations and TITAN 361 Engines

Service Instruction. 1.0 SUBJECT: ECi Accessory Cases for Lycoming 4-Cylinder engines with single magneto configurations and TITAN 361 Engines Title: Service Instruction ECi Accessory Cases Installed on Engines S.I. No.: 03-1 Page: 1 of 7 Issued: 2/28/2003 Revision: 2 (4/13/2009) Technical Portions are FAA DER Approved. 1.0 SUBJECT: ECi Accessory

More information

Automata and Formal Languages

Automata and Formal Languages Automata and Formal Languages Winter 2009-2010 Yacov Hel-Or 1 What this course is all about This course is about mathematical models of computation We ll study different machine models (finite automata,

More information

BEGINNING ALGEBRA ACKNOWLEDMENTS

BEGINNING ALGEBRA ACKNOWLEDMENTS BEGINNING ALGEBRA The Nursing Department of Labouré College requested the Department of Academic Planning and Support Services to help with mathematics preparatory materials for its Bachelor of Science

More information

"HIGHER EDUCATION VALUES AND OPINIONS SURVEY" ADVANCED PLACEMENT TEACHERS and GUIDANCE COUNSELORS May-June 1994

HIGHER EDUCATION VALUES AND OPINIONS SURVEY ADVANCED PLACEMENT TEACHERS and GUIDANCE COUNSELORS May-June 1994 "HIGHER EDUCATION VALUES AND OPINIONS SURVEY" ADVANCED PLACEMENT TEACHERS and GUIDANCE COUNSELORS May-June 1994 VARIABLE SURVEY ANSWER NAME QUESTION CATEGORIES Facsimile the original mail questionnaire

More information

Chapter 5. Rational Expressions

Chapter 5. Rational Expressions 5.. Simplify Rational Expressions KYOTE Standards: CR ; CA 7 Chapter 5. Rational Expressions Definition. A rational expression is the quotient P Q of two polynomials P and Q in one or more variables, where

More information

SERVER CERTIFICATES OF THE VETUMA SERVICE

SERVER CERTIFICATES OF THE VETUMA SERVICE Page 1 Version: 3.5, 4.11.2015 SERVER CERTIFICATES OF THE VETUMA SERVICE 1 (18) Page 2 Version: 3.5, 4.11.2015 Table of Contents 1. Introduction... 3 2. Test Environment... 3 2.1 Vetuma test environment...

More information

Section 8.8. 1. The given line has equations. x = 3 + t(13 3) = 3 + 10t, y = 2 + t(3 + 2) = 2 + 5t, z = 7 + t( 8 7) = 7 15t.

Section 8.8. 1. The given line has equations. x = 3 + t(13 3) = 3 + 10t, y = 2 + t(3 + 2) = 2 + 5t, z = 7 + t( 8 7) = 7 15t. . The given line has equations Section 8.8 x + t( ) + 0t, y + t( + ) + t, z 7 + t( 8 7) 7 t. The line meets the plane y 0 in the point (x, 0, z), where 0 + t, or t /. The corresponding values for x and

More information

Community College of Philadelphia Calling Code 218 Employer Scan Client Approved: November 17, 2005 Region (CIRCLE) City MSA

Community College of Philadelphia Calling Code 218 Employer Scan Client Approved: November 17, 2005 Region (CIRCLE) City MSA Community College of Philadelphia Calling Code 218 Employer Scan Client Approved: November 17, 2005 Region (CIRCLE) City MSA Zip V0 V1 V2 Month/ Day/ Year of Contact: Business Name: Address: V3 City: V4

More information

Application Note RMF Magic 5.1.0: EMC Array Group and EMC SRDF/A Reporting. July 2009

Application Note RMF Magic 5.1.0: EMC Array Group and EMC SRDF/A Reporting. July 2009 Application Note RMF Magic 5.1.0: EMC Array Group and EMC SRDF/A Reporting July 2009 Summary: This Application Note describes the new functionality in RMF Magic 5.1 that enables more effective monitoring

More information

Fundamentals of Geometry. Oleg A. Belyaev belyaev@polly.phys.msu.ru

Fundamentals of Geometry. Oleg A. Belyaev belyaev@polly.phys.msu.ru Fundamentals of Geometry Oleg A. Belyaev belyaev@polly.phys.msu.ru February 28, 2007 Contents I Classical Geometry 1 1 Absolute (Neutral) Geometry 3 1.1 Incidence....................................................

More information

Calculation of Valu-Trac Statuses

Calculation of Valu-Trac Statuses Calculation of Intrinsic Value Yield Latest Cash Earnings (Net Income + Depreciation and Amortization) (put aside) Dividend (subtract) Provision for Depreciation (Net Assets x Inflation Rate) (subtract)

More information

recursively enumerable languages context-free languages regular languages

recursively enumerable languages context-free languages regular languages CPS 140 - Mathematical Foundations of CS Dr. S. Rodger Section: Recursively Enumerable Languages èhandoutè Deænition: A language L is recursively enumerable if there exists a TM M such that L=LèMè. if

More information

The colors in the Federal Standard set have no official names, just five-digit numbers. Any names given below are generic.

The colors in the Federal Standard set have no official names, just five-digit numbers. Any names given below are generic. Federal Standard 595 Paint Spec Information The following information is made available to our customers as a reference point only. See below for how to request the 595 specification from the US Government.

More information

NEOSHO COUNTY COMMUNITY COLLEGE MASTER COURSE SYLLABUS. Medical Administrative Aspects

NEOSHO COUNTY COMMUNITY COLLEGE MASTER COURSE SYLLABUS. Medical Administrative Aspects NEOSHO COUNTY COMMUNITY COLLEGE MASTER COURSE SYLLABUS COURSE IDENTIFICATION Course Code/Number: ALMA 120 Course Title: Medical Administrative Aspects Division: Applied Science (AS) Liberal Arts (LA) Workforce

More information

How can we accommodate you? Everybody always asks. Quick overview of our three buildings. Building Legend

How can we accommodate you? Everybody always asks. Quick overview of our three buildings. Building Legend How can we accommodate you? Everybody always asks. Whether it s the right size room to excite your sales force about a new innovation or the perfect area to generate an early buzz for your business, the

More information

Baltic Way 1995. Västerås (Sweden), November 12, 1995. Problems and solutions

Baltic Way 1995. Västerås (Sweden), November 12, 1995. Problems and solutions Baltic Way 995 Västerås (Sweden), November, 995 Problems and solutions. Find all triples (x, y, z) of positive integers satisfying the system of equations { x = (y + z) x 6 = y 6 + z 6 + 3(y + z ). Solution.

More information

CROSS REFERENCE. Cross Reference Index 110-122. Cast ID Number 110-111 Connector ID Number 111 Engine ID Number 112-122. 2015 Ford Motor Company 109

CROSS REFERENCE. Cross Reference Index 110-122. Cast ID Number 110-111 Connector ID Number 111 Engine ID Number 112-122. 2015 Ford Motor Company 109 CROSS REFERENCE Cross Reference Index 110-122 Cast ID Number 110-111 Connector ID Number 111 112-122 2015 Ford Motor Company 109 CROSS REFERENCE Cast ID Number Cast ID Ford Service # MC Part # Part Type

More information

UIFSA See UNIFORM INTERSTATE FAMILY SUPPORT ACT. UMBILICAL CORD BLOOD COLLECTION PROGRAM ACT Generally, 19a-32o to 19a-32v

UIFSA See UNIFORM INTERSTATE FAMILY SUPPORT ACT. UMBILICAL CORD BLOOD COLLECTION PROGRAM ACT Generally, 19a-32o to 19a-32v UIFSA See UNIFORM INTERSTATE FAMILY SUPPORT ACT. UMBILICAL CORD BLOOD COLLECTION PROGRAM ACT Generally, 19a-32o to 19a-32v UNDERGROUND FACILITIES See PUBLIC UTILITIES REGULATORY AUTHORITY. UNDERGROUND

More information

Biochemistry courses for 2015

Biochemistry courses for 2015 Biochemistry courses for 2015 for biochemistry and biochemistry related courses starting in 2015 www.biochemistry.org This prospectus lists Biochemistry and related degree courses starting in 2015, ordered

More information

CUSCINETTI MONTANTE MAST ROLLERS

CUSCINETTI MONTANTE MAST ROLLERS TIPO A - TYPE A TIPO B - TYPE B TIPO C - TYPE C TIPO BE - TYPE BE TIPO E - TYPE E TIPO AA - TYPE AA TIPO L - TYPE L TIPO F - TYPE F TIPO BT - TYPE BT TIPO BK - TYPE BK 1 TIPO N - TYPE N TIPO W- TYPE W

More information

NEOSHO COUNTY COMMUNITY COLLEGE MASTER COURSE SYLLABUS. Medical Professional Issues

NEOSHO COUNTY COMMUNITY COLLEGE MASTER COURSE SYLLABUS. Medical Professional Issues NEOSHO COUNTY COMMUNITY COLLEGE MASTER COURSE SYLLABUS COURSE IDENTIFICATION Course Code/Number: ALMA 110 Course Title: Medical Professional Issues Division: Applied Science (AS) Liberal Arts (LA) Workforce

More information

6 Commutators and the derived series. [x,y] = xyx 1 y 1.

6 Commutators and the derived series. [x,y] = xyx 1 y 1. 6 Commutators and the derived series Definition. Let G be a group, and let x,y G. The commutator of x and y is [x,y] = xyx 1 y 1. Note that [x,y] = e if and only if xy = yx (since x 1 y 1 = (yx) 1 ). Proposition

More information

A New Decade of Advancing Oral Health in Kansas Work Plan June 10, 2013

A New Decade of Advancing Oral Health in Kansas Work Plan June 10, 2013 A New Decade of Advancing Oral Health in Kansas Work Plan June 10, 2013 GOAL 1: PROJECT STEERING COMMITTEE Set up a project steering committee to oversee the project objectives related to improving the

More information

USB HID to PS/2 Scan Code Translation Table

USB HID to PS/2 Scan Code Translation Table Key Name HID Usage Page HID Usage ID PS/2 Set 1 Make* PS/2 Set 1 Break* PS/2 Set 2 Make PS/2 Set 2 Break System Power 01 81 E0 5E E0 DE E0 37 E0 F0 37 System Sleep 01 82 E0 5F E0 DF E0 3F E0 F0 3F System

More information

Theory of Computation Class Notes 1

Theory of Computation Class Notes 1 Theory of Computation Class Notes 1 1 based on the books by Sudkamp and by Hopcroft, Motwani and Ullman ii Contents 1 Introduction 1 1.1 Sets.............................................. 1 1.2 Functions

More information

4. FIRST STEPS IN THE THEORY 4.1. A

4. FIRST STEPS IN THE THEORY 4.1. A 4. FIRST STEPS IN THE THEORY 4.1. A Catalogue of All Groups: The Impossible Dream The fundamental problem of group theory is to systematically explore the landscape and to chart what lies out there. We

More information

DEFINITIONS. Perpendicular Two lines are called perpendicular if they form a right angle.

DEFINITIONS. Perpendicular Two lines are called perpendicular if they form a right angle. DEFINITIONS Degree A degree is the 1 th part of a straight angle. 180 Right Angle A 90 angle is called a right angle. Perpendicular Two lines are called perpendicular if they form a right angle. Congruent

More information

Parallax Serial LCD 2 rows x 16 characters Non-backlit (#27976) 2 rows x 16 characters Backlit (#27977) 4 rows x 20 characters Backlit (#27979)

Parallax Serial LCD 2 rows x 16 characters Non-backlit (#27976) 2 rows x 16 characters Backlit (#27977) 4 rows x 20 characters Backlit (#27979) 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office: (916) 624-8333 Fax: (916) 624-8003 General: info@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Educational: www.stampsinclass.com

More information

Chapter 1. The Medial Triangle

Chapter 1. The Medial Triangle Chapter 1. The Medial Triangle 2 The triangle formed by joining the midpoints of the sides of a given triangle is called the medial triangle. Let A 1 B 1 C 1 be the medial triangle of the triangle ABC

More information

PRODUCT MANUAL SKX OPEN SKX ADVANCE ZN1RX-SKXOPEN. Edition 2 Version 1.1

PRODUCT MANUAL SKX OPEN SKX ADVANCE ZN1RX-SKXOPEN. Edition 2 Version 1.1 PRODUCT MANUAL SKX OPEN SKX ADVANCE ZN1RX-SKXOPEN Edition 2 Version 1.1 INDEX 1. Introduction... 3 1.1. SKX Interface... 3 1.2. SKX Installation... 5 1.3. SKX Advance: Application Program... 5 1.3.1. SKX

More information

Lempel-Ziv Coding Adaptive Dictionary Compression Algorithm

Lempel-Ziv Coding Adaptive Dictionary Compression Algorithm Lempel-Ziv Coding Adaptive Dictionary Compression Algorithm 1. LZ77:Sliding Window Lempel-Ziv Algorithm [gzip, pkzip] Encode a string by finding the longest match anywhere within a window of past symbols

More information

COMMERCIAL AIRLINE FACT SHEET

COMMERCIAL AIRLINE FACT SHEET COMMERCIAL AIRLINE FACT SHEET PASSENGER 100% Process LIFEJACKETS Black ame: SURVITECpos_PMS.eps Colourway: 100% Pantone PMS 158c RFD 102 Mk 2BA (00002136) Demo model (40982001) RFD 102 Mk 3 (00002256)

More information

Vehicle Identification Numbering System 00.03

Vehicle Identification Numbering System 00.03 Vehicle Identification Numbering System 00.03 IMPORTANT: See Subject 050 for the vehicle identification numbering system for vehicles built before May 1, 2000. Federal Motor Vehicle Safety Standard 115

More information

http://jsuniltutorial.weebly.com/ Page 1

http://jsuniltutorial.weebly.com/ Page 1 Parallelogram solved Worksheet/ Questions Paper 1.Q. Name each of the following parallelograms. (i) The diagonals are equal and the adjacent sides are unequal. (ii) The diagonals are equal and the adjacent

More information

SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89. by Joseph Collison

SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89. by Joseph Collison SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89 by Joseph Collison Copyright 2000 by Joseph Collison All rights reserved Reproduction or translation of any part of this work beyond that permitted by Sections

More information

Electricity Supply (General) Amendment (Large Customers) Regulation 2005

Electricity Supply (General) Amendment (Large Customers) Regulation 2005 New South Wales Electricity Supply (General) Amendment (Large Customers) Regulation 2005 under the Electricity Supply Act 1995 His Excellency the Lieutenant-Governor, with the advice of the Executive Council,

More information

Discrete Structures. Lecture Notes

Discrete Structures. Lecture Notes Discrete Structures Lecture Notes Vladlen Koltun 1 Winter 2008 1 Computer Science Department, 353 Serra Mall, Gates 374, Stanford University, Stanford, CA 94305, USA; vladlen@stanford.edu. Contents 1

More information

4. How many integers between 2004 and 4002 are perfect squares?

4. How many integers between 2004 and 4002 are perfect squares? 5 is 0% of what number? What is the value of + 3 4 + 99 00? (alternating signs) 3 A frog is at the bottom of a well 0 feet deep It climbs up 3 feet every day, but slides back feet each night If it started

More information

Compiler I: Syntax Analysis Human Thought

Compiler I: Syntax Analysis Human Thought Course map Compiler I: Syntax Analysis Human Thought Abstract design Chapters 9, 12 H.L. Language & Operating Sys. Compiler Chapters 10-11 Virtual Machine Software hierarchy Translator Chapters 7-8 Assembly

More information

Attachment "A" - List of HP Inkjet Printers

Attachment A - List of HP Inkjet Printers HP Deskjet 350c Printer HP Deskjet 350cbi Printer HP Deskjet 350cbi Printer w/roller-case HP Deskjet 420 Printer HP Deskjet 420c Printer HP Deskjet 610c Printer HP Deskjet 610cl Printer HP Deskjet 612c

More information

INCIDENCE-BETWEENNESS GEOMETRY

INCIDENCE-BETWEENNESS GEOMETRY INCIDENCE-BETWEENNESS GEOMETRY MATH 410, CSUSM. SPRING 2008. PROFESSOR AITKEN This document covers the geometry that can be developed with just the axioms related to incidence and betweenness. The full

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Student Name:

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Student Name: GEOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY Wednesday, August 18, 2010 8:30 to 11:30 a.m., only Student Name: School Name: Print your name and the name of

More information

Final GCE Timetable Summer 2015

Final GCE Timetable Summer 2015 Final GCE table Summer 2015 1 GCE A/AS Modern Languages Speaking Tests Tuesday 28 April - Friday 29 2015 2 GCE Religious Studies: where candidates are taking two assessment units which have been timetabled

More information

SOLICITATION/CONTRACT/ORDER FOR COMMERICAL ITEMS

SOLICITATION/CONTRACT/ORDER FOR COMMERICAL ITEMS SOLICITATION/CONTRACT/ORDER FOR COMMERICAL ITEMS 1. REQUISITION NUMBER PAGE 1 OF OFFEROR TO COMPLETE BLOCKS 12, 17, 23, 24 & 30 2. CONTRACT NO. 3. AWARD/EFFECTIVE DATE 4. ORDER NUMBER 5. RFQ NUMBER 6.

More information

Curriculum for Excellence Statement

Curriculum for Excellence Statement Curriculum for Excellence Statement 1. Introduction Over the last few years the University of Glasgow has been engaging with schools, SQA and Scottish Government organisations in order to ensure readiness

More information

UK ResiEMEA Version 2.0.0

UK ResiEMEA Version 2.0.0 The following is Fitch Ratings file layout and fields for UK mortgage pools submitted to the Fitch Ratings UK RMBS Group as of 9 September 2009. Please e-mail mortgage files to the appropriate person in

More information

IEEE TRANSACTIONS ON INFORMATION THEORY 1. The Smallest Grammar Problem

IEEE TRANSACTIONS ON INFORMATION THEORY 1. The Smallest Grammar Problem IEEE TRANSACTIONS ON INFORMATION THEORY 1 The Smallest Grammar Problem Moses Charikar, Eric Lehman, April Lehman, Ding Liu, Rina Panigrahy, Manoj Prabhakaran, Amit Sahai, abhi shelat Abstract This paper

More information

Elements of Abstract Group Theory

Elements of Abstract Group Theory Chapter 2 Elements of Abstract Group Theory Mathematics is a game played according to certain simple rules with meaningless marks on paper. David Hilbert The importance of symmetry in physics, and for

More information

Advanced Encryption Standard by Example. 1.0 Preface. 2.0 Terminology. Written By: Adam Berent V.1.7

Advanced Encryption Standard by Example. 1.0 Preface. 2.0 Terminology. Written By: Adam Berent V.1.7 Written By: Adam Berent Advanced Encryption Standard by Example V.1.7 1.0 Preface The following document provides a detailed and easy to understand explanation of the implementation of the AES (RIJNDAEL)

More information

www.pioneermathematics.com

www.pioneermathematics.com Problems and Solutions: INMO-2012 1. Let ABCD be a quadrilateral inscribed in a circle. Suppose AB = 2+ 2 and AB subtends 135 at the centre of the circle. Find the maximum possible area of ABCD. Solution:

More information

Appendix C: Keyboard Scan Codes

Appendix C: Keyboard Scan Codes Thi d t t d ith F M k 4 0 2 Appendix C: Keyboard Scan Codes Table 90: PC Keyboard Scan Codes (in hex) Key Down Up Key Down Up Key Down Up Key Down Up Esc 1 81 [ { 1A 9A, < 33 B3 center 4C CC 1! 2 82 ]

More information

Advanced Encryption Standard by Example. 1.0 Preface. 2.0 Terminology. Written By: Adam Berent V.1.5

Advanced Encryption Standard by Example. 1.0 Preface. 2.0 Terminology. Written By: Adam Berent V.1.5 Written By: Adam Berent Advanced Encryption Standard by Example V.1.5 1.0 Preface The following document provides a detailed and easy to understand explanation of the implementation of the AES (RIJNDAEL)

More information

Efficient Multi-Feature Index Structures for Music Data Retrieval

Efficient Multi-Feature Index Structures for Music Data Retrieval header for SPIE use Efficient Multi-Feature Index Structures for Music Data Retrieval Wegin Lee and Arbee L.P. Chen 1 Department of Computer Science, National Tsing Hua University, Hsinchu, Taiwan 300,

More information

Capability List, Certificate CHE 1010-31-ANAC 1/8/2014 1

Capability List, Certificate CHE 1010-31-ANAC 1/8/2014 1 PN Part Number Description Aircraft ATA 10063 10063 2/2 Way Valve BAE 31 00 05 NEGRETTI K0100 No restrictions 1 BC REPAIR OVH 10066000001 10066000001 2/5 CHANNEL SELCAL DECODER B 727 79 30 02 GOODRICH

More information

Math 312 Homework 1 Solutions

Math 312 Homework 1 Solutions Math 31 Homework 1 Solutions Last modified: July 15, 01 This homework is due on Thursday, July 1th, 01 at 1:10pm Please turn it in during class, or in my mailbox in the main math office (next to 4W1) Please

More information

MAT188H1S Lec0101 Burbulla

MAT188H1S Lec0101 Burbulla Winter 206 Linear Transformations A linear transformation T : R m R n is a function that takes vectors in R m to vectors in R n such that and T (u + v) T (u) + T (v) T (k v) k T (v), for all vectors u

More information

ARCHIVED PUBLICATION

ARCHIVED PUBLICATION ARCHIVED PUBLICATION The attached publication, FIPS Publication 198 (dated March 6, 2002), was superseded on July 29, 2008 and is provided here only for historical purposes. For the most current revision

More information

CM2202: Scientific Computing and Multimedia Applications General Maths: 2. Algebra - Factorisation

CM2202: Scientific Computing and Multimedia Applications General Maths: 2. Algebra - Factorisation CM2202: Scientific Computing and Multimedia Applications General Maths: 2. Algebra - Factorisation Prof. David Marshall School of Computer Science & Informatics Factorisation Factorisation is a way of

More information

SECTION 10-5 Multiplication Principle, Permutations, and Combinations

SECTION 10-5 Multiplication Principle, Permutations, and Combinations 10-5 Multiplication Principle, Permutations, and Combinations 761 54. Can you guess what the next two rows in Pascal s triangle, shown at right, are? Compare the numbers in the triangle with the binomial

More information

The ASCII Character Set

The ASCII Character Set The ASCII Character Set The American Standard Code for Information Interchange or ASCII assigns values between 0 and 255 for upper and lower case letters, numeric digits, punctuation marks and other symbols.

More information

Exercise Set 3. Similar triangles. Parallel lines

Exercise Set 3. Similar triangles. Parallel lines Exercise Set 3. Similar triangles Parallel lines Note: The exercises marked with are more difficult and go beyond the course/examination requirements. (1) Let ABC be a triangle with AB = AC. Let D be an

More information

The Use of Dynamic Geometry Software in the Teaching and Learning of Geometry through Transformations

The Use of Dynamic Geometry Software in the Teaching and Learning of Geometry through Transformations The Use of Dynamic Geometry Software in the Teaching and Learning of Geometry through Transformations Dynamic geometry technology should be used to maximize student learning in geometry. Such technology

More information

A DIVISION OF THE MENO. Meno proposes a question: whether virtue can be taught. Three conversations or discussions following question

A DIVISION OF THE MENO. Meno proposes a question: whether virtue can be taught. Three conversations or discussions following question A DIVISION OF THE MENO 70A 70B-100B Meno proposes a question: whether virtue can be taught Three conversations or discussions following question 70B-80D Conversation on a question before Meno's: what is

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Wednesday, January 29, 2014 9:15 a.m. to 12:15 p.m.

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Wednesday, January 29, 2014 9:15 a.m. to 12:15 p.m. GEOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY Wednesday, January 29, 2014 9:15 a.m. to 12:15 p.m., only Student Name: School Name: The possession or use of any

More information

How to create OpenDocument URL s with SAP BusinessObjects BI 4.0

How to create OpenDocument URL s with SAP BusinessObjects BI 4.0 How to create OpenDocument URL s with SAP BusinessObjects BI 4.0 Creator: Twitter: Blog: Pieter Verstraeten http://www.twitter.com/pverstraeten http://www.pieterverstraeten.com/blog Hi, Thanks for downloading

More information

URL encoding uses hex code prefixed by %. Quoted Printable encoding uses hex code prefixed by =.

URL encoding uses hex code prefixed by %. Quoted Printable encoding uses hex code prefixed by =. ASCII = American National Standard Code for Information Interchange ANSI X3.4 1986 (R1997) (PDF), ANSI INCITS 4 1986 (R1997) (Printed Edition) Coded Character Set 7 Bit American National Standard Code

More information

Small Business and Individual Chapter 11 Cases Under the Bankruptcy Abuse Prevention and Consumer Protection Act of 2005

Small Business and Individual Chapter 11 Cases Under the Bankruptcy Abuse Prevention and Consumer Protection Act of 2005 Small Business and Individual Chapter 11 Cases Under the Bankruptcy Abuse Prevention and Consumer Protection Act of 2005 I. Individual Chapter 11 Cases A.A Property of the Estate B Section 1115 1.1 In

More information

Chapter 2. DE Lender Application and Approval/Lender Insurance Program (LI) Eligibility & Approval Table of Contents

Chapter 2. DE Lender Application and Approval/Lender Insurance Program (LI) Eligibility & Approval Table of Contents Chapter 2, Table of Contents Chapter 2. DE Lender Application and Approval/Lender Insurance Program (LI) Eligibility & Approval Table of Contents Section A. Direct Endorsement (DE) Program Lender Application

More information

SPECIAL PRODUCTS AND FACTORS

SPECIAL PRODUCTS AND FACTORS CHAPTER 442 11 CHAPTER TABLE OF CONTENTS 11-1 Factors and Factoring 11-2 Common Monomial Factors 11-3 The Square of a Monomial 11-4 Multiplying the Sum and the Difference of Two Terms 11-5 Factoring the

More information

Scilab Textbook Companion for Digital Electronics: An Introduction To Theory And Practice by W. H. Gothmann 1

Scilab Textbook Companion for Digital Electronics: An Introduction To Theory And Practice by W. H. Gothmann 1 Scilab Textbook Companion for Digital Electronics: An Introduction To Theory And Practice by W. H. Gothmann 1 Created by Aritra Ray B.Tech Electronics Engineering NIT-DURGAPUR College Teacher Prof. Sabyasachi

More information

Collinearity and concurrence

Collinearity and concurrence Collinearity and concurrence Po-Shen Loh 23 June 2008 1 Warm-up 1. Let I be the incenter of ABC. Let A be the midpoint of the arc BC of the circumcircle of ABC which does not contain A. Prove that the

More information

HTML Codes - Characters and symbols

HTML Codes - Characters and symbols ASCII Codes HTML Codes Conversion References Control Characters English version Versión español Click here to add this link to your favorites. HTML Codes - Characters and symbols Standard ASCII set, HTML

More information

VOCATIONAL NURSING INFORMATION SHEET

VOCATIONAL NURSING INFORMATION SHEET RIVERSIDE CITY COLLEGE VOCATIONAL NURSING PROGRAM 4800 Magnolia Avenue, Riverside, CA 92506-1299 Phone: (951) 222-8000 School of Nursing Program Information & Workshop Schedule: (951) 222-8405 Counseling:

More information

3515ICT Theory of Computation Turing Machines

3515ICT Theory of Computation Turing Machines Griffith University 3515ICT Theory of Computation Turing Machines (Based loosely on slides by Harald Søndergaard of The University of Melbourne) 9-0 Overview Turing machines: a general model of computation

More information

exclusive-or and Binary Adder R eouven Elbaz reouven@uwaterloo.ca Office room: DC3576

exclusive-or and Binary Adder R eouven Elbaz reouven@uwaterloo.ca Office room: DC3576 exclusive-or and Binary Adder R eouven Elbaz reouven@uwaterloo.ca Office room: DC3576 Outline exclusive OR gate (XOR) Definition Properties Examples of Applications Odd Function Parity Generation and Checking

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Thursday, August 16, 2012 8:30 to 11:30 a.m.

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Thursday, August 16, 2012 8:30 to 11:30 a.m. GEOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY Thursday, August 16, 2012 8:30 to 11:30 a.m., only Student Name: School Name: Print your name and the name of your

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Thursday, January 24, 2013 9:15 a.m. to 12:15 p.m.

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Thursday, January 24, 2013 9:15 a.m. to 12:15 p.m. GEOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY Thursday, January 24, 2013 9:15 a.m. to 12:15 p.m., only Student Name: School Name: The possession or use of any

More information