Actas do Encontro Científico 3º Festival Nacional de Robótica - ROBOTICA2003 Lisboa, 9 de Maio de 2003.

Size: px
Start display at page:

Download "Actas do Encontro Científico 3º Festival Nacional de Robótica - ROBOTICA2003 Lisboa, 9 de Maio de 2003."

Transcription

1 Actas do Enconto Científico 3º Festival Nacional de Robótica - ROBOTICA23 Lisboa, 9 de Maio de 23. PATH PLANNING OPTIMIZATION USING THE DIFFERENTIAL EVOLUTION ALGORITHM Hélde Santos, José Mendes, P. B. de Moua Oliveia and J. Boaventua Cunha Univesidade de Tás-os-Montes e Alto Douo Depatamento de Engenhaias Quinta dos Pados, 5 Vila Real Potugal opt_tajectoias@mail.pt Abstact: In this pape the Diffeential Evolution algoithm is deployed to the obotic path planning optimization poblem fo autonomous mobile vehicles. At this stage, the simulations conside the obot wold with level sufaces and static obstacles, in which the optimization is pefomed off-line. The global objective is to evaluate the diffeential evolutionay algoithm in solving path planning poblems, by finding the shotest path between stat and goal points. Results obtained fo thee case studies with static cicula and polygonal obstacles ae pesented. Keywods: Evolutionay Algoithms, Diffeential Evolution, Optimization, Path Planning, Obstacles Avoidance, Vehicle Routing. 1. INTRODUCTION One of the obotics main eseach field is the contol algoithms development which allows obot mobility in a envionment suounded by obstacles. In this context, the path planning poblem plays an impotant ole by poviding tajectoies to avoid obstacles. Thee ae seveal well known methods of path planning. Its choice depends on the comple xity and quality of the wold whee the vehicle will move, as well as the vehicle s qualities. Thee ae some citeia to evaluate the planning, such as path length, time spent, obstacle distance o the complexity and smoothness of the path. The elevance of applying efficient optimization algoithms to solve tajectoy optimization poblems is unquestionable. This is the case of evolutionay inspied algoithms, paticulaly the popula genetic algoithms (Goldbeg, 1989; Michalewicz, 1992). One moe ecently intoduced algoithm is the Diffeential Evolution poposed by Pice and Ston (1995) which povides good esults in the context of function optimization (Ston, 1996). This pape descibes the off-line optimization of mobile obots tajectoies using the Diffeential Evolution Algoithm, consideing a wold with level sufaces and obstacles epesented by ound and polygonal shapes. The path is fomed by stait line segments. The oveall objective of the expected wok is to acess the Diffeential Evolution algoithm in the context of obotic path planning optimization using evolutionay inspied techniques. The optimization objective is to achieve the shotest path, between two points, avoiding any obstacle in the way. The est of this pape is oganized as follows in section two an intoduction to the Diffeential Algoithm is povided. Section thee descibes the off-line path planning poblem consideed. In section fou simulation esults ae pesented and finally in section five some conclusions ae dawn. 2. DIFFERENTIAL EVOLUTION The Diffeential Evolution (DE) algoithm was oiginally developed by Pice and Ston (1995). The solution of this algoithm, to addess the path planning poblem, was based upon its efficiency, effectiveness and obustness in the optimization of functions (Ston, 1996). The DE can be easily implemented to solve seveal types of optimization poblems, such as path planning. Assuming that a vecto x epesented by (1) epesents a candidate solution to the path optimization poblem, in which t epesents the cuent evolutionay iteation, a new solution vecto x ( t +1) can be evaluated fom the pevious vecto by using equation (2), with δ (3), epesenting an

2 incemental vecto. v x ( t) x ( t) x ( t),, x ( t) = 1, 2 K n (1) x + 1 δ (2) ( t ) = x( t) + ( t) δ ( t) = δ 1( t), δ 2 ( t), K, δ n ( t) (3) Consideing a set pop of potential solutions with size m, epesented by (4), known as population (2) can be ewitten as (5) with d epesenting the dimension index. xid ( x ( t), x ( t),, x ( t ) i m popi( t) = i1 i2 K in 1 (4) ( t + 1) = ( t) + δ ( t + 1) 1 i m 1 d n x id id (5) A tial x n v R vecto is geneated in each iteation fo each population membe using (6) and the incement δ is evaluated using (7). In these expessions x, x and x ae vectos selected 1 2 andomly fom the population set pop, in each iteation, and F R+ is a constant defined pio to optimization. xvid 1 i δ id 1 i m ( t + 1) = x d ( t) + δ id ( t + 1) 1 m 1 d n [ 1, m] i 3 ( t + 1) = F x ( ) ( ) 2d t x 3d t 1 d n 2 [ 1, m] i 3 [ 1, m] i ( ) 1 3 (6) (7) The tial vecto obtained with (6) and (7) is then cossed with the cuent population element x accodingly to a cossove scheme, binomial o exponential (Ston and Pice, 1995), with a pedefined pobability defined by CR [,1 ] esulting in a new vecto x ci (8). If the value etuned by the objective function f fo the cossed tial vecto is bette o equal than the value obtained fo the cuent vecto, the latest is eplaced by the fome. This is epesented by (9) fo a minimization poblem. xi xci i vi ( t + 1) = cossove ( x ( t), x ( t + 1) ) 1 i m x c i x c i 1 i m i ( t + 1) = ( t + 1) if f ( ( t + 1) ) < f ( x ( t + 1) ) i (8) (9) [Initialization of the population vecto] Initialize pop_new; [matix with andom values] Initialize best; [best vecto] Initialize best_value; [best value] Fom j = until maximum numbe of iteations: [Copies the initialized matix to a geneal one] pop = pop_new; Fom i = until m: [Chooses andomly thee numbes between and m] 1 = a vecto index diffeent fom i; 2 = a vecto index diffeent fom i and 1; 3 = a vecto index diffeent fom i, 1 and 2; [Saves the vecto i ] temp = pop( i, :); [The following equation changes with the stategy] xv = pop( 1) + F*( pop( 2) - pop( 3) ); [Evaluate the new temp vecto] xc=cossove(xv,xi) Value_new = evaluation(xc); Value_old = evaluation(pop( i )) ; If (Value_new < Value_old) do: [It means that the new vecto is bette] pop_new( i, :) = xc; If (value_new < value_best) do: [Best value eve] value_best = value_new; best = temp; else [Keeps the old value] pop_new( i,:) = pop_old( i, :); i = i + 1; end j = j + 1; end Fig. 1. A Pseudo-code fo the DE algoithm. The diffeent stategies poposed fo this algoithm ae, basically, vey simila, diffeing in the evaluation of the x R n v vecto. Pice and Ston (1995) poposed ten diffeent options that can be classified using the notation DE/X/Y/Z, whee: - X: epesents the methodology used to select vecto 1, which can be andom selected (and) o the best population so fa (best). - Y: the numbe of vectos used to evaluate the diffeential petubation: - Z: Is the type of cossove opeation used which can eithe be of the exponential (exp) type o binay (bin) type. Thus, ten DE algoithm vaiations can be summaized by: 1) DE/best/1/exp; 2) DE/and/1/exp; 3) DE/and-to-best/1/exp; 4) DE/best/2/exp; 5) DE/and/2/exp; 6) DE/best/1/bin; 7) DE/and/1/bin; 8) DE/and-to-best/1/bin; 9) DE/best/2/bin and 1)DE/and/2/bin, and ae well descibed in ( Pice, 22). Figue 2 illustates the DE basic concept (Lampinem J. and Zelinka, 1999), and it is impotant to note that this algoithm does not use any type of coding scheme opeating diectly in the optimizing paametes. In Figue 1 a pseudo-code is shown that can be used to implement the DE algoithm, in which comments ae included between backets.

3 - cossove pobability (CR). Using a highe CR will incease the convegence speed. Values between and 1 ae usually used. At this stage, it is impotant to undeline the type of objective function used, which fo evey potential solution veifies if the coesponding tajectoy intesects obstacles. It etuns the length of the path connecting the stating and goal points. The global objective is to find the path which equies the minimum numbe of points and povides minimum length. The defined static obstacles ae defined using cicula and polygonal shapes. Fo the cicula case (Figue 3), the obstacles ae defined by thei cicle cente and adius. Using this, a simple way to avoid collisions, consists on detemining the minimum distance between each segment of the path and the cente of each obstacle. If this distance emains geate than the adius of each obstacle, thee ae no collisions. Fig. 2. Global scheme fo Diffeential Evolution. 3. OFF-LINE PATH PLANNING In the off-line case, the simulated wold is defined using static obstacles, and the optimization objective is to establish a full path, avoiding collisions. Thus, the DE algoithm is used as the optimization tool, and its pefomance evaluated. The obot wold is defined by a squae in the Catesian plan, limited by the coodinates of its vetices. The obot position is epesented by its coodinates coesponding to one point in the plane. The path between the stat and goal positions is defined by line segments which link all the diffeent points defined by the diffeential evolution. In ode to use the DE algoithm some paametes must be defined pio to the seach pocedue, such as: - the numbe of optimization points (d). The numbe of segments equals the numbe of points plus one. (Segments=d+1). Thus, path flexibility depends on the numbe of points, - initial and final positions fo the obot (Stat and Goal), - maximum numbe of iteations, - DE stategy, - population size (m). Fig. 3. Example of the defined wold, with cicula obstacles. The distance between a point and a line, is given by the pependicula segment that cosses the point. Howeve, it is necessay to detemine if the pependicula line intesects the segment, othewise the minimum distance is evaluated in elation to segment neaest exteme point. Assuming that the cente of the cicula obstacle is epesented by P and the line segment is epesented by P P 1, an easy way to solve this poblem is to conside the intenal poduct of the angles between vectos P P and P 1 P (Sunday, 21a). If the esult of this poduct is negative o positive, it means that the shotest distance between the cental point and the segment is connected to one of the exteme points of the latest. If the poduct esult is zeo it means that the pependicula line between the cicle cental point intesects the segment and it is the shotest distance (Figue 4). - amplification facto F. This paamete is multiplied by the diffeence between two vectos. It should be selected in ode to pevent pematue convegence (<F<2);

4 [Tests the intesection fom two segments, etuning: = none, 1 = intesec tion] Intesection (Segment P P 1; Segment P 2P 3) Test (Local) if P and P 1 ae in the left, ight o ove P 2P 3; If (P and P 1 ae in the left o P and P 1 ae in the ight) do: Retun ; Fig. 4. Angles between the segments, (Sunday, 21a). The pseudo-code used to evaluate the minimum distance between a cicula obstacle and a stait line segment is shown in Figue 5. (Point P, Segment P P 1) v = P 1 P ; w = P - P ; If ( (c 1 = w v ) <= ) Retun distance fom P to P ; If ( (c 2 = v v ) <= c 1 ) Retun distance fom P to P 1; b = c 1 / c 2; base point = P + b*v; Retun distance fom P to base point; Fig. 5. between a point and a line segment. In the case of polygonal obstacles, they ae defined by the connection of thei vetices by line segments, as it is illustated in Figue 6. Test (Local) if P 2 and P 3 ae in the left, ight o ove P P 1; If (P 2 and P 3 ae in the left o P 2 and P 3 ae in the ight) do: Retun ; Retun 1; [Checks if a point is in the left, ight o ove a segment, etuning: > fo left; = fo ove; < fo ight] Local (Point P a, Po int P b, Po int P c) Retun (P b.x P a.x) * (P c.y P a.y) - (P c.x P a.x) * (P b.y P a.y) Fig. 7. Intesection of two segments. The algoithm shown in Figue 8, fo each test point uses a paallel line to the x axis, detemining the numbe of intesections between the polygon and points to the ight of the test point. If the numbe of intesections is even it means that the point is outside the polygon, othewise it is inside. Checkpoint (Point P, Vecto with vetices fom polygon V) Counte = ; Do fo each segment of the polygon: If polygon segment intesects suppot line do: If P is left fom the segment: Counte = Counte + 1; If P is ight fom the segment: Counte = Counte 1; Cycle end; Retun Counte; Fig. 8. Algoithm that checks if a point is inside o outside a polygon. Anothe case is when one of the path segments and one of the polygon segments ae collinea. To solve this poblem the pseudo-code pesented in Figue 9 was used (Sunday, 21c). Fig. 6. Robot wold with polygonal walls. One way to avoid collisions is to check if evey line segment of the optimized tajectoy intesects the line segments defining the polygons (Sunday, 21d). The pseudo-code used fo this case is shown in Figue 7. It is clea that the optimized tajectoy can not include line segments with ae inside the polygonal shapes. To pevent this case it is necessay to detemine fo each solution if all the exteme points of all the defining segments ae not inside the polygons. In figue 8 a pseudo code (Sunday, 21b) is pesent that was used to solve this poblem. Point in a Segment (Point P, Segment S) If (S..x? S.1.x) do: If (S..x <= P.x) e (P.x <= S.1.x) do: Retun Tue; If (S..x >= P.x) e (P.x >= S.1.x) do: Retun Tue; If (S..y <= P.y) e (P.x <= S.1.y) do: Retun Tue; If (S..y >= P.y) e (P.x >= S.1.y) do: Retun Tue; Retun false; [If none of the conditions is possible] Fig. 9. Detects if two line segments ae collinea.

5 4.1 Case Study I 4. SIMULATION RESULTS In the fist case two cicula obstacles wee consideed located in between the stating and goal points, (Figue 1). The stategy numbe 6 was selected fo the DE algoithm and the cossove pobability and amplification paamete wee set to CR =.8 e F =.8, espectively. Diffeent population sizes and numbe of points defining the tajectoy ae used and the numbe of iteations is 1 pe test. The esults obtained with 2 uns fo each condition ae pesented in Table 1. d Table 1 Results fom the case study I m Best Aveage Value 4 3 3,7912 3, ,7911 3, ,7912 3, ,7718 3, ,7716 3, ,7725 3, ,7712 3, ,7741 3, ,7758 3, ,7667 3, ,7684 3, ,793 3,8562 The esults achieved fo diffeent combinations between the numbe of points and population size ae pactically identical. In Figue 1, the path obtained with minimum distance (with 7 points and population size of 3) and the path obtained with maximum distance (with 4 points and population size of 3) ae epesented. While diffeent, they coespond to vey simila cost values in tems of distances attained Best distance convegence Iteations Fig. 11. Best distance convegence gaphic with: 2 ound obstacles; stategy 6; population of 1 and 6 points Best distance convegence Iteations Fig. 12. Best distance convegence gaphic with: 4 ound obstacles; stategy 9; population of 5 and 7 points. Aveage Aveage convegence Iteations Fig. 13. Aveage convegence gaphic with: 2 ound obstacles; stategy 8; population of 3 and 5 points. Aveage convegence Aveage Fig. 1. Two optimized solutions fo the case study I. Figues 11 to 15 illustate convegence plots fo seveal optimization conditions Iteations Fig. 14. Aveage convegence gaphic with: 5 polygonal obstacles; stategy 6; population of 3 and 4 points.

6 Points Iteations X1 Y1 X2 Y2 X3 Y3 X4 Y4 Fig. 15. Point coodinates convegence gaphic with: 4 ound obstacles; stategy 6; population of 3 and 4 points. The esults clealy indicate that thee is no need to pefom 1 iteations, thus the simulation peiod is educed to 5 iteations pe test fo the case study II. 8 32, , , , ,815 37, , , ,74 43, , , , , , , ,859 35, , , , , ,947 37, , , ,129 45, In this case the diffeences between the diffeent test conditions ae moe significant. Stategy 6 is the one who deliveed best esults, as it can be veified by the best distances achieved. In Figue 16 some tajectoies ae plotted fo a population size of 1 and diffeent stategies and numbe of points. 4.2 Case Study II Case study I was not had enough to evaluate the DE algoithm. Thus in this case study the obot wold has fou cicula obstacles as it is shown in Figue 16. The simulated esults obtained fo this case ae pesented in Table 2, in which seveal combinations between the numbe of points defining the path, population size and DE stategies wee consideed. Table 2 Tests esults with fou case study II. N m St 1 Best aveage ,834 33, , , , , , , , , ,119 37, , , ,488 32, ,931 37, ,68 33, , , ,7624 4, , , , , ,991 4, ,617 34, ,466 33, ,881 4, , , , , , , , , Stategy. Fig. 16. Seveal paths in a wold with fou ound obstacles. 4.3 Case Study III In this case the simulated wold has polygonal obstacles epesented by walls, (Figue 17). Some peliminay esults ae pesented in Table 3 using stategy 6, CR=.8, F=.8 and 5 iteations pe test. A total of 2 uns pe combination wee made. The initial population was geneated andomly. The esults ae not conclusive at this stage. Table 3 Tests esults with polygonal obstacles Numbe of points Numbe of population Best distance aveage , , , , , , , , , ,943 While the DE algoithm managed to povide good path solutions fo this case, it was clea that allowing andomly geneated solutions which ae not viable to incopoate the initial population deteioate the algoithm pefomance. Some paths coesponding to the esults pesented in Table 3 ae plotted in Figue 17.

7 Sunday, Dan (21c). Intesections of Lines, Segments and Planes (2D and 3D),Geomety Algoithm Achive, Apil 21. Sunday, Dan (21d). The Intesections fo a Set of 2D Segments, and Testing Simple Polygons, Geomety Algoithm Achive, August 21. Pice K. e Ston R. (22), Diffeential evolution homepage: Lampinem J. e Zelinka I., (1999), Mixed Vaiable Non-Linea Optimization by Diffeential Evolution, Em Zelinka I. (Edito), Poceedings of Nostadamus'99, 2nd Intenational Pediction Confeence, Zlin, República Checa, pp Fig. 17. Seveal optimized paths fo a simulated wold with polygonal obstacles. 5. CONCLUSIONS AND FURTHER WORK The Diffeential Evolution Algoithm was poposed to addess the path planning optimization poblem. The obstacles wee consideed to be static and of cicula and polygonal shapes and the path optimization pefomed off-line. The esults indicated that the Diffeential Evolution Algoithm could solve this poblem satisfactoily, achieving the best esults in tems of the minimization of the path length with stategy numbe 6. Cuent eseach is being caied out in ode to complete the optimization with polygonal obstacles. Futue tests will implement the algoithms on-line assuming dynamic obstacles and compaisons with othe evolutionay based algoithms, such as genetic algoithm and the paticle swam optimization algoithm. REFERENCES Goldbeg, David E. (1989). Genetic Algoithms in seach, Optimization and Machine Leaning. Addison-Wesley, Reading (MA). Michalewicz Z, (1992), "Genetic Algoithms + Data Stuctues = Evolution Pogams", 2nd Edit., Spinge-Velag P.C.. Ston, Raine and Pice, Kenneth (1995). Diffeential Evolution A simple and efficient adaptive scheme fo global optimization ove continuous spaces. Technical Repot TR-95-12, ICSI, Mach Ston, Raine (1996). On the usage of Diffeential Evolution fo Function Optimization. NAFIPS 1996, Bekeley, pp Sunday, Dan (21a). About Lines and of a Point to a Line (2D & 3D),Geomety Algoithm Achive, Febuay 21. Sunday, Dan (21b). Fast Winding Numbe Inclusion of a Point in a Polygon, Geomety Algoithm Achive, Mach 21.

AN IMPLEMENTATION OF BINARY AND FLOATING POINT CHROMOSOME REPRESENTATION IN GENETIC ALGORITHM

AN IMPLEMENTATION OF BINARY AND FLOATING POINT CHROMOSOME REPRESENTATION IN GENETIC ALGORITHM AN IMPLEMENTATION OF BINARY AND FLOATING POINT CHROMOSOME REPRESENTATION IN GENETIC ALGORITHM Main Golub Faculty of Electical Engineeing and Computing, Univesity of Zageb Depatment of Electonics, Micoelectonics,

More information

Software Engineering and Development

Software Engineering and Development I T H E A 67 Softwae Engineeing and Development SOFTWARE DEVELOPMENT PROCESS DYNAMICS MODELING AS STATE MACHINE Leonid Lyubchyk, Vasyl Soloshchuk Abstact: Softwae development pocess modeling is gaining

More information

2 r2 θ = r2 t. (3.59) The equal area law is the statement that the term in parentheses,

2 r2 θ = r2 t. (3.59) The equal area law is the statement that the term in parentheses, 3.4. KEPLER S LAWS 145 3.4 Keple s laws You ae familia with the idea that one can solve some mechanics poblems using only consevation of enegy and (linea) momentum. Thus, some of what we see as objects

More information

Vector Calculus: Are you ready? Vectors in 2D and 3D Space: Review

Vector Calculus: Are you ready? Vectors in 2D and 3D Space: Review Vecto Calculus: Ae you eady? Vectos in D and 3D Space: Review Pupose: Make cetain that you can define, and use in context, vecto tems, concepts and fomulas listed below: Section 7.-7. find the vecto defined

More information

Research on Risk Assessment of the Transformer Based on Life Cycle Cost

Research on Risk Assessment of the Transformer Based on Life Cycle Cost ntenational Jounal of Smat Gid and lean Enegy eseach on isk Assessment of the Tansfome Based on Life ycle ost Hui Zhou a, Guowei Wu a, Weiwei Pan a, Yunhe Hou b, hong Wang b * a Zhejiang Electic Powe opoation,

More information

Magnetic Field and Magnetic Forces. Young and Freedman Chapter 27

Magnetic Field and Magnetic Forces. Young and Freedman Chapter 27 Magnetic Field and Magnetic Foces Young and Feedman Chapte 27 Intoduction Reiew - electic fields 1) A chage (o collection of chages) poduces an electic field in the space aound it. 2) The electic field

More information

Tracking/Fusion and Deghosting with Doppler Frequency from Two Passive Acoustic Sensors

Tracking/Fusion and Deghosting with Doppler Frequency from Two Passive Acoustic Sensors Tacking/Fusion and Deghosting with Dopple Fequency fom Two Passive Acoustic Sensos Rong Yang, Gee Wah Ng DSO National Laboatoies 2 Science Pak Dive Singapoe 11823 Emails: yong@dso.og.sg, ngeewah@dso.og.sg

More information

ON THE (Q, R) POLICY IN PRODUCTION-INVENTORY SYSTEMS

ON THE (Q, R) POLICY IN PRODUCTION-INVENTORY SYSTEMS ON THE R POLICY IN PRODUCTION-INVENTORY SYSTEMS Saifallah Benjaafa and Joon-Seok Kim Depatment of Mechanical Engineeing Univesity of Minnesota Minneapolis MN 55455 Abstact We conside a poduction-inventoy

More information

An Introduction to Omega

An Introduction to Omega An Intoduction to Omega Con Keating and William F. Shadwick These distibutions have the same mean and vaiance. Ae you indiffeent to thei isk-ewad chaacteistics? The Finance Development Cente 2002 1 Fom

More information

INITIAL MARGIN CALCULATION ON DERIVATIVE MARKETS OPTION VALUATION FORMULAS

INITIAL MARGIN CALCULATION ON DERIVATIVE MARKETS OPTION VALUATION FORMULAS INITIAL MARGIN CALCULATION ON DERIVATIVE MARKETS OPTION VALUATION FORMULAS Vesion:.0 Date: June 0 Disclaime This document is solely intended as infomation fo cleaing membes and othes who ae inteested in

More information

Coordinate Systems L. M. Kalnins, March 2009

Coordinate Systems L. M. Kalnins, March 2009 Coodinate Sstems L. M. Kalnins, Mach 2009 Pupose of a Coodinate Sstem The pupose of a coodinate sstem is to uniquel detemine the position of an object o data point in space. B space we ma liteall mean

More information

Chapter 3 Savings, Present Value and Ricardian Equivalence

Chapter 3 Savings, Present Value and Ricardian Equivalence Chapte 3 Savings, Pesent Value and Ricadian Equivalence Chapte Oveview In the pevious chapte we studied the decision of households to supply hous to the labo maket. This decision was a static decision,

More information

Gauss Law. Physics 231 Lecture 2-1

Gauss Law. Physics 231 Lecture 2-1 Gauss Law Physics 31 Lectue -1 lectic Field Lines The numbe of field lines, also known as lines of foce, ae elated to stength of the electic field Moe appopiately it is the numbe of field lines cossing

More information

An application of stochastic programming in solving capacity allocation and migration planning problem under uncertainty

An application of stochastic programming in solving capacity allocation and migration planning problem under uncertainty An application of stochastic pogamming in solving capacity allocation and migation planning poblem unde uncetainty Yin-Yann Chen * and Hsiao-Yao Fan Depatment of Industial Management, National Fomosa Univesity,

More information

FXA 2008. Candidates should be able to : Describe how a mass creates a gravitational field in the space around it.

FXA 2008. Candidates should be able to : Describe how a mass creates a gravitational field in the space around it. Candidates should be able to : Descibe how a mass ceates a gavitational field in the space aound it. Define gavitational field stength as foce pe unit mass. Define and use the peiod of an object descibing

More information

SUPPORT VECTOR MACHINE FOR BANDWIDTH ANALYSIS OF SLOTTED MICROSTRIP ANTENNA

SUPPORT VECTOR MACHINE FOR BANDWIDTH ANALYSIS OF SLOTTED MICROSTRIP ANTENNA Intenational Jounal of Compute Science, Systems Engineeing and Infomation Technology, 4(), 20, pp. 67-7 SUPPORT VECTOR MACHIE FOR BADWIDTH AALYSIS OF SLOTTED MICROSTRIP ATEA Venmathi A.R. & Vanitha L.

More information

Gravitational Mechanics of the Mars-Phobos System: Comparing Methods of Orbital Dynamics Modeling for Exploratory Mission Planning

Gravitational Mechanics of the Mars-Phobos System: Comparing Methods of Orbital Dynamics Modeling for Exploratory Mission Planning Gavitational Mechanics of the Mas-Phobos System: Compaing Methods of Obital Dynamics Modeling fo Exploatoy Mission Planning Alfedo C. Itualde The Pennsylvania State Univesity, Univesity Pak, PA, 6802 This

More information

Experiment 6: Centripetal Force

Experiment 6: Centripetal Force Name Section Date Intoduction Expeiment 6: Centipetal oce This expeiment is concened with the foce necessay to keep an object moving in a constant cicula path. Accoding to Newton s fist law of motion thee

More information

Physics 235 Chapter 5. Chapter 5 Gravitation

Physics 235 Chapter 5. Chapter 5 Gravitation Chapte 5 Gavitation In this Chapte we will eview the popeties of the gavitational foce. The gavitational foce has been discussed in geat detail in you intoductoy physics couses, and we will pimaily focus

More information

An Efficient Group Key Agreement Protocol for Ad hoc Networks

An Efficient Group Key Agreement Protocol for Ad hoc Networks An Efficient Goup Key Ageement Potocol fo Ad hoc Netwoks Daniel Augot, Raghav haska, Valéie Issany and Daniele Sacchetti INRIA Rocquencout 78153 Le Chesnay Fance {Daniel.Augot, Raghav.haska, Valéie.Issany,

More information

Nontrivial lower bounds for the least common multiple of some finite sequences of integers

Nontrivial lower bounds for the least common multiple of some finite sequences of integers J. Numbe Theoy, 15 (007), p. 393-411. Nontivial lowe bounds fo the least common multiple of some finite sequences of integes Bai FARHI bai.fahi@gmail.com Abstact We pesent hee a method which allows to

More information

The transport performance evaluation system building of logistics enterprises

The transport performance evaluation system building of logistics enterprises Jounal of Industial Engineeing and Management JIEM, 213 6(4): 194-114 Online ISSN: 213-953 Pint ISSN: 213-8423 http://dx.doi.og/1.3926/jiem.784 The tanspot pefomance evaluation system building of logistics

More information

Episode 401: Newton s law of universal gravitation

Episode 401: Newton s law of universal gravitation Episode 401: Newton s law of univesal gavitation This episode intoduces Newton s law of univesal gavitation fo point masses, and fo spheical masses, and gets students pactising calculations of the foce

More information

Automatic Testing of Neighbor Discovery Protocol Based on FSM and TTCN*

Automatic Testing of Neighbor Discovery Protocol Based on FSM and TTCN* Automatic Testing of Neighbo Discovey Potocol Based on FSM and TTCN* Zhiliang Wang, Xia Yin, Haibin Wang, and Jianping Wu Depatment of Compute Science, Tsinghua Univesity Beijing, P. R. China, 100084 Email:

More information

Spirotechnics! September 7, 2011. Amanda Zeringue, Michael Spannuth and Amanda Zeringue Dierential Geometry Project

Spirotechnics! September 7, 2011. Amanda Zeringue, Michael Spannuth and Amanda Zeringue Dierential Geometry Project Spiotechnics! Septembe 7, 2011 Amanda Zeingue, Michael Spannuth and Amanda Zeingue Dieential Geomety Poject 1 The Beginning The geneal consensus of ou goup began with one thought: Spiogaphs ae awesome.

More information

CRRC-1 Method #1: Standard Practice for Measuring Solar Reflectance of a Flat, Opaque, and Heterogeneous Surface Using a Portable Solar Reflectometer

CRRC-1 Method #1: Standard Practice for Measuring Solar Reflectance of a Flat, Opaque, and Heterogeneous Surface Using a Portable Solar Reflectometer CRRC- Method #: Standad Pactice fo Measuing Sola Reflectance of a Flat, Opaque, and Heteogeneous Suface Using a Potable Sola Reflectomete Scope This standad pactice coves a technique fo estimating the

More information

Effect of Contention Window on the Performance of IEEE 802.11 WLANs

Effect of Contention Window on the Performance of IEEE 802.11 WLANs Effect of Contention Window on the Pefomance of IEEE 82.11 WLANs Yunli Chen and Dhama P. Agawal Cente fo Distibuted and Mobile Computing, Depatment of ECECS Univesity of Cincinnati, OH 45221-3 {ychen,

More information

NURBS Drawing Week 5, Lecture 10

NURBS Drawing Week 5, Lecture 10 CS 43/585 Compute Gaphics I NURBS Dawing Week 5, Lectue 1 David Been, William Regli and Maim Pesakhov Geometic and Intelligent Computing Laboato Depatment of Compute Science Deel Univesit http://gicl.cs.deel.edu

More information

Supplementary Material for EpiDiff

Supplementary Material for EpiDiff Supplementay Mateial fo EpiDiff Supplementay Text S1. Pocessing of aw chomatin modification data In ode to obtain the chomatin modification levels in each of the egions submitted by the use QDCMR module

More information

UNIT CIRCLE TRIGONOMETRY

UNIT CIRCLE TRIGONOMETRY UNIT CIRCLE TRIGONOMETRY The Unit Cicle is the cicle centeed at the oigin with adius unit (hence, the unit cicle. The equation of this cicle is + =. A diagam of the unit cicle is shown below: + = - - -

More information

A framework for the selection of enterprise resource planning (ERP) system based on fuzzy decision making methods

A framework for the selection of enterprise resource planning (ERP) system based on fuzzy decision making methods A famewok fo the selection of entepise esouce planning (ERP) system based on fuzzy decision making methods Omid Golshan Tafti M.s student in Industial Management, Univesity of Yazd Omidgolshan87@yahoo.com

More information

Financing Terms in the EOQ Model

Financing Terms in the EOQ Model Financing Tems in the EOQ Model Habone W. Stuat, J. Columbia Business School New Yok, NY 1007 hws7@columbia.edu August 6, 004 1 Intoduction This note discusses two tems that ae often omitted fom the standad

More information

An Approach to Optimized Resource Allocation for Cloud Simulation Platform

An Approach to Optimized Resource Allocation for Cloud Simulation Platform An Appoach to Optimized Resouce Allocation fo Cloud Simulation Platfom Haitao Yuan 1, Jing Bi 2, Bo Hu Li 1,3, Xudong Chai 3 1 School of Automation Science and Electical Engineeing, Beihang Univesity,

More information

Determining solar characteristics using planetary data

Determining solar characteristics using planetary data Detemining sola chaacteistics using planetay data Intoduction The Sun is a G type main sequence sta at the cente of the Sola System aound which the planets, including ou Eath, obit. In this inestigation

More information

Reduced Pattern Training Based on Task Decomposition Using Pattern Distributor

Reduced Pattern Training Based on Task Decomposition Using Pattern Distributor > PNN05-P762 < Reduced Patten Taining Based on Task Decomposition Using Patten Distibuto Sheng-Uei Guan, Chunyu Bao, and TseNgee Neo Abstact Task Decomposition with Patten Distibuto (PD) is a new task

More information

Peer-to-Peer File Sharing Game using Correlated Equilibrium

Peer-to-Peer File Sharing Game using Correlated Equilibrium Pee-to-Pee File Shaing Game using Coelated Equilibium Beibei Wang, Zhu Han, and K. J. Ray Liu Depatment of Electical and Compute Engineeing and Institute fo Systems Reseach, Univesity of Mayland, College

More information

Carter-Penrose diagrams and black holes

Carter-Penrose diagrams and black holes Cate-Penose diagams and black holes Ewa Felinska The basic intoduction to the method of building Penose diagams has been pesented, stating with obtaining a Penose diagam fom Minkowski space. An example

More information

Problem Set # 9 Solutions

Problem Set # 9 Solutions Poblem Set # 9 Solutions Chapte 12 #2 a. The invention of the new high-speed chip inceases investment demand, which shifts the cuve out. That is, at evey inteest ate, fims want to invest moe. The incease

More information

Questions for Review. By buying bonds This period you save s, next period you get s(1+r)

Questions for Review. By buying bonds This period you save s, next period you get s(1+r) MACROECONOMICS 2006 Week 5 Semina Questions Questions fo Review 1. How do consumes save in the two-peiod model? By buying bonds This peiod you save s, next peiod you get s() 2. What is the slope of a consume

More information

Converting knowledge Into Practice

Converting knowledge Into Practice Conveting knowledge Into Pactice Boke Nightmae srs Tend Ride By Vladimi Ribakov Ceato of Pips Caie 20 of June 2010 2 0 1 0 C o p y i g h t s V l a d i m i R i b a k o v 1 Disclaime and Risk Wanings Tading

More information

The Binomial Distribution

The Binomial Distribution The Binomial Distibution A. It would be vey tedious if, evey time we had a slightly diffeent poblem, we had to detemine the pobability distibutions fom scatch. Luckily, thee ae enough similaities between

More information

THE DISTRIBUTED LOCATION RESOLUTION PROBLEM AND ITS EFFICIENT SOLUTION

THE DISTRIBUTED LOCATION RESOLUTION PROBLEM AND ITS EFFICIENT SOLUTION IADIS Intenational Confeence Applied Computing 2006 THE DISTRIBUTED LOCATION RESOLUTION PROBLEM AND ITS EFFICIENT SOLUTION Jög Roth Univesity of Hagen 58084 Hagen, Gemany Joeg.Roth@Fenuni-hagen.de ABSTRACT

More information

HEALTHCARE INTEGRATION BASED ON CLOUD COMPUTING

HEALTHCARE INTEGRATION BASED ON CLOUD COMPUTING U.P.B. Sci. Bull., Seies C, Vol. 77, Iss. 2, 2015 ISSN 2286-3540 HEALTHCARE INTEGRATION BASED ON CLOUD COMPUTING Roxana MARCU 1, Dan POPESCU 2, Iulian DANILĂ 3 A high numbe of infomation systems ae available

More information

The LCOE is defined as the energy price ($ per unit of energy output) for which the Net Present Value of the investment is zero.

The LCOE is defined as the energy price ($ per unit of energy output) for which the Net Present Value of the investment is zero. Poject Decision Metics: Levelized Cost of Enegy (LCOE) Let s etun to ou wind powe and natual gas powe plant example fom ealie in this lesson. Suppose that both powe plants wee selling electicity into the

More information

Modeling and Verifying a Price Model for Congestion Control in Computer Networks Using PROMELA/SPIN

Modeling and Verifying a Price Model for Congestion Control in Computer Networks Using PROMELA/SPIN Modeling and Veifying a Pice Model fo Congestion Contol in Compute Netwoks Using PROMELA/SPIN Clement Yuen and Wei Tjioe Depatment of Compute Science Univesity of Toonto 1 King s College Road, Toonto,

More information

est using the formula I = Prt, where I is the interest earned, P is the principal, r is the interest rate, and t is the time in years.

est using the formula I = Prt, where I is the interest earned, P is the principal, r is the interest rate, and t is the time in years. 9.2 Inteest Objectives 1. Undestand the simple inteest fomula. 2. Use the compound inteest fomula to find futue value. 3. Solve the compound inteest fomula fo diffeent unknowns, such as the pesent value,

More information

4a 4ab b 4 2 4 2 5 5 16 40 25. 5.6 10 6 (count number of places from first non-zero digit to

4a 4ab b 4 2 4 2 5 5 16 40 25. 5.6 10 6 (count number of places from first non-zero digit to . Simplify: 0 4 ( 8) 0 64 ( 8) 0 ( 8) = (Ode of opeations fom left to ight: Paenthesis, Exponents, Multiplication, Division, Addition Subtaction). Simplify: (a 4) + (a ) (a+) = a 4 + a 0 a = a 7. Evaluate

More information

Efficient Redundancy Techniques for Latency Reduction in Cloud Systems

Efficient Redundancy Techniques for Latency Reduction in Cloud Systems Efficient Redundancy Techniques fo Latency Reduction in Cloud Systems 1 Gaui Joshi, Emina Soljanin, and Gegoy Wonell Abstact In cloud computing systems, assigning a task to multiple seves and waiting fo

More information

Top K Nearest Keyword Search on Large Graphs

Top K Nearest Keyword Search on Large Graphs Top K Neaest Keywod Seach on Lage Gaphs Miao Qiao, Lu Qin, Hong Cheng, Jeffey Xu Yu, Wentao Tian The Chinese Univesity of Hong Kong, Hong Kong, China {mqiao,lqin,hcheng,yu,wttian}@se.cuhk.edu.hk ABSTRACT

More information

METHODOLOGICAL APPROACH TO STRATEGIC PERFORMANCE OPTIMIZATION

METHODOLOGICAL APPROACH TO STRATEGIC PERFORMANCE OPTIMIZATION ETHODOOGICA APPOACH TO STATEGIC PEFOANCE OPTIIZATION ao Hell * Stjepan Vidačić ** Željo Gaača *** eceived: 4. 07. 2009 Peliminay communication Accepted: 5. 0. 2009 UDC 65.02.4 This pape pesents a matix

More information

A Glossary Of Complex Envelope Vectoization And Its Working Principle

A Glossary Of Complex Envelope Vectoization And Its Working Principle Complex Envelope Vectoization fo the solution of mid-high fequency acoustic poblems A. Sestiei Depatment of Mechanical and Aeospace Engineeing Univesity of Rome la Sapienza Pesentation layout - Low fequency

More information

Figure 2. So it is very likely that the Babylonians attributed 60 units to each side of the hexagon. Its resulting perimeter would then be 360!

Figure 2. So it is very likely that the Babylonians attributed 60 units to each side of the hexagon. Its resulting perimeter would then be 360! 1. What ae angles? Last time, we looked at how the Geeks intepeted measument of lengths. Howeve, as fascinated as they wee with geomety, thee was a shape that was much moe enticing than any othe : the

More information

Strength Analysis and Optimization Design about the key parts of the Robot

Strength Analysis and Optimization Design about the key parts of the Robot Intenational Jounal of Reseach in Engineeing and Science (IJRES) ISSN (Online): 2320-9364, ISSN (Pint): 2320-9356 www.ijes.og Volume 3 Issue 3 ǁ Mach 2015 ǁ PP.25-29 Stength Analysis and Optimization Design

More information

Chapter 17 The Kepler Problem: Planetary Mechanics and the Bohr Atom

Chapter 17 The Kepler Problem: Planetary Mechanics and the Bohr Atom Chapte 7 The Keple Poblem: Planetay Mechanics and the Boh Atom Keple s Laws: Each planet moves in an ellipse with the sun at one focus. The adius vecto fom the sun to a planet sweeps out equal aeas in

More information

Lab #7: Energy Conservation

Lab #7: Energy Conservation Lab #7: Enegy Consevation Photo by Kallin http://www.bungeezone.com/pics/kallin.shtml Reading Assignment: Chapte 7 Sections 1,, 3, 5, 6 Chapte 8 Sections 1-4 Intoduction: Pehaps one of the most unusual

More information

Manual ultrasonic inspection of thin metal welds

Manual ultrasonic inspection of thin metal welds Manual ultasonic inspection of thin metal welds Capucine Capentie and John Rudlin TWI Cambidge CB1 6AL, UK Telephone 01223 899000 Fax 01223 890689 E-mail capucine.capentie@twi.co.uk Abstact BS EN ISO 17640

More information

Multiband Microstrip Patch Antenna for Microwave Applications

Multiband Microstrip Patch Antenna for Microwave Applications IOSR Jounal of Electonics and Communication Engineeing (IOSR-JECE) ISSN: 2278-2834, ISBN: 2278-8735. Volume 3, Issue 5 (Sep. - Oct. 2012), PP 43-48 Multiband Micostip Patch Antenna fo Micowave Applications

More information

An Analysis of Manufacturer Benefits under Vendor Managed Systems

An Analysis of Manufacturer Benefits under Vendor Managed Systems An Analysis of Manufactue Benefits unde Vendo Managed Systems Seçil Savaşaneil Depatment of Industial Engineeing, Middle East Technical Univesity, 06531, Ankaa, TURKEY secil@ie.metu.edu.t Nesim Ekip 1

More information

Mining Relatedness Graphs for Data Integration

Mining Relatedness Graphs for Data Integration Mining Relatedness Gaphs fo Data Integation Jeemy T. Engle (jtengle@indiana.edu) Ying Feng (yingfeng@indiana.edu) Robet L. Goldstone (goldsto@indiana.edu) Indiana Univesity Bloomington, IN. 47405 USA Abstact

More information

VISCOSITY OF BIO-DIESEL FUELS

VISCOSITY OF BIO-DIESEL FUELS VISCOSITY OF BIO-DIESEL FUELS One of the key assumptions fo ideal gases is that the motion of a given paticle is independent of any othe paticles in the system. With this assumption in place, one can use

More information

12. Rolling, Torque, and Angular Momentum

12. Rolling, Torque, and Angular Momentum 12. olling, Toque, and Angula Momentum 1 olling Motion: A motion that is a combination of otational and tanslational motion, e.g. a wheel olling down the oad. Will only conside olling with out slipping.

More information

A Two-Step Tabu Search Heuristic for Multi-Period Multi-Site Assignment Problem with Joint Requirement of Multiple Resource Types

A Two-Step Tabu Search Heuristic for Multi-Period Multi-Site Assignment Problem with Joint Requirement of Multiple Resource Types Aticle A Two-Step Tabu Seach Heuistic fo Multi-Peiod Multi-Site Assignment Poblem with Joint Requiement of Multiple Resouce Types Siavit Swangnop and Paveena Chaovalitwongse* Depatment of Industial Engineeing,

More information

Define What Type of Trader Are you?

Define What Type of Trader Are you? Define What Type of Tade Ae you? Boke Nightmae srs Tend Ride By Vladimi Ribakov Ceato of Pips Caie 20 of June 2010 1 Disclaime and Risk Wanings Tading any financial maket involves isk. The content of this

More information

Semipartial (Part) and Partial Correlation

Semipartial (Part) and Partial Correlation Semipatial (Pat) and Patial Coelation his discussion boows heavily fom Applied Multiple egession/coelation Analysis fo the Behavioal Sciences, by Jacob and Paticia Cohen (975 edition; thee is also an updated

More information

FIRST EXPERIENCES WITH THE DEFORMATION ANALYSIS OF A LARGE DAM COMBINING LASERSCANNING AND HIGH-ACCURACY SURVEYING

FIRST EXPERIENCES WITH THE DEFORMATION ANALYSIS OF A LARGE DAM COMBINING LASERSCANNING AND HIGH-ACCURACY SURVEYING FIRST EXPERIENCES WITH THE DEFORMATION ANALYSIS OF A LARGE DAM COMBINING LASERSCANNING AND HIGH-ACCURACY SURVEYING Diego González Aguilea a*, Javie Gómez Lahoz a and José Antonio Sánchez Seano b a Land

More information

Comparing Availability of Various Rack Power Redundancy Configurations

Comparing Availability of Various Rack Power Redundancy Configurations Compaing Availability of Vaious Rack Powe Redundancy Configuations White Pape 48 Revision by Victo Avela > Executive summay Tansfe switches and dual-path powe distibution to IT equipment ae used to enhance

More information

30 H. N. CHIU 1. INTRODUCTION. Recherche opérationnelle/operations Research

30 H. N. CHIU 1. INTRODUCTION. Recherche opérationnelle/operations Research RAIRO Rech. Opé. (vol. 33, n 1, 1999, pp. 29-45) A GOOD APPROXIMATION OF THE INVENTORY LEVEL IN A(Q ) PERISHABLE INVENTORY SYSTEM (*) by Huan Neng CHIU ( 1 ) Communicated by Shunji OSAKI Abstact. This

More information

Dual channel closed-loop supply chain coordination with a reward-driven remanufacturing policy

Dual channel closed-loop supply chain coordination with a reward-driven remanufacturing policy Intenational Jounal of Poduction Reseach ISSN: -753 Pint 1366-588X Online Jounal homepage: http://www.tandfonline.com/loi/tps Dual channel closed-loop supply chain coodination with a ewad-diven emanufactuing

More information

Experiment MF Magnetic Force

Experiment MF Magnetic Force Expeiment MF Magnetic Foce Intoduction The magnetic foce on a cuent-caying conducto is basic to evey electic moto -- tuning the hands of electic watches and clocks, tanspoting tape in Walkmans, stating

More information

Quantity Formula Meaning of variables. 5 C 1 32 F 5 degrees Fahrenheit, 1 bh A 5 area, b 5 base, h 5 height. P 5 2l 1 2w

Quantity Formula Meaning of variables. 5 C 1 32 F 5 degrees Fahrenheit, 1 bh A 5 area, b 5 base, h 5 height. P 5 2l 1 2w 1.4 Rewite Fomulas and Equations Befoe You solved equations. Now You will ewite and evaluate fomulas and equations. Why? So you can apply geometic fomulas, as in Ex. 36. Key Vocabulay fomula solve fo a

More information

Comparing Availability of Various Rack Power Redundancy Configurations

Comparing Availability of Various Rack Power Redundancy Configurations Compaing Availability of Vaious Rack Powe Redundancy Configuations By Victo Avela White Pape #48 Executive Summay Tansfe switches and dual-path powe distibution to IT equipment ae used to enhance the availability

More information

PY1052 Problem Set 8 Autumn 2004 Solutions

PY1052 Problem Set 8 Autumn 2004 Solutions PY052 Poblem Set 8 Autumn 2004 Solutions H h () A solid ball stats fom est at the uppe end of the tack shown and olls without slipping until it olls off the ight-hand end. If H 6.0 m and h 2.0 m, what

More information

The Detection of Obstacles Using Features by the Horizon View Camera

The Detection of Obstacles Using Features by the Horizon View Camera The Detection of Obstacles Using Featues b the Hoizon View Camea Aami Iwata, Kunihito Kato, Kazuhiko Yamamoto Depatment of Infomation Science, Facult of Engineeing, Gifu Univesit aa@am.info.gifu-u.ac.jp

More information

Magnetic Bearing with Radial Magnetized Permanent Magnets

Magnetic Bearing with Radial Magnetized Permanent Magnets Wold Applied Sciences Jounal 23 (4): 495-499, 2013 ISSN 1818-4952 IDOSI Publications, 2013 DOI: 10.5829/idosi.wasj.2013.23.04.23080 Magnetic eaing with Radial Magnetized Pemanent Magnets Vyacheslav Evgenevich

More information

Channel selection in e-commerce age: A strategic analysis of co-op advertising models

Channel selection in e-commerce age: A strategic analysis of co-op advertising models Jounal of Industial Engineeing and Management JIEM, 013 6(1):89-103 Online ISSN: 013-0953 Pint ISSN: 013-843 http://dx.doi.og/10.396/jiem.664 Channel selection in e-commece age: A stategic analysis of

More information

Fluids Lecture 15 Notes

Fluids Lecture 15 Notes Fluids Lectue 15 Notes 1. Unifom flow, Souces, Sinks, Doublets Reading: Andeson 3.9 3.12 Unifom Flow Definition A unifom flow consists of a velocit field whee V = uî + vĵ is a constant. In 2-D, this velocit

More information

An Infrastructure Cost Evaluation of Single- and Multi-Access Networks with Heterogeneous Traffic Density

An Infrastructure Cost Evaluation of Single- and Multi-Access Networks with Heterogeneous Traffic Density An Infastuctue Cost Evaluation of Single- and Multi-Access Netwoks with Heteogeneous Taffic Density Andes Fuuskä and Magnus Almgen Wieless Access Netwoks Eicsson Reseach Kista, Sweden [andes.fuuska, magnus.almgen]@eicsson.com

More information

Skills Needed for Success in Calculus 1

Skills Needed for Success in Calculus 1 Skills Needed fo Success in Calculus Thee is much appehension fom students taking Calculus. It seems that fo man people, "Calculus" is snonmous with "difficult." Howeve, an teache of Calculus will tell

More information

Gravitation and Kepler s Laws Newton s Law of Universal Gravitation in vectorial. Gm 1 m 2. r 2

Gravitation and Kepler s Laws Newton s Law of Universal Gravitation in vectorial. Gm 1 m 2. r 2 F Gm Gavitation and Keple s Laws Newton s Law of Univesal Gavitation in vectoial fom: F 12 21 Gm 1 m 2 12 2 ˆ 12 whee the hat (ˆ) denotes a unit vecto as usual. Gavity obeys the supeposition pinciple,

More information

Financial Planning and Risk-return profiles

Financial Planning and Risk-return profiles Financial Planning and Risk-etun pofiles Stefan Gaf, Alexande Kling und Jochen Russ Pepint Seies: 2010-16 Fakultät fü Mathematik und Witschaftswissenschaften UNIERSITÄT ULM Financial Planning and Risk-etun

More information

Instituto Superior Técnico Av. Rovisco Pais, 1 1049-001 Lisboa E-mail: virginia.infante@ist.utl.pt

Instituto Superior Técnico Av. Rovisco Pais, 1 1049-001 Lisboa E-mail: virginia.infante@ist.utl.pt FATIGUE LIFE TIME PREDICTIO OF POAF EPSILO TB-30 AIRCRAFT - PART I: IMPLEMETATIO OF DIFERET CYCLE COUTIG METHODS TO PREDICT THE ACCUMULATED DAMAGE B. A. S. Seano 1, V. I. M.. Infante 2, B. S. D. Maado

More information

A Capacitated Commodity Trading Model with Market Power

A Capacitated Commodity Trading Model with Market Power A Capacitated Commodity Tading Model with Maket Powe Victo Matínez-de-Albéniz Josep Maia Vendell Simón IESE Business School, Univesity of Navaa, Av. Peason 1, 08034 Bacelona, Spain VAlbeniz@iese.edu JMVendell@iese.edu

More information

The Supply of Loanable Funds: A Comment on the Misconception and Its Implications

The Supply of Loanable Funds: A Comment on the Misconception and Its Implications JOURNL OF ECONOMICS ND FINNCE EDUCTION Volume 7 Numbe 2 Winte 2008 39 The Supply of Loanable Funds: Comment on the Misconception and Its Implications. Wahhab Khandke and mena Khandke* STRCT Recently Fields-Hat

More information

STUDENT RESPONSE TO ANNUITY FORMULA DERIVATION

STUDENT RESPONSE TO ANNUITY FORMULA DERIVATION Page 1 STUDENT RESPONSE TO ANNUITY FORMULA DERIVATION C. Alan Blaylock, Hendeson State Univesity ABSTRACT This pape pesents an intuitive appoach to deiving annuity fomulas fo classoom use and attempts

More information

Solution Derivations for Capa #8

Solution Derivations for Capa #8 Solution Deivations fo Capa #8 1) A ass spectoete applies a voltage of 2.00 kv to acceleate a singly chaged ion (+e). A 0.400 T field then bends the ion into a cicula path of adius 0.305. What is the ass

More information

The Predictive Power of Dividend Yields for Stock Returns: Risk Pricing or Mispricing?

The Predictive Power of Dividend Yields for Stock Returns: Risk Pricing or Mispricing? The Pedictive Powe of Dividend Yields fo Stock Retuns: Risk Picing o Mispicing? Glenn Boyle Depatment of Economics and Finance Univesity of Cantebuy Yanhui Li Depatment of Economics and Finance Univesity

More information

MATHEMATICAL SIMULATION OF MASS SPECTRUM

MATHEMATICAL SIMULATION OF MASS SPECTRUM MATHEMATICA SIMUATION OF MASS SPECTUM.Beánek, J.Knížek, Z. Pulpán 3, M. Hubálek 4, V. Novák Univesity of South Bohemia, Ceske Budejovice, Chales Univesity, Hadec Kalove, 3 Univesity of Hadec Kalove, Hadec

More information

Questions & Answers Chapter 10 Software Reliability Prediction, Allocation and Demonstration Testing

Questions & Answers Chapter 10 Software Reliability Prediction, Allocation and Demonstration Testing M13914 Questions & Answes Chapte 10 Softwae Reliability Pediction, Allocation and Demonstation Testing 1. Homewok: How to deive the fomula of failue ate estimate. λ = χ α,+ t When the failue times follow

More information

9:6.4 Sample Questions/Requests for Managing Underwriter Candidates

9:6.4 Sample Questions/Requests for Managing Underwriter Candidates 9:6.4 INITIAL PUBLIC OFFERINGS 9:6.4 Sample Questions/Requests fo Managing Undewite Candidates Recent IPO Expeience Please povide a list of all completed o withdawn IPOs in which you fim has paticipated

More information

The impact of migration on the provision. of UK public services (SRG.10.039.4) Final Report. December 2011

The impact of migration on the provision. of UK public services (SRG.10.039.4) Final Report. December 2011 The impact of migation on the povision of UK public sevices (SRG.10.039.4) Final Repot Decembe 2011 The obustness The obustness of the analysis of the is analysis the esponsibility is the esponsibility

More information

Financial Derivatives for Computer Network Capacity Markets with Quality-of-Service Guarantees

Financial Derivatives for Computer Network Capacity Markets with Quality-of-Service Guarantees Financial Deivatives fo Compute Netwok Capacity Makets with Quality-of-Sevice Guaantees Pette Pettesson pp@kth.se Febuay 2003 SICS Technical Repot T2003:03 Keywods Netwoking and Intenet Achitectue. Abstact

More information

arxiv:1110.2612v1 [q-fin.st] 12 Oct 2011

arxiv:1110.2612v1 [q-fin.st] 12 Oct 2011 Maket inefficiency identified by both single and multiple cuency tends T.Toká 1, and D. Hováth 1, 1 Sos Reseach a.s., Stojáenská 3, 040 01 Košice, Slovak Republic Abstact axiv:1110.2612v1 [q-fin.st] 12

More information

Lecture 16: Color and Intensity. and he made him a coat of many colours. Genesis 37:3

Lecture 16: Color and Intensity. and he made him a coat of many colours. Genesis 37:3 Lectue 16: Colo and Intensity and he made him a coat of many colous. Genesis 37:3 1. Intoduction To display a pictue using Compute Gaphics, we need to compute the colo and intensity of the light at each

More information

Timing Synchronization in High Mobility OFDM Systems

Timing Synchronization in High Mobility OFDM Systems Timing Synchonization in High Mobility OFDM Systems Yasamin Mostofi Depatment of Electical Engineeing Stanfod Univesity Stanfod, CA 94305, USA Email: yasi@wieless.stanfod.edu Donald C. Cox Depatment of

More information

Multicriteria analysis in telecommunications

Multicriteria analysis in telecommunications Poceedings of the 37th Hawaii Intenational Confeence on System Sciences - 2004 Multiciteia analysis in telecommunications Janusz Ganat and Andze P. Wiezbicki National Institute of Telecommunications Szachowa

More information

TECHNICAL DATA. JIS (Japanese Industrial Standard) Screw Thread. Specifications

TECHNICAL DATA. JIS (Japanese Industrial Standard) Screw Thread. Specifications JIS (Japanese Industial Standad) Scew Thead Specifications TECNICAL DATA Note: Although these specifications ae based on JIS they also apply to and DIN s. Some comments added by Mayland Metics Coutesy

More information

STABILITY ANALYSIS IN MILLING BASED ON OPERATIONAL MODAL DATA 1. INTRODUCTION

STABILITY ANALYSIS IN MILLING BASED ON OPERATIONAL MODAL DATA 1. INTRODUCTION Jounal of Machine Engineeing, Vol. 11, No. 4, 211 Batosz POWALKA 1 Macin CHODZKO 1 Kzysztof JEMIELNIAK 2 milling, chatte, opeational modal analysis STABILITY ANALYSIS IN MILLING BASED ON OPERATIONAL MODAL

More information

Towards Automatic Update of Access Control Policy

Towards Automatic Update of Access Control Policy Towads Automatic Update of Access Contol Policy Jinwei Hu, Yan Zhang, and Ruixuan Li Intelligent Systems Laboatoy, School of Computing and Mathematics Univesity of Westen Sydney, Sydney 1797, Austalia

More information

Structure and evolution of circumstellar disks during the early phase of accretion from a parent cloud

Structure and evolution of circumstellar disks during the early phase of accretion from a parent cloud Cente fo Tubulence Reseach Annual Reseach Biefs 2001 209 Stuctue and evolution of cicumstella disks duing the ealy phase of accetion fom a paent cloud By Olusola C. Idowu 1. Motivation and Backgound The

More information

Model Question Paper Mathematics Class XII

Model Question Paper Mathematics Class XII Model Question Pape Mathematics Class XII Time Allowed : 3 hous Maks: 100 Ma: Geneal Instuctions (i) The question pape consists of thee pats A, B and C. Each question of each pat is compulsoy. (ii) Pat

More information