CS 111: Program Design I Lecture 13: Supreme Court Basics, Files

Size: px
Start display at page:

Download "CS 111: Program Design I Lecture 13: Supreme Court Basics, Files"

Transcription

1 CS 111: Program Desig I Lecture 13: Supreme Court Basics, Files Robert H. Sloa & Richard Warer Uiversity of Illiois at Chicago October 6, 2016 THE US SUPREME COURT (CONTINUED) 1

2 Approximate Political Compositio Justice Age Appoited by Vacat (Atoi Scalia) (79) Roald Reaga Athoy Keedy 80 Roald Reaga Clarece Thomas 68 George H. W. Bush Ruth Bader Gisburg 83 Bill Clito Stephe Breyer 78 Bill Clito Joh G. Roberts 61 George W. Bush Samuel A. Alito, Jr. 66 George W. Bush Soia Sotomayor 62 Barack Obama Elea Kaga 56 Barack Obama What Are Supreme Court Cases Like? A good way to aswer that is with a Federal district court case, US v. Escamilla. q Simpler, easy to uderstad, ad makes the poit. The case ivolves a accidetal killig at a research statio o a islad of Arctic ice. As you hear about case, remember you kow eough about islads of Arctic ice ad firearms to uderstad ad evaluate the case. What do the Justices kow about curret techology? 2

3 US v. Escamilla Escamilla killed Berie Lightsey, his coworker at a research statio located o T-3, a floatig islad of ice i the Arctic Ocea. The trial court held that Escamilla was crimially egliget i killig Lightsey ad covicted him of ivolutary maslaughter. The Law A perso acts [crimially] egligetly whe he should be aware of a substatial ad ujustifiable risk that... will result from his coduct. The risk must be of such a ature ad degree that the actor s failure to perceive it, cosiderig the ature ad purpose of his coduct ad the circumstaces kow to him, ivolves a gross deviatio from the stadard of care that a reasoable perso would observe i the actor s situatio. Model Peal Code, 2.02(2)(d). The geerality ad lack of guidace is typical. 3

4 Balacig Competig Moral Cocers Reasoable to get the rifle? q Escamilla had reaso to thik Porky ad Lightsey might attack with deadly force, q Armig himself could deter a attack through a display of superior force, ad meet force with force. q But: have avoided a attack by simply givig up the wie. q But: o law eforcemet o T-3 So o recovery of property or compesatio, o protectio agaist cotiued demads. Reasoable to Poit the Rifle? Was it reasoable to poit a loaded rifle with at Lightsey? q Poitig the rifle made the threat to use it more credible ad so cotributed more effectively to deterrece through a show of superior force. q Should he have uloaded it? 4

5 Reasoable to Release the Safety? Releasig the safety esured that deadly force was immediately available to repel deadly force. But was the threat that serious? The Court s Decisio It would seem plai that what is egliget or grossly egliget coduct i the Easter District of Virgiia may ot be egliget or grossly egliget o T-3 whe it is remembered that T-3 has o goverig authority, o police force, is relatively iaccessible from the rest of the world, lacks medical facilities ad the dwelligs thereo lack locks -- i short, that abset self-restrait o the part of those statioed o T-3 ad effectiveess of the group leader, T-3 is a place where o recogized meas of law eforcemet exist ad each ma looks to himself for the immediate eforcemet of his rights. 5

6 Factual Detail Notice the factual detail of our discussio. q Also characteristic of US Supreme Court cases. You eed to kow ad realize the relevace of a umber of details about rifles ad Artic ice research statios. The same is true of cases ivolvig techology. But the ecessary backgroud kowledge is ot widespread. Difficult Moral Balacig Decidig Escamilla requires balacig protectig yourself ad your property agaist the respect for the life of others. Such balacig is characteristic of US Supreme Court cases. Techology cases also ivolve balacig issues, as we have see i our discussios. 6

7 Fidig Patters i Cases The aalysis of large databases of court decisios is a icreasigly popular ad importat way to ivestigate how the court balaces moral issues. You ca fid revealig patters. Why was the Escamilla T-3 case i Federal Court? A. Homicide is geerally a federal crime heard i federal court B. Escamilla ad Lightsey were citizes of two differet states C. T-3 was outside of all 50 states ad the District of Columbia 7

8 FILES CONTINUED Readig a file: From last lecture >>> file = ope("justices.txt", "r") >>> prit(file.read()) These are the justices of the Supreme Court as of March 2016 Athoy M. Keedy, Clarece Thomas, Ruth Bader Gisburg, Stephe G. Bryer, Joh G. Roberts, Samuel A. Alito, Soia Sotomayor, Elea Kaga Ad the: >>> prit(ewfile.read(4)) Gives? A. Thes B. Etire file C. The D. E. No clue 8

9 (Text) File readig, a little more slowly Recall text file = sequece of lies Lie = sequece of characters up to ad icludig the special ewlie character \ q q (Special case: probably last set of characters at ed of file will work okay eve if text file does't ed with ewlie as it should.) (How could we fid out?) Ca iterate over text file referece fileref = ope("afile.txt", "r") for lie i fileref: # process each lie process lie as we wish i this block rest of program fileref.close() Typically easiest way to read text file, all other thigs beig equal 9

10 Also: read fileref.read() returs whole gosh dar text file's cotets as sigle strig fileref.read(umber) reads (the ext) umber characters (ewlie couts) as strig read advaces place i file we're readig from After you've read all the way to ed, read will retur empty strig '' Readig a text file: more methods fileref.readlie(): reads ext lie of file ad returs it as strig (up to ad icludig ewlie) fileref.readlies() returs etire file, as a list of oe-lie strigs 10

11 Ope whe uusual characters i file Ope has a optioal third argumet, specifyig a character ecodig Irrelevat most of the time But you may eed it if you are workig with Arabic, Hebrew, Madari, Russia, etc. Or legal materials usig the sectio symbol f = ope('scdb_2016_01_justicecetered_citatio.csv', "r", ecodig='iso ') Structured text files: CSV I 2016, ofte wat to commuicate betwee all sorts of differet electroic tools CSV (comma-separated values) is format used by Excel, ad very commo for exchagig large collectios of data Pytho has a csv module ad it has csv.writer() ad csv.reader() fuctios that could help you q We wo t cover those i this course 11

CS 111: Program Design I Lecture 22: CS: Network Analysis, Degree distribution, Profiling

CS 111: Program Design I Lecture 22: CS: Network Analysis, Degree distribution, Profiling CS 111: Program Desig I Lecture 22: CS: Network Aalysis, Degree distributio, Profilig Robert H. Sloa & Richard Warer Uiversity of Illiois at Chicago November 15, 2018 NETWORK ANALYSIS Which displays a

More information

A study on traffic accident measures in municipal roads by using GIS

A study on traffic accident measures in municipal roads by using GIS icccbe 010 Nottigham Uiversity Press Proceedigs of the Iteratioal Coferece o Computig i Civil ad Buildig Egieerig W Tizai (Editor) A study o traffic accidet measures i muicipal roads by usig GIS Satoshi

More information

Logarithms APPENDIX IV. 265 Appendix

Logarithms APPENDIX IV. 265 Appendix APPENDIX IV Logarithms Sometimes, a umerical expressio may ivolve multiplicatio, divisio or ratioal powers of large umbers. For such calculatios, logarithms are very useful. They help us i makig difficult

More information

Ch 9 Sequences, Series, and Probability

Ch 9 Sequences, Series, and Probability Ch 9 Sequeces, Series, ad Probability Have you ever bee to a casio ad played blackjack? It is the oly game i the casio that you ca wi based o the Law of large umbers. I the early 1990s a group of math

More information

Copywriting. for your. legacy. giving. website

Copywriting. for your. legacy. giving. website Copywritig Basics for your legacy givig website www.imarketsmart.com www.imarketsmart.com 301.289.3670 1 You ve decided to tap ito the greatest trasfer of wealth that the world has ever see by buildig

More information

lecture notes September 2, Sequential Choice

lecture notes September 2, Sequential Choice 18.310 lecture otes September 2, 2013 Sequetial Choice Lecturer: Michel Goemas 1 A game Cosider the followig game. I have 100 blak cards. I write dow 100 differet umbers o the cards; I ca choose ay umbers

More information

Unit 5: Estimating with Confidence

Unit 5: Estimating with Confidence Uit 5: Estimatig with Cofidece Sectio 8.2 The Practice of Statistics, 4 th editio For AP* STARNES, YATES, MOORE Uit 5 Estimatig with Cofidece 8.1 8.2 8.3 Cofidece Itervals: The Basics Estimatig a Populatio

More information

x y z HD(x, y) + HD(y, z) HD(x, z)

x y z HD(x, y) + HD(y, z) HD(x, z) Massachusetts Istitute of Techology Departmet of Electrical Egieerig ad Computer Sciece 6.02 Solutios to Chapter 5 Updated: February 16, 2012 Please sed iformatio about errors or omissios to hari; questios

More information

The Institute of Chartered Accountants of Sri Lanka

The Institute of Chartered Accountants of Sri Lanka The Istitute of Chartered Accoutats of Sri Laka Postgraduate Diploma i Busiess ad Fiace Quatitative Techiques for Busiess Hadout 02:Presetatio ad Aalysis of data Presetatio of Data The Stem ad Leaf Display

More information

Combinatorics. Chapter Permutations. Reading questions. Counting Problems. Counting Technique: The Product Rule

Combinatorics. Chapter Permutations. Reading questions. Counting Problems. Counting Technique: The Product Rule Chapter 3 Combiatorics 3.1 Permutatios Readig questios 1. Defie what a permutatio is i your ow words. 2. What is a fixed poit i a permutatio? 3. What do we assume about mutual disjoitedess whe creatig

More information

5 Quick Steps to Social Media Marketing

5 Quick Steps to Social Media Marketing 5 Quick Steps to Social Media Marketig Here's a simple guide to creatig goals, choosig what to post, ad trackig progress with cofidece. May of us dive ito social media marketig with high hopes to watch

More information

COS 126 Atomic Theory of Matter

COS 126 Atomic Theory of Matter COS 126 Atomic Theory of Matter 1 Goal of the Assigmet Video Calculate Avogadro s umber Usig Eistei s equatios Usig fluorescet imagig Iput data Output Frames Blobs/Beads Estimate of Avogadro s umber 7.1833

More information

APPLICATION NOTE UNDERSTANDING EFFECTIVE BITS

APPLICATION NOTE UNDERSTANDING EFFECTIVE BITS APPLICATION NOTE AN95091 INTRODUCTION UNDERSTANDING EFFECTIVE BITS Toy Girard, Sigatec, Desig ad Applicatios Egieer Oe criteria ofte used to evaluate a Aalog to Digital Coverter (ADC) or data acquisitio

More information

Math 140 Introductory Statistics

Math 140 Introductory Statistics 6. Probability Distributio from Data Math Itroductory Statistics Professor Silvia Ferádez Chapter 6 Based o the book Statistics i Actio by A. Watkis, R. Scheaffer, ad G. Cobb. We have three ways of specifyig

More information

Discrete Mathematics and Probability Theory Spring 2014 Anant Sahai Note 12

Discrete Mathematics and Probability Theory Spring 2014 Anant Sahai Note 12 EECS 70 Discrete Mathematics ad Probability Theory Sprig 204 Aat Sahai Note 2 Probability Examples Based o Coutig We will ow look at examples of radom experimets ad their correspodig sample spaces, alog

More information

P h o t o g r a p h i c E q u i p m e n t ( 1 1 A )

P h o t o g r a p h i c E q u i p m e n t ( 1 1 A ) 9 1 5 8 P h o t o g r a p h i c E q u i p m e t ( 1 1 A ) 30S/30E/30M A Photography Course 9 1 5 8 : P h o t o g r a p h i c E q u i p m e t ( 1 1 A ) 3 0 S / 3 0 E / 3 0 M Course Descriptio This course

More information

Alignment in linear space

Alignment in linear space Sequece Aligmet: Liear Space Aligmet i liear space Chapter 7 of Joes ad Pevzer Q. Ca we avoid usig quadratic space? Easy. Optimal value i O(m + ) space ad O(m) time. Compute OPT(i, ) from OPT(i-1, ). No

More information

Tehrani N Journal of Scientific and Engineering Research, 2018, 5(7):1-7

Tehrani N Journal of Scientific and Engineering Research, 2018, 5(7):1-7 Available olie www.jsaer.com, 2018, 5(7):1-7 Research Article ISSN: 2394-2630 CODEN(USA): JSERBR 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

More information

x 1 + x x n n = x 1 x 2 + x x n n = x 2 x 3 + x x n n = x 3 x 5 + x x n = x n

x 1 + x x n n = x 1 x 2 + x x n n = x 2 x 3 + x x n n = x 3 x 5 + x x n = x n Sectio 6 7A Samplig Distributio of the Sample Meas To Create a Samplig Distributio of the Sample Meas take every possible sample of size from the distributio of x values ad the fid the mea of each sample

More information

X-Bar and S-Squared Charts

X-Bar and S-Squared Charts STATGRAPHICS Rev. 7/4/009 X-Bar ad S-Squared Charts Summary The X-Bar ad S-Squared Charts procedure creates cotrol charts for a sigle umeric variable where the data have bee collected i subgroups. It creates

More information

Blues Soloing Masterclass - Week 1

Blues Soloing Masterclass - Week 1 Table Of Cotets Why Lear the Blues? Tuig The Chromatic Scale ad Notes o the th Strig Notes o the th Strig Commo Notes Betwee the th ad th Strigs The I-IV-V Chord Progressio Chords i Blues Groove: Straight

More information

Table Of Contents Blues Turnarounds

Table Of Contents Blues Turnarounds Table Of Cotets Blues Turarouds Turaroud #1 Turaroud # Turaroud # Turaroud # Turaroud # Turaroud # Turaroud # Turaroud # Turaroud # Blues Turarouds Blues Soloig Masterclass Week 1 Steve Stie A Blues Turaroud

More information

H2 Mathematics Pure Mathematics Section A Comprehensive Checklist of Concepts and Skills by Mr Wee Wen Shih. Visit: wenshih.wordpress.

H2 Mathematics Pure Mathematics Section A Comprehensive Checklist of Concepts and Skills by Mr Wee Wen Shih. Visit: wenshih.wordpress. H2 Mathematics Pure Mathematics Sectio A Comprehesive Checklist of Cocepts ad Skills by Mr Wee We Shih Visit: weshih.wordpress.com Updated: Ja 2010 Syllabus topic 1: Fuctios ad graphs 1.1 Checklist o Fuctios

More information

HELIARC. THE FIRST NAME IN TIG.

HELIARC. THE FIRST NAME IN TIG. HELIARC. THE FIRST NAME IN TIG. YOU AND HELIARC. NOT EVERYONE APPRECIATES THE BEAUTY OF A TRULY GREAT WELD. BUT YOU DO. YOU VE PUT IN THE YEARS AND MASTERED THE ART AND CRAFT OF GTAW (TIG). AND EVER SINCE

More information

Radar emitter recognition method based on AdaBoost and decision tree Tang Xiaojing1, a, Chen Weigao1 and Zhu Weigang1 1

Radar emitter recognition method based on AdaBoost and decision tree Tang Xiaojing1, a, Chen Weigao1 and Zhu Weigang1 1 Advaces i Egieerig Research, volume 8 d Iteratioal Coferece o Automatio, Mechaical Cotrol ad Computatioal Egieerig (AMCCE 7) Radar emitter recogitio method based o AdaBoost ad decisio tree Tag Xiaojig,

More information

PERMUTATIONS AND COMBINATIONS

PERMUTATIONS AND COMBINATIONS www.sakshieducatio.com PERMUTATIONS AND COMBINATIONS OBJECTIVE PROBLEMS. There are parcels ad 5 post-offices. I how may differet ways the registratio of parcel ca be made 5 (a) 0 (b) 5 (c) 5 (d) 5. I how

More information

Speak up Ask questions Find the facts Evaluate your choices Read the label and follow directions

Speak up Ask questions Find the facts Evaluate your choices Read the label and follow directions Whe it comes to usig medicie, it is importat to kow that o medicie is completely safe. The U.S. Food ad Drug Admiistratio (FDA) judges a drug to be safe eough to approve whe the beefits of the medicie

More information

Introduction to OSPF

Introduction to OSPF Itroductio to OSPF ISP Workshops These materials are licesed uder the Creative Commos Attributio-NoCommercial 4.0 Iteratioal licese (http://creativecommos.org/liceses/by-c/4.0/) Last updated 3 rd October

More information

Room Design [ HOW TO SET UP YOUR EVENT SPACE ]

Room Design [ HOW TO SET UP YOUR EVENT SPACE ] Room Desig [ HOW TO SET UP YOUR EVENT SPACE ] There are so may compoets of plaig a evet ad so may decisios! I this article you will lear about some factors that will help you choose the best space for

More information

Five things you should know about our hemophilia care program

Five things you should know about our hemophilia care program Five thigs you should kow about our hemophilia care program 1 We re specialists i hemophilia care 1 If you re readig this booklet, you re probably livig with hemophilia or aother bleedig disorder. Or you

More information

8. Combinatorial Structures

8. Combinatorial Structures Virtual Laboratories > 0. Foudatios > 1 2 3 4 5 6 7 8 9 8. Combiatorial Structures The purpose of this sectio is to study several combiatorial structures that are of basic importace i probability. Permutatios

More information

7. Counting Measure. Definitions and Basic Properties

7. Counting Measure. Definitions and Basic Properties Virtual Laboratories > 0. Foudatios > 1 2 3 4 5 6 7 8 9 7. Coutig Measure Defiitios ad Basic Properties Suppose that S is a fiite set. If A S the the cardiality of A is the umber of elemets i A, ad is

More information

Solution 2 Discussion:

Solution 2 Discussion: Mobile Couicatios Solutio 2 Discussio: 4..2007 Solutio 2.: Multiplexig For ultiplexig, SDMA, TDMA, FDMA, ad CDMA were preseted i the lecture. a.) What liits the uber of siultaeous users i a TDM/FDM syste

More information

Enroll now and discover. In one powerful day, you ll learn how to accomplish your goals with

Enroll now and discover. In one powerful day, you ll learn how to accomplish your goals with I oe powerful day, you ll lear how to accomplish your goals with Eroll ow ad discover 4 How to set challegig goals that make sese 4 The importace of havig a pla ad the techiques to create oe 4 How to evaluate

More information

A d v a n c e d P h o t o g r a p h i c L i g h t i n g ( 1 2 B )

A d v a n c e d P h o t o g r a p h i c L i g h t i n g ( 1 2 B ) 9 1 6 2 A d v a c e d P h o t o g r a p h i c L i g h t i g ( 1 2 B ) 40S/40E/40M A Photography Course 9 1 6 2 : A d v a c e d P h o t o g r a p h i c L i g h t i g ( 1 2 B ) 4 0 S / 4 0 E / 4 0 M Course

More information

Roberto s Notes on Infinite Series Chapter 1: Series Section 2. Infinite series

Roberto s Notes on Infinite Series Chapter 1: Series Section 2. Infinite series Roberto s Notes o Ifiite Series Chapter : Series Sectio Ifiite series What you eed to ow already: What sequeces are. Basic termiology ad otatio for sequeces. What you ca lear here: What a ifiite series

More information

Intermediate Information Structures

Intermediate Information Structures Modified from Maria s lectures CPSC 335 Itermediate Iformatio Structures LECTURE 11 Compressio ad Huffma Codig Jo Roke Computer Sciece Uiversity of Calgary Caada Lecture Overview Codes ad Optimal Codes

More information

11.11 Two-Channel Filter Banks 1/27

11.11 Two-Channel Filter Banks 1/27 . Two-Chael Filter Baks /7 Two-Chael Filter Baks M We wat to look at methods that are ot based o the DFT I geeral we wat to look at Fig..6 rom Porat ad igure out how to choose i & i to get Perect Reco

More information

Chapter (6) Discrete Probability Distributions Examples

Chapter (6) Discrete Probability Distributions Examples hapter () Discrete robability Distributios Eamples Eample () Two balaced dice are rolled. Let X be the sum of the two dice. Obtai the probability distributio of X. Solutio Whe the two balaced dice are

More information

COLLEGE ALGEBRA LECTURES Copyrights and Author: Kevin Pinegar

COLLEGE ALGEBRA LECTURES Copyrights and Author: Kevin Pinegar OLLEGE ALGEBRA LETURES opyrights ad Author: Kevi iegar 8.3 Advaced outig Techiques: ermutatios Ad ombiatios Factorial Notatio Before we ca discuss permutatio ad combiatio formulas we must itroduce factorial

More information

Grade 6 Math Review Unit 3(Chapter 1) Answer Key

Grade 6 Math Review Unit 3(Chapter 1) Answer Key Grade 6 Math Review Uit (Chapter 1) Aswer Key 1. A) A pottery makig class charges a registratio fee of $25.00. For each item of pottery you make you pay a additioal $5.00. Write a expressio to represet

More information

CS 201: Adversary arguments. This handout presents two lower bounds for selection problems using adversary arguments ëknu73,

CS 201: Adversary arguments. This handout presents two lower bounds for selection problems using adversary arguments ëknu73, CS 01 Schlag Jauary 6, 1999 Witer `99 CS 01: Adversary argumets This hadout presets two lower bouds for selectio problems usig adversary argumets ëku73, HS78, FG76ë. I these proofs a imagiary adversary

More information

A d v a n c e d D i g i t a l D a r k r o o m ( 1 2 C )

A d v a n c e d D i g i t a l D a r k r o o m ( 1 2 C ) 9 1 6 3 A d v a c e d D i g i t a l D a r k r o o m ( 1 2 C ) 40S/40E/40M A Photography Course 9 1 6 3 : A d v a c e d D i g i t a l D a r k r o o m ( 1 2 C ) 4 0 S / 4 0 E / 4 0 M Course Descriptio This

More information

Application of Improved Genetic Algorithm to Two-side Assembly Line Balancing

Application of Improved Genetic Algorithm to Two-side Assembly Line Balancing 206 3 rd Iteratioal Coferece o Mechaical, Idustrial, ad Maufacturig Egieerig (MIME 206) ISBN: 978--60595-33-7 Applicatio of Improved Geetic Algorithm to Two-side Assembly Lie Balacig Ximi Zhag, Qia Wag,

More information

Lecture 4: Frequency Reuse Concepts

Lecture 4: Frequency Reuse Concepts EE 499: Wireless & Mobile Commuicatios (8) Lecture 4: Frequecy euse Cocepts Distace betwee Co-Chael Cell Ceters Kowig the relatio betwee,, ad, we ca easily fid distace betwee the ceter poits of two co

More information

Making sure metrics are meaningful

Making sure metrics are meaningful Makig sure metrics are meaigful Some thigs are quatifiable, but ot very useful CPU performace: MHz is ot the same as performace Cameras: Mega-Pixels is ot the same as quality Cosistet ad quatifiable metrics

More information

Density Slicing Reference Manual

Density Slicing Reference Manual Desity Slicig Referece Maual Improvisio, Viscout Cetre II, Uiversity of Warwick Sciece Park, Millbur Hill Road, Covetry. CV4 7HS Tel: 0044 (0) 24 7669 2229 Fax: 0044 (0) 24 7669 0091 e-mail: admi@improvisio.com

More information

I n t r o d u c t i o n t o P h o t o g r a p h y ( 1 0 )

I n t r o d u c t i o n t o P h o t o g r a p h y ( 1 0 ) 9 1 5 7 I t r o d u c t i o t o P h o t o g r a p h y ( 1 0 ) 20S/20E/20M A Photography Course 9 1 5 7 : I t r o d u c t i o t o P h o t o g r a p h y ( 1 0 ) 2 0 S / 2 0 E / 2 0 M Course Descriptio This

More information

PV200. Solar PV tester and I-V curve tracer

PV200. Solar PV tester and I-V curve tracer PV200 Solar PV tester ad I-V curve tracer The PV200 provides a highly efficiet ad effective test ad diagostic solutio for PV systems, carryig out all commissioig tests required by IEC 62446 ad performig

More information

The little book of Big Bolts

The little book of Big Bolts The little book of Big Bolts This guide is iteded as a itroductio to the world of high torques. It gives a overview of the geeral treds i productio, poits to the key areas of process improvemet, presets

More information

Steel. Surface Inspection. Yield Management. Solutions.

Steel. Surface Inspection. Yield Management. Solutions. Steel Surface Ispectio Yield Maagemet Solutios. The Parsytec Flat Steel Solutio Map Casters Slab Decisio (ON01) Material Reassigmet (OP01) Process Aalysis (OP02) Mii Mills Surface Ispectio (SI01) Process

More information

PV210. Solar PV tester and I-V curve tracer

PV210. Solar PV tester and I-V curve tracer PV210 Solar PV tester ad I-V curve tracer The PV210 provides a highly efficiet ad effective test ad diagostic solutio for PV systems, carryig out all commissioig tests required by IEC 62446 ad performig

More information

}, how many different strings of length n 1 exist? }, how many different strings of length n 2 exist that contain at least one a 1

}, how many different strings of length n 1 exist? }, how many different strings of length n 2 exist that contain at least one a 1 1. [5] Give sets A ad B, each of cardiality 1, how may fuctios map A i a oe-tooe fashio oto B? 2. [5] a. Give the set of r symbols { a 1, a 2,..., a r }, how may differet strigs of legth 1 exist? [5]b.

More information

VIII. Shell-Voicings

VIII. Shell-Voicings VIII. Shell-Voicigs A. The Cocept The 5th (ad ofte the root as well) ca be omitted from most 7th-chords. Ratioale: Most chords have perfect 5ths. The P5th is also preset as the rd partial i the overtoe

More information

Join a Professional Association

Join a Professional Association Joi a Professioal Associatio 1. The secret job resource: professioal orgaizatios. You may ot kow this, but the career field you re i, or plaig to work i i the future, probably has at least oe professioal

More information

AMC AMS AMR ACS ACR ASR MSR MCR MCS CRS

AMC AMS AMR ACS ACR ASR MSR MCR MCS CRS Sectio 6.5: Combiatios Example Recall our five frieds, Ala, Cassie, Maggie, Seth ad Roger from the example at the begiig of the previous sectio. The have wo tickets for a cocert i Chicago ad everybody

More information

Final exam PS 30 December 2009

Final exam PS 30 December 2009 Fial exam PS 30 December 2009 Name: UID: TA ad sectio umber: This is a closed book exam. The oly thig you ca take ito this exam is yourself ad writig istrumets. Everythig you write should be your ow work.

More information

E X P E R I M E N T 13

E X P E R I M E N T 13 E X P E R I M E N T 13 Stadig Waves o a Strig Produced by the Physics Staff at Colli College Copyright Colli College Physics Departmet. All Rights Reserved. Uiversity Physics, Exp 13: Stadig Waves o a

More information

Permutation Enumeration

Permutation Enumeration RMT 2012 Power Roud Rubric February 18, 2012 Permutatio Eumeratio 1 (a List all permutatios of {1, 2, 3} (b Give a expressio for the umber of permutatios of {1, 2, 3,, } i terms of Compute the umber for

More information

A study on the efficient compression algorithm of the voice/data integrated multiplexer

A study on the efficient compression algorithm of the voice/data integrated multiplexer A study o the efficiet compressio algorithm of the voice/data itegrated multiplexer Gyou-Yo CHO' ad Dog-Ho CHO' * Dept. of Computer Egieerig. KyiigHee Uiv. Kiheugup Yogiku Kyuggido, KOREA 449-71 PHONE

More information

Design of FPGA- Based SPWM Single Phase Full-Bridge Inverter

Design of FPGA- Based SPWM Single Phase Full-Bridge Inverter Desig of FPGA- Based SPWM Sigle Phase Full-Bridge Iverter Afarulrazi Abu Bakar 1, *,Md Zarafi Ahmad 1 ad Farrah Salwai Abdullah 1 1 Faculty of Electrical ad Electroic Egieerig, UTHM *Email:afarul@uthm.edu.my

More information

COMBINATORICS 2. Recall, in the previous lesson, we looked at Taxicabs machines, which always took the shortest path home

COMBINATORICS 2. Recall, in the previous lesson, we looked at Taxicabs machines, which always took the shortest path home COMBINATORICS BEGINNER CIRCLE 1/0/013 1. ADVANCE TAXICABS Recall, i the previous lesso, we looked at Taxicabs machies, which always took the shortest path home taxipath We couted the umber of ways that

More information

15 min/ Fall in New England

15 min/ Fall in New England 5 mi/ 0+ -4 Fall i New Eglad Before witer makes its appearace, a particularly warm fall bathes the forest i a golde shimmer. Durig the Idia Summer, New Eglad blossoms oe last time. Treetops are ablaze

More information

A New Space-Repetition Code Based on One Bit Feedback Compared to Alamouti Space-Time Code

A New Space-Repetition Code Based on One Bit Feedback Compared to Alamouti Space-Time Code Proceedigs of the 4th WSEAS It. Coferece o Electromagetics, Wireless ad Optical Commuicatios, Veice, Italy, November 0-, 006 107 A New Space-Repetitio Code Based o Oe Bit Feedback Compared to Alamouti

More information

Data Acquisition System for Electric Vehicle s Driving Motor Test Bench Based on VC++ *

Data Acquisition System for Electric Vehicle s Driving Motor Test Bench Based on VC++ * Available olie at www.sciecedirect.com Physics Procedia 33 (0 ) 75 73 0 Iteratioal Coferece o Medical Physics ad Biomedical Egieerig Data Acquisitio System for Electric Vehicle s Drivig Motor Test Bech

More information

A generalization of Eulerian numbers via rook placements

A generalization of Eulerian numbers via rook placements A geeralizatio of Euleria umbers via rook placemets Esther Baaia Steve Butler Christopher Cox Jeffrey Davis Jacob Ladgraf Scarlitte Poce Abstract We cosider a geeralizatio of Euleria umbers which cout

More information

Fingerprint Classification Based on Directional Image Constructed Using Wavelet Transform Domains

Fingerprint Classification Based on Directional Image Constructed Using Wavelet Transform Domains 7 Figerprit Classificatio Based o Directioal Image Costructed Usig Wavelet Trasform Domais Musa Mohd Mokji, Syed Abd. Rahma Syed Abu Bakar, Zuwairie Ibrahim 3 Departmet of Microelectroic ad Computer Egieerig

More information

Department of Electrical and Computer Engineering, Cornell University. ECE 3150: Microelectronics. Spring Due on April 26, 2018 at 7:00 PM

Department of Electrical and Computer Engineering, Cornell University. ECE 3150: Microelectronics. Spring Due on April 26, 2018 at 7:00 PM Departmet of Electrical ad omputer Egieerig, orell Uiersity EE 350: Microelectroics Sprig 08 Homework 0 Due o April 6, 08 at 7:00 PM Suggested Readigs: a) Lecture otes Importat Notes: ) MAKE SURE THAT

More information

D i g i t a l D a r k r o o m ( 1 1 C )

D i g i t a l D a r k r o o m ( 1 1 C ) 9 1 6 0 D i g i t a l D a r k r o o m ( 1 1 C ) 30S/30E/30M A Photography Course 9 1 6 0 : D i g i t a l D a r k r o o m ( 1 1 C ) 3 0 S / 3 0 E / 3 0 M Course Descriptio This course focuses o basic digital

More information

ECONOMIC LOT SCHEDULING

ECONOMIC LOT SCHEDULING ECONOMIC LOT SCHEDULING JS, FFS ad ELS Job Shop (JS) - Each ob ca be differet from others - Make to order, low volume - Each ob has its ow sequece Fleible Flow Shop (FFS) - Limited umber of product types

More information

EMCdownload. Acknowledgements. Fair use

EMCdownload. Acknowledgements. Fair use EMC_Sulight.idd 1 28/03/2013 09:06 Ackowledgemets Writte by Aa Sarchet, with Kate Oliver Edited by Kate Oliver Frot cover: Rebecca Scambler, 2013 Published by The Eglish ad Media Cetre, 2013 for EMCdowload.co.uk

More information

A New Basic Unit for Cascaded Multilevel Inverters with the Capability of Reducing the Number of Switches

A New Basic Unit for Cascaded Multilevel Inverters with the Capability of Reducing the Number of Switches Joural of Power Electroics, ol, o, pp 67-677, July 67 JPE --6 http://dxdoiorg/6/jpe67 I(Prit: 98-9 / I(Olie: 9-78 A ew Basic Uit for Cascaded Multi Iverters with the Capability of Reducig the umber of

More information

Sources of Innovation

Sources of Innovation Sources of Iovatio Case: Give Imagig s Camera Pill v The Camera Pill: A capsule that is swallowed by patiet that broadcasts images of the small itestie v Iveted by Gavriel Idda & team of scietists Idda

More information

PROJECT #2 GENERIC ROBOT SIMULATOR

PROJECT #2 GENERIC ROBOT SIMULATOR Uiversity of Missouri-Columbia Departmet of Electrical ad Computer Egieerig ECE 7330 Itroductio to Mechatroics ad Robotic Visio Fall, 2010 PROJECT #2 GENERIC ROBOT SIMULATOR Luis Alberto Rivera Estrada

More information

Inertial Technology For North Finding Steve Clarke, Applications Engineer.

Inertial Technology For North Finding Steve Clarke, Applications Engineer. Iertial Techology For North Fidig Steve Clarke, Applicatios Egieer. December 2013 To be the leadig provider of affordable, high performace, high itegrity MEMS iertial products ad foudry services 2 Cotets

More information

Sapana P. Dubey. (Department of applied mathematics,piet, Nagpur,India) I. INTRODUCTION

Sapana P. Dubey. (Department of applied mathematics,piet, Nagpur,India) I. INTRODUCTION IOSR Joural of Mathematics (IOSR-JM) www.iosrjourals.org COMPETITION IN COMMUNICATION NETWORK: A GAME WITH PENALTY Sapaa P. Dubey (Departmet of applied mathematics,piet, Nagpur,Idia) ABSTRACT : We are

More information

PRACTICAL FILTER DESIGN & IMPLEMENTATION LAB

PRACTICAL FILTER DESIGN & IMPLEMENTATION LAB 1 of 7 PRACTICAL FILTER DESIGN & IMPLEMENTATION LAB BEFORE YOU BEGIN PREREQUISITE LABS Itroductio to Oscilloscope Itroductio to Arbitrary/Fuctio Geerator EXPECTED KNOWLEDGE Uderstadig of LTI systems. Laplace

More information

PUBLIC VALUE STUDENT AWARD 2016

PUBLIC VALUE STUDENT AWARD 2016 PUBLIC VALUE STUDENT AWARD 2016 Youg Talets Create Societies Good ideas move the world. Good projects chage society. This is exactly what the ew if PUBLIC VALUE STUDENT AWARD is about: cocepts ad product

More information

Wavelet Transform. CSEP 590 Data Compression Autumn Wavelet Transformed Barbara (Enhanced) Wavelet Transformed Barbara (Actual)

Wavelet Transform. CSEP 590 Data Compression Autumn Wavelet Transformed Barbara (Enhanced) Wavelet Transformed Barbara (Actual) Wavelet Trasform CSEP 59 Data Compressio Autum 7 Wavelet Trasform Codig PACW Wavelet Trasform A family of atios that filters the data ito low resolutio data plus detail data high pass filter low pass filter

More information

Playing Leadsheets - Vol. 2

Playing Leadsheets - Vol. 2 Playig Leadsheets - Vol. 2 our first volume of "Playig Leadsheets", e explored ho to play a traditioal chorale-style hym melody ritte i a leadsheet format. this issue, ill sho you ho to improvise the accompaimet

More information

CCD Image Processing: Issues & Solutions

CCD Image Processing: Issues & Solutions CCD Image Processig: Issues & Solutios Correctio of Raw Image with Bias, Dark, Flat Images Raw File r x, y [ ] Dark Frame d[ x, y] Flat Field Image f [ xy, ] r[ x, y] d[ x, y] Raw Dark f [ xy, ] bxy [,

More information

EECE 301 Signals & Systems Prof. Mark Fowler

EECE 301 Signals & Systems Prof. Mark Fowler EECE 3 Sigals & Systems Prof. Mark Fowler Note Set #6 D-T Systems: DTFT Aalysis of DT Systems Readig Assigmet: Sectios 5.5 & 5.6 of Kame ad Heck / Course Flow Diagram The arrows here show coceptual flow

More information

CHAPTER 5 A NEAR-LOSSLESS RUN-LENGTH CODER

CHAPTER 5 A NEAR-LOSSLESS RUN-LENGTH CODER 95 CHAPTER 5 A NEAR-LOSSLESS RUN-LENGTH CODER 5.1 GENERAL Ru-legth codig is a lossless image compressio techique, which produces modest compressio ratios. Oe way of icreasig the compressio ratio of a ru-legth

More information

ECE 333: Introduction to Communication Networks Fall Lecture 4: Physical layer II

ECE 333: Introduction to Communication Networks Fall Lecture 4: Physical layer II ECE 333: Itroductio to Commuicatio Networks Fall 22 Lecture : Physical layer II Impairmets - distortio, oise Fudametal limits Examples Notes: his lecture cotiues the discussio of the physical layer. Recall,

More information

Technical Explanation for Counters

Technical Explanation for Counters Techical Explaatio for ers CSM_er_TG_E Itroductio What Is a er? A er is a device that couts the umber of objects or the umber of operatios. It is called a er because it couts the umber of ON/OFF sigals

More information

Counting on r-fibonacci Numbers

Counting on r-fibonacci Numbers Claremot Colleges Scholarship @ Claremot All HMC Faculty Publicatios ad Research HMC Faculty Scholarship 5-1-2015 Coutig o r-fiboacci Numbers Arthur Bejami Harvey Mudd College Curtis Heberle Harvey Mudd

More information

Design and Construction of a Three-phase Digital Energy Meter

Design and Construction of a Three-phase Digital Energy Meter Desig ad Costructio of a Three-phase Digital Eergy Meter D.P.Chadima, V.G.R.G. Jayawardae, E.A.E.H. Hemachadra, I.N.Jayasekera, H.V.L.Hasaraga, D.C. Hapuarachchi (chadima@elect.mrt.ac.lk, geethagaj@gmail.com,era.hem@gmail.com,ishaivaka@gmail.com,lahiru_hasaraga@yahoo.com,diya_elect.uom@gmail.com)

More information

Writing for Work Moi Ali

Writing for Work Moi Ali DSC SPEED READS COMMUNICATIONS Writig for Work Moi Ali DSC DSC SPEED READS COMMUNICATIONS Writig for Work Moi Ali Writig for Work Moi Ali DIRECTORY OF SOCIAL CHANGE Published by Directory of Social Chage

More information

On Parity based Divide and Conquer Recursive Functions

On Parity based Divide and Conquer Recursive Functions O Parity based Divide ad Coquer Recursive Fuctios Sug-Hyu Cha Abstract The parity based divide ad coquer recursio trees are itroduced where the sizes of the tree do ot grow mootoically as grows. These

More information

Outline. Motivation. Analog Functional Testing in Mixed-Signal Systems. Motivation and Background. Built-In Self-Test Architecture

Outline. Motivation. Analog Functional Testing in Mixed-Signal Systems. Motivation and Background. Built-In Self-Test Architecture Aalog Fuctioal Testig i Mixed-Sigal s Jie Qi Dept. of Electrical & Computer Egieerig Aubur Uiversity Co-Advisors: Charles Stroud ad Foster Dai Outlie Motivatio ad Backgroud Built-I Self-Test Architecture

More information

PERMUTATIONS AND COMBINATIONS

PERMUTATIONS AND COMBINATIONS Chapter 7 PERMUTATIONS AND COMBINATIONS Every body of discovery is mathematical i form because there is o other guidace we ca have DARWIN 7.1 Itroductio Suppose you have a suitcase with a umber lock. The

More information

Technical Requirements for Fixed Line-of-Sight Radio Systems Operating in the Band GHz

Technical Requirements for Fixed Line-of-Sight Radio Systems Operating in the Band GHz Issue 3 December 2010 Spectrum Maagemet ad Telecommuicatios Stadard Radio System Pla Techical Requiremets for Fixed Lie-of-Sight Radio Systems Operatig i the Bad 14.5-15.35 GHz Jauary 2013 - Evelope B

More information

MDM 4U MATH OF DATA MANAGEMENT FINAL EXAMINATION

MDM 4U MATH OF DATA MANAGEMENT FINAL EXAMINATION Caadia Iteratioal Matriculatio rogramme Suway Uiversity College MDM 4U MTH OF DT MNGEMENT FINL EXMINTION Date: November 28 th, 2006 Time: 11.30a.m 1.30p.m Legth: 2 HOURS Lecturers: lease circle your teacher

More information

Single Bit DACs in a Nutshell. Part I DAC Basics

Single Bit DACs in a Nutshell. Part I DAC Basics Sigle Bit DACs i a Nutshell Part I DAC Basics By Dave Va Ess, Pricipal Applicatio Egieer, Cypress Semicoductor May embedded applicatios require geeratig aalog outputs uder digital cotrol. It may be a DC

More information

Human-Computer Interaction IS 4300

Human-Computer Interaction IS 4300 Huma-Computer Iteractio IS 4300 Prof. Timothy Bickmore Overview for Today Overview of the Course Logistics Overview of Team Projects Itroductios Overview of HCI Some basic cocepts 1 Relatioal Agets Group

More information

AMC AMS AMR ACS ACR ASR MSR MCR MCS CRS

AMC AMS AMR ACS ACR ASR MSR MCR MCS CRS Sectio 6.5: Combiatios Example Recall our five frieds, Ala, Cassie, Maggie, Seth ad Roger from the example at the begiig of the previous sectio. The have wo tickets for a cocert i Chicago ad everybody

More information

Cross-Layer Performance of a Distributed Real-Time MAC Protocol Supporting Variable Bit Rate Multiclass Services in WPANs

Cross-Layer Performance of a Distributed Real-Time MAC Protocol Supporting Variable Bit Rate Multiclass Services in WPANs Cross-Layer Performace of a Distributed Real-Time MAC Protocol Supportig Variable Bit Rate Multiclass Services i WPANs David Tug Chog Wog, Jo W. Ma, ad ee Chaig Chua 3 Istitute for Ifocomm Research, Heg

More information

Control Charts MEC-13. Causes of Variation 12/3/2016

Control Charts MEC-13. Causes of Variation 12/3/2016 Variatio due to Assigable Causes Variatio mostly due to Commo Causes Variatio due to Assigable Causes Outlie Basic Terms MEC-13 Cotrol Charts Types of Cotrol Charts with their purpose Creatig Cotrol Charts

More information

A SELECTIVE POINTER FORWARDING STRATEGY FOR LOCATION TRACKING IN PERSONAL COMMUNICATION SYSTEMS

A SELECTIVE POINTER FORWARDING STRATEGY FOR LOCATION TRACKING IN PERSONAL COMMUNICATION SYSTEMS A SELETIVE POINTE FOWADING STATEGY FO LOATION TAKING IN PESONAL OUNIATION SYSTES Seo G. hag ad hae Y. Lee Departmet of Idustrial Egieerig, KAIST 373-, Kusug-Dog, Taejo, Korea, 305-70 cylee@heuristic.kaist.ac.kr

More information

COMPRESSION OF TRANSMULTIPLEXED ACOUSTIC SIGNALS

COMPRESSION OF TRANSMULTIPLEXED ACOUSTIC SIGNALS COMPRESSION OF TRANSMULTIPLEXED ACOUSTIC SIGNALS Mariusz Ziółko, Przemysław Sypka ad Bartosz Ziółko Departmet of Electroics, AGH Uiversity of Sciece ad Techology, al. Mickiewicza 3, 3-59 Kraków, Polad,

More information