Contents Maryland High School Programming Contest 1. 1 Stacked Floating Mountains 2. 2 Chess Puzzle 3. 3 Life Connections 4

Size: px
Start display at page:

Download "Contents Maryland High School Programming Contest 1. 1 Stacked Floating Mountains 2. 2 Chess Puzzle 3. 3 Life Connections 4"

Transcription

1 2010 Marylan High School Programming Contest 1 Contents 1 Stacke Floating Mountains 2 2 Chess Puzzle 3 3 Life Connections 4 4 Circle of Friens 5 5 Floating Mountain Stability 6 6 Aim It Right! 7 7 Navi Navigation 8 8 Locate Mining Center 10

2 2010 Marylan High School Programming Contest 2 1 Stacke Floating Mountains The floating mountains of Panora present a challenge for the human scientists, especially geologists an physicists, who have been trying to unerstan how such structures coul exist. While exploring the mountains, the scientists stumble across interesting stacke floating mountain structures, where ifferent mountains appeare stacke above one other, with the larger mountains being higher up in the stack. The scientists were able to calculate the size of each mountain, an they mae an interesting observation: that the sizes of the mountains forme a (generalize) Fibbonacci sequence. A sequence of numbers: x 1, x 2,..., x n, is calle a generalize Fibbonacci sequence if, for all i > 2, x i = x i 1 + x i 2 The stanar Fibbonacci sequence is simply a generalize Fibbonacci sequence with x 1 = x 2 = 1. An example of generalize Fibbonacci sequence is: 2, 5, 7, 12, 19,... Your goal is to help the scientists verify this conjecture. Specifically, you are to write a program that, given a sequence of numbers, ecies whether the sequence is a generalize Fibbonacci sequence or not. The first line in the test ata file contains the number of test cases, n. After that, each line contains one test case. The test case begins with the number of elements in the sequence, k, an then we have k numbers which form the sequence. Assume all numbers are 0, an that the numbers are all < For each test case, you are to output YES (if the sequence is a generalize Fibbonacci sequence) or NO (if it is not). 3 YES NO YES

3 2010 Marylan High School Programming Contest 3 2 Chess Puzzle Jake an Sully are playing aroun with a chessboar one night after working with their avatars all ay. They ecie it woul be interesting to place some rooks on the chessboar in a way that no rook can threaten another rook. Since rooks move along rows an columns, this means two rooks may not be on the same row or column. Your goal is to write a program to etermine whether any rooks are threatene. Chessboars are 8x8 boars with positions between (1,1) an (8,8). The input begins with the number of chess boars. Each chessboar is on a separate line an begins with the number of rooks, followe by the column an row positions of each rook. For each chessboar, your program shoul output the wors SAFE or NOT SAFE on a single line. 2 SAFE NOT SAFE

4 2010 Marylan High School Programming Contest 4 3 Life Connections On Panora all Navi are connecte by frienships. After carefully mapping frienships between ifferent Navi, Grace wants to measure the strength of the connection between pairs of Navi. She ecies the way to calculate this is to treat Navi as noes in a graph, an frienships between Navi as eges. Then the connection strength between two Navi can be efine as the number ifferent shortest paths each coul take to visit the other. Your goal is to help her calculate these values. Given a list of connections between Navi an two Navi u an v, you must compute the number of ifferent shortest paths between u an v. The length of the path is the number of Navi on the path. Two paths are ifferent if they pass through at least one ifferent Navi. Connections between Navi are escribe beginning with the line GRAPH BEGIN. Aitional lines lists iniviual Navi (noes), followe (on the same line) by their friens (eges). The line GRAPH END ens the list of connection escriptions. The next lines escribe pairs of Navi for which answers nee to be calculate, each on a single line. Following these lines, a new instance of the problem can be given, starting from scratch. You may assume all Navi are connecte (i.e., any Navi can reach another Navi by some path). Not all Navi will have their connections liste on a separate line: the frienships of some Navi may only be implie by the frienships given on other lines. Your output shoul consist of pairs of Navi in the same orer as in the input, followe by the number of shortest paths between them, both on a single line. For instance, in the following example the strength of the connection between Navi a an e is 2, since there are 2 paths of length 3 (the shortest possible) from a to e (a b e an a c e). Example: Example Example GRAPH BEGIN a b 1 a b c a c 1 b a 2 c a e 2 e b c 2 GRAPH END b e 1 a b a c a a e b c b e c a e b

5 2010 Marylan High School Programming Contest 5 4 Circle of Friens After measuring the strength of frienships between ifferent Navi, Grace wants to fin groups of Navi who form close-knit frienships. A group of friens has strength k if each Navi in the group has at least k friens within the group. Your goal is to help Grace fin the strongest, largest circle of friens for iniviual Navi. Connections between Navi are escribe beginning with the line GRAPH BEGIN. Aitional lines lists iniviual Navi, followe (on the same line) by their friens. The line GRAPH END ens the list of connection escriptions. The next lines escribe iniviual Navi to be analyze, each on a single line. Following these lines, a completely new instance of the problem can be given, starting from scratch. Some Navi may be only be liste as friens of other Navi (i.e., not all Navi will have their connections liste on a separate line). Your output shoul consist of one line for each Navi analyze, in the same orer they were liste in the input. Each line shoul contain the name of the Navi, the largest k for which the Navi is a member of some group of friens of strength k, an all the friens in that group (in alphabetical orer), incluing themselves. Every Navi in the group must know the initial Navi either irectly or inirectly through some sequence of common friens (i.e., the frienship graph must be connecte). In the example below, Navi c is a member of a group of friens of strength 3: bce. She is also a member of several groups of friens of strength 2 (bc, bce, ce,... ) but because 3 > 2, the group of strength 3 is the one that shoul be output. Navi f is a member of several groups of strength 1 (ef, bef, ef,... ) but the largest one is abcef, so that is the one that shoul be output. Example: GRAPH BEGIN a b c b c e c e e f GRAPH END a b c e f a 2 a b c e b 3 b c e c 3 b c e 3 b c e e 3 b c e f 1 a b c e f c a b e c 3 b c e f

6 2010 Marylan High School Programming Contest 6 5 Floating Mountain Stability After receiving your program from Problem 1, the scientists use it to try to verify their conjecture (that the sizes of stacke floating mountains forme a generalize Fibbonacci sequence). However, although they were able to verify the conjecture for a large number of cases, they iscovere that there were stacke structures that i not satisfy the property. Further, they also iscovere that floating mountains may have negative weights (they conjecture that this has to o with some unique properties of Unobtainium ). The scientists now believe that the sizes of the stacke mountains i follow generalize Fibbonacci sequence property originally (when they were forme), but they believe that some of the mountains in the structures may have been estroye or may have rifte apart. They further observe that at most 9 consecutive mountains in the stack may be remove without compromising the stability of the structure. They are now trying to verify this new conjecture. You are to write a program for this purpose. Specifically, given a sequence of numbers, some of which may be negative, you must etermine if the numbers are part of a generalize Fibbonacci sequence (let s call it the original sequence), such that all consecutive pairs of numbers in the input sequence are less than 10 apart (i.e., fewer than 9 items between any consecutive pair of numbers) in the original generalize Fibbonacci sequence. As an example, the sequence: , follows this property because the numbers are from the following generalize Fibbonacci sequence: an 0 & 6 are only 4 numbers apart in the generalize sequence. As another example: the sequence , also satisfies the property. Here is the corresponing generalize Fibbonacci sequence: The first line in the test ata file contains the number of test cases, n. After that, each line contains one test case. The test case begins with the number of elements in the sequence, k (k < 50), an then we have k numbers which form the sequence. Assume the numbers are all > 2 30 an < For each test case, you are to output STABLE (if the sequence satisfies the property) followe by the first five elements of the generalize Fibbonacci sequence (beginning with the first number in the input sequence), or UNSTABLE (if it oes not). If multiple generalize Fibbonacci sequences are possible, select the sequence with the smallest gap (i.e., number of missing numbers) between the first two numbers. 3 STABLE STABLE UNSTABLE

7 2010 Marylan High School Programming Contest 7 6 Aim It Right! There are many similarities between the human an the Navi cultures an lifestyles. For instance, their sports an boargames bear similarities to ifferent sports an games on Earth. But at the same time, there are significant ifferences (e.g., instea of water polo, they play air polo on their Banshees). There is also a version of Billiars, which is quite similar to our version, but with the ifference that their Billiars table has a large circular hole right at the center (see figure). Of course, a person who hits the ball into that hole immeiately loses. Jake an Tsu tey start a frienly game of Billiars which soon turns into a not-so-frienly game with possibly the leaership of the Omaticaya at stake. In each roun, they take turns. At each turn, an impartial juge places the cue ball at one location on the table (call it point A) an another ball somewhere else (call it point B). The person whose turn it is, must hit the ball at point B from point A with minimum number of rebouns off the walls of the table (see figure). Your goal is to help Jake win the game an retain his leaership (otherwise he will have to try to tame Toruk once again, an only so many times you can survive that). Given the input parameters, you are to fin the minimum number of rebouns neee to get from point A to point B (or eclare that it is not possible to o so). Assume the boar is perfectly frictionless an the walls are infinitely elastic. So a ball hit at an angle θ 1 will reboun in the opposite irection at exactly the same angle. The Billiars table is a square with imensions 100 by 100. Assume that the center of the table (an hence the center of the hole at the mile) is at (0, 0). You are given the x an y coorinates of the points A an B, an also the raius of the hole in the mile (r). The first line of the input file is the number of test cases. Each line contains 5 integers: A x, A y, B x, B y, r, where (A x, A y ) are the coorinates of point A, an (B x, B y ) are the coorinates of point B. The value r enotes the raius. You can assume that neither point A nor point B are in the hole, an that r < 50. For each test case, you are to fin the minimum number of rebouns neee to reach from point A to point B. If it is less than 10, output on a single line REBOUNDS followe by the number of rebouns neee. If it is not possible to hit point B from point A in < 10 rebouns, output on a single line NOT POSSIBLE. 2 REBOUNDS NOT POSSIBLE θ 1 θ 1 A B

8 2010 Marylan High School Programming Contest 8 7 Navi Navigation The Navi villages on Panora are part of gigantic hometrees. Hometrees specialize in proucing ifferent types of fruits that Navi like to eat. Neytiri s mother Mo at asks her to calculate the shortest path between two given hometrees that allows Mo at to collect every ifferent type of fruit exactly once. Your goal is to help Neytiri calculate these paths. Warning: since there are many hometrees on Panora, you will not be able to simply examine all possible paths an select the least expensive. Paths between hometrees are escribe beginning with the line GRAPH BEGIN. Aitional lines lists iniviual hometrees (noes), the type of fruit prouce by the hometree, the istance to the neighboring hometrees, followe (on the same line) by their neighboring hometrees (eges). The line GRAPH END ens the list of connection escriptions. The next lines escribe pairs of hometrees for which answers nee to be calculate, each on a single line. Following these lines, a completely new instance of the problem can be given, starting from scratch. You may assume any hometree can reach any other hometree by some path. Each hometree will be liste at least once as the first item on some line between the GRAPH BEGIN an GRAPH END. The same hometree can be liste more than once with ifferent istance values, but it must always have the same type of fruit assigne to it. Iniviual connections can appear at most once. It is vali to list only a hometree an its color (specifying no new connections). Fruit names will be integers. Not all integers have to be use, however. Your path nee only try to collect fruits that at least one tree grows. Your output shoul consist of pairs of hometrees in the same orer as in the input, followe by the length of the shortest path between them that collects each type of fruit exactly once. If such a path oes not exist, you shoul output NONE. In the first example below, the path a b c collects all the fruit types (1, 2, 3, an 5) an the path has length 4.0. No goo path exists between a an c, however: the path a b c c woul collect all the fruit types, but it collects fruit 1 twice!

9 2010 Marylan High School Programming Contest 9 GRAPH BEGIN a 4.0 a 3 1 b e a c NONE b 2 2 c h e 6.0 c e 2 GRAPH END a a c GRAPH BEGIN e 1 2 f e 1 3 g f 2 g 2 h 3 4 g f GRAPH END h e e 1 2 a 1 b 2 c Shae boxes give the type of fruit grown at each noe.

10 2010 Marylan High School Programming Contest 10 8 Locate Mining Center As part of a peace treaty with the Navi, the humans are allowe mine for Unobtainium in a remote, eserte area of Panora. The scientists have ientifie many possible excavation sites, an are now trying to figure out where to place the Mining Center. The placement of the mining center is further constraine by the fact that the robots that will carry the Unobtainium from the excavation sites to the mining center can only walk along prespecifie Gri lines (see figure). The goal is now to fin the location of the mining center so that the maximum istance to the excavation sites is minimize. You are to write a program for fining that location. Specifically, you are given the x- an y-coorinates of the excavations sites, (x 1, y 1 ), (x 2, y 2 ),...(x n, y n ) (n enotes the number of excavation sites). You are to fin the coorinates for the Mining Center, (x 0, y 0 ), so that the maximum of the istances between the mining center an the excavation sites is minimize. All coorinates must be integers. The istance metric to be use is the rectilinear istance (also calle Manhattan istance). Specifically, the rectilinear istance between (x 0, y 0 ) an (x i, y i ) is: x i x 0 + y i y 0 Further, if there are multiple locations which qualify, then you must fin the location that is closest to the origin by Eucliean istance metric. Since origin is at (0, 0), this correspons to minimizing x y2 0. In other wors, given the input (x 1, y 1 ),..., (x n, y n ), your goal is to fin (x 0, y 0 ) such that: max( x i x 0 + y i y 0 ) i is minimize, an if there are multiple answers, then x y2 0 is the smallest among all such answers.

11 2010 Marylan High School Programming Contest 11 The first line in the test ata file contains the number of test cases, n. After that, each line contains one test case. The test case begins with the number of mines, followe by the x an y coorinates of each mine. All coorinates must be integers. Very large coorinate values may be use (million+), so brute force methos will not work. For each test case, you are to output a line beginning with LOCATION, followe by the x an y coorinates of the mining center. All coorinates must be integers. 2 LOCATION LOCATION

12 2010 Marylan High School Programming Contest 12 Practice 1 Checkerboar Rows Colonel Quaritch is playing checkers one ay, an ecies it woul be interesting to write a program to calculate the maximum number of pieces on a single row. Checkerboars are 8x8 boars with positions between (1,1) an (8,8). The input begins with the number of boars. Each boar is on a separate line an begins with the number of pieces, followe by the column an row positions of each piece. For each checkerboar, your program shoul output the maximum number pieces on any one row

13 2010 Marylan High School Programming Contest 13 Practice 2 Mining Maps Aministrator Selfrige is analyzing possible mining routes on Panora. He has collecte some ata in the form of a graph. Your goal is to help him collect some information about each graph. Connections between mines are escribe beginning with the line GRAPH BEGIN. Aitional lines lists iniviual mines (noes), followe (on the same line) by their neighboring mines (eges). The line GRAPH END ens the list of path escriptions. The entire problem may be repeate as esire, starting from scratch each time. Some mines may appear only as neighboring mines, without being escribe on a separate line. Your output shoul consist one line (for each graph analyze), consisting of NODES followe by the number of noes, followe by EDGES an the number of eges in the graph. GRAPH BEGIN NODES 3 EDGES 2 a b NODES 6 EDGES 7 b c GRAPH END GRAPH BEGIN a b c b c e f e f GRAPH END e f b a c

14 2010 Marylan High School Programming Contest 14 Practice 3 Hauling Ore Aministrator Selfrige is analyzing possible mining routes on Panora. He has collecte some ata in the form of a graph. The latest ore carriers can visit exactly 3 mining camps. Your goal is to help him fin out which mines may be visite from other mines with 2 stops (but not fewer). Connections between mines are escribe beginning with the line GRAPH BEGIN. Aitional lines lists iniviual mines (noes), followe (on the same line) by their neighboring mines (eges). The line GRAPH END ens the list of path escriptions. The next lines list mines for which answers nee to be calculate, each on a single line. Following these lines, a completely new instance of the problem can be given, starting from scratch. Some mines may appear only as neighboring mines, without being escribe on a separate line. Mine names can be arbitrary strings, as long as they on t contain any whitespace. Your output shoul consist one line (for each mine analyze), consisting of the name of the mine, followe by the mines, in alphabetical orer, that can be visite with exactly 2 stops but not fewer, starting from the given mine. GRAPH BEGIN a b c b c e f GRAPH END a b c e f e f a c b f b e e f b a c

Construction of Power Efficient Routing Tree for Ad Hoc Wireless Networks using Directional Antenna

Construction of Power Efficient Routing Tree for Ad Hoc Wireless Networks using Directional Antenna Construction of Power Efficient Routing Tree for A Hoc Wireless Networks using Directional Antenna Qing Dai an Jie Wu Department of Computer Science an Engineering Floria Atlantic University Boca Raton,

More information

Wind sculpture. Cable 2. Cable 1. Sculpture

Wind sculpture. Cable 2. Cable 1. Sculpture Win sculpture Your frien, an artist, has been thinking about an interesting way to isplay a new win sculpture she has just create. In orer to create an aural as well as visual effect, she woul like to

More information

A NEW PUZZLE FOR ITERATED COMPLETE GRAPHS OF ANY DIMENSION

A NEW PUZZLE FOR ITERATED COMPLETE GRAPHS OF ANY DIMENSION A NEW PUZZLE FOR ITERATED COMPLETE GRAPHS OF ANY DIMENSION ELIZABETH SKUBAK AND NICHOLAS STEVENSON ADVISOR: PAUL CULL OREGON STATE UNIVERSITY ABSTRACT. The Towers of Hanoi puzzle can be use to label a

More information

Indoor Positioning Using Ultrasound and Radio Combination

Indoor Positioning Using Ultrasound and Radio Combination Inoor Positioning Using Ultrasoun an Raio Combination Gintautas Salcius, Evalas Povilaitis, Algimantas Tacilauskas Centre of Real Time Computer Systems, Kaunas University of Technology Stuentu St. 50,

More information

Train Shunting. Christian Schulte. October 25, 2013

Train Shunting. Christian Schulte. October 25, 2013 Problem Description Train Shunting Christian Schulte October 25, 2013 You are in charge of shunting (Sweish: växla) wagons of a train. In the following we assume that each wagon is self riving an that

More information

The Analysis and Complementarity of Abbe Principle Application Limited in Coordinate Measurement

The Analysis and Complementarity of Abbe Principle Application Limited in Coordinate Measurement Proceeings of the Worl Congress on Engineering 00 Vol III The Analysis an Complementarity of Abbe Principle Application Limite in Coorinate Measurement Fei Yetai, Shang Ping, Chen Xiaohuai, Huang Qiangxian

More information

USA Mathematical Talent Search Round 2 Solutions Year 29 Academic Year

USA Mathematical Talent Search Round 2 Solutions Year 29 Academic Year athematical alent earch Year 29 caemic Year 2017-2018 Important information: 1. You must show your work an prove your answers on all problems. If you just sen a numerical answer with no proof for a problem

More information

Research on the Selection Strategy for Optimal Anchor Nodes Based on Ant Colony Optimization

Research on the Selection Strategy for Optimal Anchor Nodes Based on Ant Colony Optimization Sensors & Transucers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com Research on the Selection Strategy for Optimal Anchor Noes Base on Ant Colony Optimization Baoxin ZHAO, Bi ZENG Guangong

More information

KEY FEATURES TEST CAPABILITIES 8000S HIGH POWER EARTH TESTING SYSTEM STANDARDS COMPLIANCE

KEY FEATURES TEST CAPABILITIES 8000S HIGH POWER EARTH TESTING SYSTEM STANDARDS COMPLIANCE KEY FEATURES 8000S HIGH POWER EARTH TESTING SYSTEM High power earth systems (Substations, Transmission towers, etc) have to be perioically monitore to check if they comply with safety levels establishe

More information

SSM2040 Filter Analysis Part 1 - Ryan Williams

SSM2040 Filter Analysis Part 1 - Ryan Williams SSM2040 Filter Analysis Part 1 - Ryan Williams http://www.siy.org/estrukto The following analysis is use to etermine the maximum bias current neee for the iscrete OTA cells in the ssm2040 filter (René

More information

An Intelligent 3D User Interface Adapting to User Control Behaviors

An Intelligent 3D User Interface Adapting to User Control Behaviors An Intelligent 3D User Interface Aapting to User Control Behaviors Tsai-Yen Li Computer Science Department National Chengchi University Taipei, Taiwan 11623, R.O.C. +886 2 2938 7170 li@nccu.eu.tw Shu-Wei

More information

Using Chaos to Detect IIR and FIR Filters

Using Chaos to Detect IIR and FIR Filters PIERS ONLINE, VOL. 6, NO., 00 90 Using Chaos to Detect IIR an FIR Filters T. L. Carroll US Naval Research Lab, Coe 66, Washington, DC 07, USA Abstract In many signal processing applications, IIR an FIR

More information

1.0 MEASUREMENT OF PARAXIAL PROPERTIES OF OPTICAL SYSTEMS

1.0 MEASUREMENT OF PARAXIAL PROPERTIES OF OPTICAL SYSTEMS .0 MEASUREMENT OF PARAXIAL PROPERTIES OF OPTICAL SYSTEMS James C. Wyant Optical Sciences Center University of Arizona Tucson, AZ 8572 jcwyant@u.arizona.eu If we wish to completely characterize the paraxial

More information

16 DESEMBER AC to AC VOLTAGE CONVERTERS

16 DESEMBER AC to AC VOLTAGE CONVERTERS DSMBR AC to AC VOLTAG CONVRTRS THR PHAS AC RGULATORS Instructional Objectives Stuy of the following: The circuits use for the threephase ac regulators (ac to ac voltage converters) The operation of the

More information

Experimental Approach for Determining the Received Pattern of a Rascan Holographic Radar Antenna

Experimental Approach for Determining the Received Pattern of a Rascan Holographic Radar Antenna Eperimental Approach for Determining the Receive Pattern of a Rascan Holographic Raar Antenna Masaharu Inagaki Geophysical survey epartment Walnut Lt. Tachikawa, Japan ina_mas@beige.plala.or.jp Timothy

More information

Relay Deployment and Power Control for Lifetime Elongation in Sensor Networks

Relay Deployment and Power Control for Lifetime Elongation in Sensor Networks Relay Deployment an Power Control for Lifetime Elongation in Sensor Networks Yufeng Xin, Tuna Güven, Mark Shayman Institute of Avance Computer Stuies University of Marylan, College Park, MD 074 e-mail:

More information

IN GENERAL, an optical network can consist of a

IN GENERAL, an optical network can consist of a 1 Geometric Capacity Provisioning for Wavelength-Switche WDM Networks Li-Wei Chen, Eytan Moiano Abstract In this paper, we use an asymptotic analysis similar to the sphere-packing argument in the proof

More information

Chapter 9 answers. Section 9.1. Worked example: Try yourself Heinemann Physics 12 4e APPLYING HUYGENS PRINCIPLE

Chapter 9 answers. Section 9.1. Worked example: Try yourself Heinemann Physics 12 4e APPLYING HUYGENS PRINCIPLE Chapter 9 answers Heinemann Physics 12 4e Section 9.1 Worke example: Try yourself 9.1.1 APPLYING HUYGENS PRINCIPLE On the circular waves shown below, sketch some of the seconary wavelets on the outer wavefront

More information

BI-DIRECTIONAL MIXED SIGNAL CONNECTION MODULES FOR AUTOMATIC INSERTION

BI-DIRECTIONAL MIXED SIGNAL CONNECTION MODULES FOR AUTOMATIC INSERTION BI-DIRECTIONAL MIXED SIGNAL CONNECTION MODULES FOR AUTOMATIC INSERTION Olaf Zinke Caence Design Systems San Diego, CA, USA oinke@caence.com Abstract Efficient simulation of mie signal esigns requires the

More information

Musical Wind Instrument Analysis

Musical Wind Instrument Analysis Musical Win Instrument Analysis Darren, Murray Campbell Department of Acoustics an Flui Dynamics, University of Einburgh, EH9 3JZ, Einburgh, Scotlan D.A.@sms.e.ac.uk,.m.campbell@e.ac.uk The acoustic impeance

More information

SECONDARY TRANSMISSION POWER OF COGNITIVE RADIOS FOR DYNAMIC SPECTRUM ACCESS

SECONDARY TRANSMISSION POWER OF COGNITIVE RADIOS FOR DYNAMIC SPECTRUM ACCESS SECONDARY TRANSMISSION POWER OF COGNITIVE RADIOS FOR DYNAMIC SPECTRUM ACCESS Xiaohua Li 1 1 Department of ECE State University of New York at Binghamton Binghamton, NY 139, USA {xli,jhwu1}@binghamton.eu

More information

Ray tracing in an inhomogeneous medium

Ray tracing in an inhomogeneous medium /7/1 Waves WKB ray tracing 1 Ray tracing in an inhomogeneous meium Raio waves can "bounce off" the ionosphere, particularly if they are incient at an angle. The inex of refraction of the ionosphere changes

More information

Math 32A Discussion Session Week 9 Notes November 28 and 30, 2017

Math 32A Discussion Session Week 9 Notes November 28 and 30, 2017 Math 3A Discussion Session Week 9 Notes November 8 an 30, 07 This week we ll explore some of the ieas from chapter 5, focusing mostly on the graient. We ll motivate this exploration with an example that

More information

Page 1. Overview : Wireless Networks Lecture 7: Cellular Networks. The advent of cellular networks. The cellular network design.

Page 1. Overview : Wireless Networks Lecture 7: Cellular Networks. The advent of cellular networks. The cellular network design. Overview 18-759: Wireless Networks Lecture 7: Cellular Networks Dina Papagiannaki & Peter Steenkiste Departments of Computer Science an Electrical an Computer Engineering Spring Semester 2009 http://www.cs.cmu.eu/~prs/wireless09/

More information

CS188: Section Handout 1, Uninformed Search SOLUTIONS

CS188: Section Handout 1, Uninformed Search SOLUTIONS Note that for many problems, multiple answers may be correct. Solutions are provided to give examples of correct solutions, not to indicate that all or possible solutions are wrong. Work on following problems

More information

Resource Allocation for Cooperative Transmission in Wireless Networks with Orthogonal Users

Resource Allocation for Cooperative Transmission in Wireless Networks with Orthogonal Users Resource Allocation for Cooperative Transmission in Wireless Networks with Orthogonal Users D. Richar Brown III Electrical an Computer Engineering Department Worcester Polytechnic Institute Worcester,

More information

AN-1140 APPLICATION NOTE

AN-1140 APPLICATION NOTE APPLICATION NOTE One Technology Way P.O. Box 9106 Norwoo, MA 02062-9106, U.S.A. Tel: 781.329.4700 Fax: 781.461.3113 www.analog.com Microphone Array Beamforming by Jera Lewis INTRODUCTION All MEMS microphones

More information

Replanning of Optical Networks based on Defragmentation Techniques

Replanning of Optical Networks based on Defragmentation Techniques Replanning of Optical Networks base on Defragmentation Techniques Daniela Aguiar Moniz aniela.moniz@tecnico.ulisboa.pt Instituto Superior Técnico, Lisboa, Portugal November 2015 Abstract The traffic growth

More information

A COMPACT, TOTALLY PASSIVE, MULTI-PASS SLAB LASER AMPLIFIER BASED ON STABLE, DEGENERATE OPTICAL RESONATORS

A COMPACT, TOTALLY PASSIVE, MULTI-PASS SLAB LASER AMPLIFIER BASED ON STABLE, DEGENERATE OPTICAL RESONATORS A COMPACT, TOTALLY PASSIVE, MULTI-PASS SLAB LASER AMPLIFIER BASED ON STABLE, DEGENERATE OPTICAL RESONATORS John J. Degnan, Sigma Space Corporation, Lanham, MD 76 USA John.Degnan@sigmaspace.com, FAX: +---9

More information

Principal Component Analysis-Based Compensation for Measurement Errors Due to Mechanical Misalignments in PCB Testing

Principal Component Analysis-Based Compensation for Measurement Errors Due to Mechanical Misalignments in PCB Testing Principal Component Analysis-Base Compensation for Measurement Errors Due to Mechanical Misalignments in PCB Testing Xin He 1, Yashwant Malaiya 2, Anura P. Jayasumana 1 Kenneth P. Parker 3 an Stephen Hir

More information

MODELLING OF GPS SIGNAL LARGE SCALE PROPAGATION CHARACTERISTICS IN URBAN AREAS FOR PRECISE NAVIGATION

MODELLING OF GPS SIGNAL LARGE SCALE PROPAGATION CHARACTERISTICS IN URBAN AREAS FOR PRECISE NAVIGATION Int. J. Elec&Electr.Eng&Telcomm. 2012 G Sateesh Kumar et al., 2012 Research Paper ISSN 2319 2518 www.ijeetc.com Vol. 1, No. 1, October 2012 2012 IJEETC. All Rights Reserve MODELLING OF GPS SIGNAL LARGE

More information

Lightning Protection Optimization for Large Wind Turbines with Method-of-Moments

Lightning Protection Optimization for Large Wind Turbines with Method-of-Moments Lightning Protection Optimization for Large Win Turbines with Metho-of-Moments Florian Krug, Ralph Teichmann General Electric - Global Research Freisinger Lanstrasse 50, 85748 Munich, GERMAY Ulrich Jakobus,

More information

QoS Topology Control in Ad Hoc Wireless Networks

QoS Topology Control in Ad Hoc Wireless Networks QoS Topology Control in A Hoc Wireless Networks Xiaohua Jia, Deying Li Dept of Computer Science City University of Hong Kong Hong Kong, China Dingzhu Du Dept of Computer Science an Engineering University

More information

TL-W5MD1 2M *1 *3 TL-W5MD2 2M

TL-W5MD1 2M *1 *3 TL-W5MD2 2M Flat Inuctive CSM DS_E Stanar Flat s in Many Different Variations Only mm thick yet provies a sensing istance of mm (MC). ie-cast moels also available. Be sure to rea Safety Precautions on page 7. For

More information

THe notion of the disease [1] has been extended from

THe notion of the disease [1] has been extended from IEEE/ACM TRANSACTIONS ON NETWORK SCIENCE AND ENGINEERING, VOL., NO., 6 Effective Network Quarantine with Minimal Restrictions on Communication Activities uanyang Zheng an Jie Wu, Fellow, IEEE Abstract

More information

INTERFERENCE REJECTION PERFORMANCE AS A MEANS OF FREQUENCY OPTIMISATION IN A MIXED CELLULAR/MANET NETWORK

INTERFERENCE REJECTION PERFORMANCE AS A MEANS OF FREQUENCY OPTIMISATION IN A MIXED CELLULAR/MANET NETWORK ITERFERECE REJECTIO PERFORMACE A A MEA OF FREQUECY OPTIMIATIO I A MIXED CELLULAR/MAET ETORK Kayonne ebley Faculty Avisor: Dr. Richar Dean Department of Electrical an Computer Engineering Morgan tate University

More information

Taylor, Muthiah, Kulakowski, Mahoney and Porter 1 AN ARTIFICIAL NEURAL NETWORK SPEED PROFILE MODEL FOR HIGH- SPEED HIGHWAY CONSTRUCTION WORK ZONES

Taylor, Muthiah, Kulakowski, Mahoney and Porter 1 AN ARTIFICIAL NEURAL NETWORK SPEED PROFILE MODEL FOR HIGH- SPEED HIGHWAY CONSTRUCTION WORK ZONES Taylor, Muthiah, Kulakowski, Mahoney an Porter 1 AN ARTIFICIAL NEURAL NETWORK SPEED PROFILE MODEL FOR HIGH- SPEED HIGHWAY CONSTRUCTION WORK ZONES Submission Date: August 1, 2005 Wor Count: 57 wors DOUGLAS

More information

COMPTON SCATTERING. Phys 2010 Brown University March 13, 2009

COMPTON SCATTERING. Phys 2010 Brown University March 13, 2009 COMPTON SCATTERING Phys 00 Brown University March 3, 009 Purpose The purpose of this experiment is to verify the energy epenence of gamma raiation upon scattering angle an to compare the ifferential cross

More information

Balanced-energy Sleep Scheduling Scheme for High Density Cluster-based Sensor Networks

Balanced-energy Sleep Scheduling Scheme for High Density Cluster-based Sensor Networks Balance-energy Sleep Scheuling Scheme for High Density Cluster-base Sensor Networks Jing Deng, unghsiang S. Han, Weni B. Heinzelman, an Pramo K. Varshney Abstract In orer to conserve battery power in very

More information

A General Algorithm for Interference Alignment and Cancellation in Wireless Networks

A General Algorithm for Interference Alignment and Cancellation in Wireless Networks A General Algorithm for Interference Alignment an Cancellation in Wireless Networks Li Erran Li, Richar Alimi, Dawei Shen, Harish Viswanathan an Y. Richar Yang Bell Labs MIT Yale University Abstract Physical

More information

Optical schemes of spectrographs with a diffractive optical element in a converging beam

Optical schemes of spectrographs with a diffractive optical element in a converging beam J. ur. Opt. Soc.-api 0, 50 205 www.jeos.org Optical schemes of spectrographs with a iffractive optical element in a converging beam.. Muslimov Kazan National esearch Technical University - KAI, Kazan,

More information

Counting Things. Tom Davis March 17, 2006

Counting Things. Tom Davis   March 17, 2006 Counting Things Tom Davis tomrdavis@earthlink.net http://www.geometer.org/mathcircles March 17, 2006 Abstract We present here various strategies for counting things. Usually, the things are patterns, or

More information

Model Operation mode TL-W5MD1 2M *1 *2 TL-W5MD2 2M *2 NPN TL-W5MC1 2M PNP TL-W1R5MB1 2M --- PNP TL-W3MB1 2M *2 TL-W3MB2 2M *2

Model Operation mode TL-W5MD1 2M *1 *2 TL-W5MD2 2M *2 NPN TL-W5MC1 2M PNP TL-W1R5MB1 2M --- PNP TL-W3MB1 2M *2 TL-W3MB2 2M *2 Flat Inuctive CSM DS_E Stanar Flat s in Many Different Variations Only mm thick yet provies a sensing istance of mm (MC). ie-cast moels also available. Be sure to rea Safety Precautions on page 7. For

More information

Measurement of Semi-Anechoic Chamber Using Modified VSWR method above 1GHz

Measurement of Semi-Anechoic Chamber Using Modified VSWR method above 1GHz Measurement of Semi-Anechoic Chamber Using Moifie VSWR metho above 1GHz M. Bittera, K. Kováč, J. Hallon Department of Measurement, Faculty of Electrical Engineering an Information Technology, Slovak University

More information

Machine Interpretable Representation of Commander s Intent I-188. Per M. Gustavsson. Michael R. Hieb Lars Niklasson Philip Moore Patric Eriksson

Machine Interpretable Representation of Commander s Intent I-188. Per M. Gustavsson. Michael R. Hieb Lars Niklasson Philip Moore Patric Eriksson Machine Interpretable Representation of Commaner s Intent I-188 Per M. Gustavsson Michael R. Hieb Lars Niklasson Philip Moore Patric Eriksson 2 bjectives Present the perations Intent an Effects Moel (IEM)

More information

Multiple safety light barrier

Multiple safety light barrier Technical escription Multiple safety light barrier Switching evice to wire alternatively: 1-4 safety light barriers Type WN 304-5 Plastic housing IP65 Type WN 314-5 Sheet-metal housing IP20 Type WN 304-5M

More information

2.35 Tuning PID Controllers

2.35 Tuning PID Controllers 2.35 Tuning PID Controllers P. W. MURRILL (1970) P. D. SCHNELLE, JR. (1985) B. G. LIPTÁK (1995) J. GERRY, M. RUEL, F. G. SHINSKEY (2005) In orer for the reaer to fully unerstan the content an concepts

More information

RECENTLY, the 2G standard GSM was enhanced by

RECENTLY, the 2G standard GSM was enhanced by 274 IEEE TRANSACTIONS ON WIREESS COMMUNICATIONS, VO. 5, NO. 2, FEBRUARY 2006 The Training Sequence Coe Depenence of EDGE Receivers using Zero IF Sampling Martin Krueger, Member, IEEE, Robert Denk, an Bin

More information

Benford's Law and Possibilities for Its Use in Governmental Statistics 1

Benford's Law and Possibilities for Its Use in Governmental Statistics 1 Benfor's Law an Possibilities for Its Use in Governmental Statistics 1 Richar Hinls 2 University of Economics, Prague, Czech Republic Stanislava Hronová 3 University of Economics, Prague, Czech Republic

More information

Series. Teacher. Numbers

Series. Teacher. Numbers Series B Teaher Numers Series B Numers Contents Stuent ook answers Assessment 79 Stuent progress reor 3 Assessment answers 4 Ojetives 4 6 Series Author: Rahel Flenley Copyright Series PB B Numers Series

More information

Minimum-Energy Broadcast in All-Wireless Networks: NP-Completeness and Distribution Issues

Minimum-Energy Broadcast in All-Wireless Networks: NP-Completeness and Distribution Issues Minimum-Energy Broacast in All-Wireless Networks: NP-Completeness an Distribution Issues Mario Čagal LCA-EPFL CH-05 Lausanne Switzerlan mario.cagal@epfl.ch Jean-Pierre Hubaux LCA-EPFL CH-05 Lausanne Switzerlan

More information

We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists. International authors and editors

We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists. International authors and editors We are IntechOpen, the worl s leaing publisher of Open Access books Built by scientists, for scientists 3,500 108,000 1.7 M Open access books available International authors an eitors Downloas Our authors

More information

Chapter 7 MONEY MONEY

Chapter 7 MONEY MONEY Chapter 7 MONEY A In Australia we use ecimal currency. We use 5-cent, 10-cent, 20-cent, 50-cent, 1 ollar an 2 ollar coins. A ollar sign is written like this, so we write 1 ollar as 1, an 2 ollars as 2.

More information

Daniel Plotnick. November 5 th, 2017 Mock (Practice) AMC 8 Welcome!

Daniel Plotnick. November 5 th, 2017 Mock (Practice) AMC 8 Welcome! November 5 th, 2017 Mock (Practice) AMC 8 Welcome! 2011 = prime number 2012 = 2 2 503 2013 = 3 11 61 2014 = 2 19 53 2015 = 5 13 31 2016 = 2 5 3 2 7 1 2017 = prime number 2018 = 2 1009 2019 = 3 673 2020

More information

Grooving & Sizing. Chamfering. Tooling for CNC machines, includes solutions for both basic and advanced applications.

Grooving & Sizing. Chamfering. Tooling for CNC machines, includes solutions for both basic and advanced applications. Tooling for machines, inclues solutions for both basic an avance applications. All tools are prouce from high quality steel. High quality carbie, aaptable graes to suit cutting requirements. namictm soli

More information

ETSI GS mwt 004 V1.1.1 ( )

ETSI GS mwt 004 V1.1.1 ( ) GS mwt 004 V1.1.1 (2016-06) GROUP SPECIFICATION millimetre Wave Transmission (mwt); V-ban street level interference analysis Disclaimer The present ocument has been prouce an approve by the millimetre

More information

Single- and Double-View Digital Holographic Diagnostics for Sprays

Single- and Double-View Digital Holographic Diagnostics for Sprays ILASS Americas, 1 st Annual Conference on Liqui Atomization an Spray Systems, Orlano, Floria, May 18-1 008 Single- an Double-View Digital Holographic Diagnostics for Sprays D. S. Olinger, J. Lee, A. Osta,

More information

2009 ACM ICPC Southeast USA Regional Programming Contest. 7 November, 2009 PROBLEMS

2009 ACM ICPC Southeast USA Regional Programming Contest. 7 November, 2009 PROBLEMS 2009 ACM ICPC Southeast USA Regional Programming Contest 7 November, 2009 PROBLEMS A: Block Game... 1 B: Euclid... 3 C: Museum Guards... 5 D: Knitting... 7 E: Minesweeper... 9 F: The Ninja Way... 10 G:

More information

39 th JUNIOR HIGH SCHOOL MATHEMATICS CONTEST APRIL 29, 2015

39 th JUNIOR HIGH SCHOOL MATHEMATICS CONTEST APRIL 29, 2015 THE CALGARY MATHEMATICAL ASSOCIATION 39 th JUNIOR HIGH SCHOOL MATHEMATICS CONTEST APRIL 29, 2015 NAME: GENDER: PLEASE PRINT (First name Last name) (optional) SCHOOL: GRADE: (9,8,7,... ) You have 90 minutes

More information

12. 6 jokes are minimal.

12. 6 jokes are minimal. Pigeonhole Principle Pigeonhole Principle: When you organize n things into k categories, one of the categories has at least n/k things in it. Proof: If each category had fewer than n/k things in it then

More information

Teaching Control Using NI Starter Kit Robot

Teaching Control Using NI Starter Kit Robot UKACC International Conference on Control 2012 Cariff, UK, 3-5 September 2012 Teaching Control Using NI Starter Kit Robot Payman Shakouri, Member IEEE, (Research stuent) Gorana Collier, Member IEEE, Anrzej

More information

Southeastern European Regional Programming Contest Bucharest, Romania Vinnytsya, Ukraine October 21, Problem A Concerts

Southeastern European Regional Programming Contest Bucharest, Romania Vinnytsya, Ukraine October 21, Problem A Concerts Problem A Concerts File: A.in File: standard output Time Limit: 0.3 seconds (C/C++) Memory Limit: 128 megabytes John enjoys listening to several bands, which we shall denote using A through Z. He wants

More information

MODULE III. Foundations Of Data Communications And The Physical Layer

MODULE III. Foundations Of Data Communications And The Physical Layer MODULE III Founations Of Data Communications An The Physical Layer Computer Networks an Internets -- Moule 3 1 Spring, 2014 Copyright 2014. All rights reserve. Topics Motivation an moel Information sources

More information

Introduction to Wireless Communication Systems ECE 476/ECE 501C/CS 513 Winter 2003

Introduction to Wireless Communication Systems ECE 476/ECE 501C/CS 513 Winter 2003 Introuction to Wireless ommunication Systems EE 476/EE 5/S 53 Winter 3 Review for Exam # April 5, 3 Exam Details Must follow seating chart - Poste 3 minutes before exam. heating will be treate very seriously.

More information

Radio Range Adjustment for Energy Efficient Wireless Sensor Networks. Electronic Engineering, Aston University, Birmingham B4 7ET,United Kingdom b

Radio Range Adjustment for Energy Efficient Wireless Sensor Networks. Electronic Engineering, Aston University, Birmingham B4 7ET,United Kingdom b Raio Range Ajustment for Energy Efficient Wireless Sensor Networks Q. Gao a,, K. J. Blow a 1, D. J. Holing a, I. W. Marshall b, X. H. Peng a a Electronic Engineering, Aston University, Birmingham B4 7ET,Unite

More information

A Turnover based Adaptive HELLO Protocol for Mobile Ad Hoc and Sensor Networks

A Turnover based Adaptive HELLO Protocol for Mobile Ad Hoc and Sensor Networks A Turnover base Aaptive HELLO Protocol for Mobile A Hoc an Sensor Networks François Ingelrest, Nathalie Mitton, Davi Simplot-Ryl To cite this version: François Ingelrest, Nathalie Mitton, Davi Simplot-Ryl.

More information

arxiv: v1 [cs.cl] 14 Sep 2018

arxiv: v1 [cs.cl] 14 Sep 2018 Automatic Catchphrase Extraction from Legal Case Documents via Scoring using Deep Neural Networks Vu Tran, Minh Le Nguyen, an Ken Satoh arxiv:1809.05219v1 [cs.cl] 14 Sep 2018 Japan Avance Institute of

More information

Improving the Near-Metal Performance of UHF RFID Tags

Improving the Near-Metal Performance of UHF RFID Tags Improving the Near-Metal Performance of UHF RFID Tags Daniel D. Deavours Information an Telecommunications Technology Center University of Kansas, Lawrence, KS Email: eavours@ittc.ku.eu Abstract It is

More information

EXPERIMENTAL DEMONSTRATION OF MULTIPLE ROBOT COOPERATIVE TARGET INTERCEPT

EXPERIMENTAL DEMONSTRATION OF MULTIPLE ROBOT COOPERATIVE TARGET INTERCEPT EXPERIMENTAL DEMONSTRATION OF MULTIPLE ROBOT COOPERATIVE TARGET INTERCEPT Timothy W. McLain Ranal W. Bear Je M. Kelsey Department of Mechanical Engineering, Brigham Young University, Provo, Utah 86 Department

More information

Shadowing Correlation Model for Indoor Multi-hop Radio Link in Office Environment

Shadowing Correlation Model for Indoor Multi-hop Radio Link in Office Environment JAVA, International Journal of Electrical Electronics Engineering Volume 4, Number, April 26 Shaowing Moel for Inoor Multi-hop Raio Link in Office Environment Mohamma Fahli Inustrial Engineering Department

More information

WIND TURBINE AMPLITUDE MODULATION NOISE DUE TO TIME- DEPENDENT INTERFERENCE

WIND TURBINE AMPLITUDE MODULATION NOISE DUE TO TIME- DEPENDENT INTERFERENCE WIND TURBINE AMPLITUDE MODULATION NOISE DUE TO TIME- DEPENDENT INTERFERENCE Abstract Stuart Braley Physics Department, University of Aucklan, Private Bag 9019, Aucklan, New Zealan Email: s.braley@aucklan.ac.nz

More information

BRITISH COLUMBIA SECONDARY SCHOOL MATHEMATICS CONTEST, 2006 Senior Preliminary Round Problems & Solutions

BRITISH COLUMBIA SECONDARY SCHOOL MATHEMATICS CONTEST, 2006 Senior Preliminary Round Problems & Solutions BRITISH COLUMBIA SECONDARY SCHOOL MATHEMATICS CONTEST, 006 Senior Preliminary Round Problems & Solutions 1. Exactly 57.4574% of the people replied yes when asked if they used BLEU-OUT face cream. The fewest

More information

Acoustical Localization in Schools of Submersibles

Acoustical Localization in Schools of Submersibles Oceans 6, Singapore (authors manuscript o not istribute) Acoustical Localization in Schools of Submersibles Navina Kottege & Uwe R. Zimmer Research School of Information Sciences an Engineering Autonomous

More information

Review I. October 14, 2008

Review I. October 14, 2008 Review I October 14, 008 If you put n + 1 pigeons in n pigeonholes then at least one hole would have more than one pigeon. If n(r 1 + 1 objects are put into n boxes, then at least one of the boxes contains

More information

Indoor Wireless Planning using Smart Antennas

Indoor Wireless Planning using Smart Antennas Inoor Wireless Planning using Smart Antennas Ali Abbasi an Maji Ghaeri Department of Computer Science, University of Calgary Emails: {abbasi, mghaeri}@ucalgary.ca Abstract This paper consiers the problem

More information

MAT3707. Tutorial letter 202/1/2017 DISCRETE MATHEMATICS: COMBINATORICS. Semester 1. Department of Mathematical Sciences MAT3707/202/1/2017

MAT3707. Tutorial letter 202/1/2017 DISCRETE MATHEMATICS: COMBINATORICS. Semester 1. Department of Mathematical Sciences MAT3707/202/1/2017 MAT3707/0//07 Tutorial letter 0//07 DISCRETE MATHEMATICS: COMBINATORICS MAT3707 Semester Department of Mathematical Sciences SOLUTIONS TO ASSIGNMENT 0 BARCODE Define tomorrow university of south africa

More information

HOW SYMMETRICAL COMPONENTS MAY HELP TO SUPPRESS VOLTAGE SENSORS IN DIRECTIONAL RELAYS FOR DISTRIBUTION NETWORKS

HOW SYMMETRICAL COMPONENTS MAY HELP TO SUPPRESS VOLTAGE SENSORS IN DIRECTIONAL RELAYS FOR DISTRIBUTION NETWORKS C E D 17 th nternational Conference on Electricity Distribution Barcelona, 12-15 May 2003 HOW SYMMETCAL COMPONENTS MAY HELP TO SUPPESS VOLTAGE SENSOS N DECTONAL ELAYS FO DSTBUTON NETWOKS Xavier LE PVET

More information

Masking Effects of Audio Systems with Non-flat Frequency Response

Masking Effects of Audio Systems with Non-flat Frequency Response Copyright 2005 SAE International 2005-01-0567 Masking Effects of Auio Systems with Non-flat Response Richar S. Strou Strou Auio Inc. ABSTRACT An automotive auio system typically emonstrates an irregular

More information

DETERMINATION OF OPTIMAL DIRECT LOAD CONTROL STRATEGY USING LINEAR PROGRAMMING

DETERMINATION OF OPTIMAL DIRECT LOAD CONTROL STRATEGY USING LINEAR PROGRAMMING DETERMINATION OF OPTIMAL DIRECT LOAD CONTROL STRATEGY USING LINEAR PROGRAMMING Zelko Popovic Distribution engineer Rae Koncara 57, 24300 Backa Topola, Yugoslavia Phone: +38 24 74 220 Fax: +38 24 74 898

More information

The investment casting process can produce

The investment casting process can produce T E C H N I C L U P T E esigning for Investment Castings Te investment casting process can prouce almost any sape from almost any alloy. s wit all processes, owever, esigning for te process can lower cost

More information

ANALYSIS AND DESIGN OF MAPPINGS FOR ITERATIVE DECODING OF BICM 1

ANALYSIS AND DESIGN OF MAPPINGS FOR ITERATIVE DECODING OF BICM 1 Fran Schrecenbach an Patric Henel Institute for Communications Engineering (LNT) Munich University of Technology (TUM) 8090 Munich, Germany fran.schrecenbach@tum.e Norbert Görtz School of Engineering an

More information

Code-Carrier Divergence Monitoring for the GPS Local Area Augmentation System

Code-Carrier Divergence Monitoring for the GPS Local Area Augmentation System Coe-Carrier Divergence Monitoring for the GPS Local Area Augmentation System Dwaraanath V. Simili an Boris Pervan, Illinois Institute of Technology, Chicago, IL Abstract Coe-carrier smoothing is a commonly

More information

Synergy Round. Warming Up. Where in the World? Scrabble With Numbers. Earning a Gold Star

Synergy Round. Warming Up. Where in the World? Scrabble With Numbers. Earning a Gold Star Synergy Round Warming Up Where in the World? You re standing at a point on earth. After walking a mile north, then a mile west, then a mile south, you re back where you started. Where are you? [4 points]

More information

Series. Teacher. Numbers

Series. Teacher. Numbers Series C Teaher Numers Series C Numers Contents Stuent ook answers Assessment 79 Stuent progress reor Assessment answers 3 Ojetives 5 Series Author: Rahel Flenley Copyright Series C Numers Page a Page

More information

a Student sentence typed on unlined white paper for illustrating. a We Share Everything by Robert Munsch (or another book of your choice).

a Student sentence typed on unlined white paper for illustrating. a We Share Everything by Robert Munsch (or another book of your choice). Transforming our Teaching through Reaing/Writing Connections SESSION 5 Reaing an Writing Lots of Texts Five-Day Lesson Plan, Kinergarten (K 2) (90-to-150-minute reaing/writing block) Teacher Note: This

More information

How hard are computer games? Graham Cormode, DIMACS

How hard are computer games? Graham Cormode, DIMACS How hard are computer games? Graham Cormode, DIMACS graham@dimacs.rutgers.edu 1 Introduction Computer scientists have been playing computer games for a long time Think of a game as a sequence of Levels,

More information

Autonomous docking of a tracked wheels robot to its tether cable using a vision-based algorithm

Autonomous docking of a tracked wheels robot to its tether cable using a vision-based algorithm Autonomous ocking of a tracke wheels robot to its tether cable using a vision-base algorithm Fausto Ferreira an Rorigo Ventura Abstract Search an Rescue (SAR) Robotics has been gaining an increasing interest

More information

2008 High School Math Contest Draft #3

2008 High School Math Contest Draft #3 2008 High School Math Contest Draft #3 Elon University April, 2008 Note : In general, figures are drawn not to scale! All decimal answers should be rounded to two decimal places. 1. On average, how often

More information

Lecture 18: Mobile Radio Propagation: Large Scale Prop. Modeling. Mobile Radio Propagation: Large Scale Propagation Modeling

Lecture 18: Mobile Radio Propagation: Large Scale Prop. Modeling. Mobile Radio Propagation: Large Scale Propagation Modeling EE 499: Wireless & Mobile Communications (08) Mobile Raio Propagation: Large Scale Propagation Moeling Raio Wave Propagation Raio waves suffer from several cannel problems as tey travel troug te air. Some

More information

Problem 2A Consider 101 natural numbers not exceeding 200. Prove that at least one of them is divisible by another one.

Problem 2A Consider 101 natural numbers not exceeding 200. Prove that at least one of them is divisible by another one. 1. Problems from 2007 contest Problem 1A Do there exist 10 natural numbers such that none one of them is divisible by another one, and the square of any one of them is divisible by any other of the original

More information

Floating-point Unit (FPU) Designs with Nano-electromechanical (NEM) Relays

Floating-point Unit (FPU) Designs with Nano-electromechanical (NEM) Relays Floating-point Unit (FPU) Designs with Nano-electromechanical (NEM) Relays by Sumit Dutta B.S., Electrical Engineering, University of Illinois at Urbana-Champaign, 2011 Submitte to the Department of Electrical

More information

An Analysis of Reliable MAC Layer Multicast in Wireless Networks

An Analysis of Reliable MAC Layer Multicast in Wireless Networks An Analysis of Reliable MAC Layer Multicast in Wireless etworks Yoooc Song, Junho Chung, Wookyung Sung, Bosung Kim, Dowon Hyun an Juwook Jang Department of lectronic ngineering, Sogang University. mail:

More information

ROLLING ELEMENT BEARING FREQUENCIES FROM 1986 FOILES REPORT, ROLLING ELEMENT BEARING FREQUENCIES 1. INTRODUCTION

ROLLING ELEMENT BEARING FREQUENCIES FROM 1986 FOILES REPORT, ROLLING ELEMENT BEARING FREQUENCIES 1. INTRODUCTION ROLLING ELEMENT BEARING FREQUENCIES FROM 1986 FOILES REPORT, ROLLING ELEMENT BEARING FREQUENCIES WILLIAM C. FOILES 1. INTRODUCTION FIGURE 1. Rolling element bearing geometry These calculate frequencies

More information

Homework Assignment #1

Homework Assignment #1 CS 540-2: Introduction to Artificial Intelligence Homework Assignment #1 Assigned: Thursday, February 1, 2018 Due: Sunday, February 11, 2018 Hand-in Instructions: This homework assignment includes two

More information

Wireless Event-driven Networked Predictive Control Over Internet

Wireless Event-driven Networked Predictive Control Over Internet UKACC International Conference on Control 22 Cariff, UK, 3-5 September 22 Wireless Event-riven Networke Preictive Control Over Internet Wenshan Hu, Hong Zhou, an Qijun Deng Abstract In networke control

More information

WLAN based Pose Estimation for Mobile Robots

WLAN based Pose Estimation for Mobile Robots Proceeings of the 17th Worl Congress The International Feeration of Automatic Control WLAN base Pose Estimation for Mobile Robots Christof Röhrig an Frank Künemun University of Applie Sciences Dortmun,

More information

New Values for Top Entails

New Values for Top Entails Games of No Chance MSRI Publications Volume 29, 1996 New Values for Top Entails JULIAN WEST Abstract. The game of Top Entails introduces the curious theory of entailing moves. In Winning Ways, simple positions

More information

AN APPLICATION OF A GENERALISED JAKES MODEL FOR MIMO CHANNELS

AN APPLICATION OF A GENERALISED JAKES MODEL FOR MIMO CHANNELS AN APPLICATION OF A GENERALISED JAKES MODEL FOR MIMO CHANNELS Davi B. Smith (1) (1) Faculty of Engineering (Telecommunications), University of Technology Syney PO Box 13 Broaway NS 007 Australia E-mail:

More information

Exponential Interpolation Technique for Scanning Electron Microscope Signal-to-Noise Ratio Estimation.

Exponential Interpolation Technique for Scanning Electron Microscope Signal-to-Noise Ratio Estimation. 184 Int'l Conf. IP, Comp. Vision, an Pattern Recognition IPCV'16 Exponential Interpolation Technique for Scanning Electron Microscope Signal-to-Noise Ratio Estimation. Z.X.Yeap1, K.S.Sim 1 1 Faculty of

More information

Fashion Coordinates Recommender System using Photographs from Fashion Magazines

Fashion Coordinates Recommender System using Photographs from Fashion Magazines Fashion Coorinates Recommener System using Photographs from Fashion Magazines Tomoharu Iwata Shinji Watanabe Hiroshi Sawaa NTT Communication Science Laboratories 2-4 Hiariai, Seia-cho, Sorau-gun, Kyoto,

More information