7.1 Roots of a Polynomial

Size: px
Start display at page:

Download "7.1 Roots of a Polynomial"

Transcription

1 7.1 Roots of a Polynomial A. Purpose Given the oeffiients a i of a polynomial of degree n = NDEG > 0, a 1 z n + a 2 z n a n z + a n+1 with a 1 0, this subroutine omputes the NDEG roots of the polynomial. Sine the roots may be omplex, they will always be returned as omplex numbers, even when they are real. Subroutines are provided for four ases: SPOLZ DPOLZ CPOLZ ZPOLZ for single preision real oeffiients. for double preision real oeffiients. for single preision omplex oeffiients. for double preision omplex oeffiients. See Setion E for remarks on the method of storing double preision omplex numbers. B. Usage B.1 Program Prototype, Single Preision Real Coeffiients REAL A( NDEG + 1), H( NDEG**2) COMPLEX CALL SPOLZ(A, NDEG, Z, H, IERR) B.2 Program Prototype, Double Preision Real Coeffiients A( NDEG + 1), H( NDEG**2) COMPLEX*16 Z(2, NDEG) or CALL DPOLZ(A, NDEG, Z, H, IERR) B.3 Program Prototype, Single Preision Complex Coeffiients 1997 Calif. Inst. of Tehnology, 2015 Math à la Carte, In. COMPLEX A( NDEG + 1) REAL COMPLEX H( 2 * NDEG**2) CALL CPOLZ(A, NDEG, Z, H, IERR) B.4 Program Prototype, Double Preision Complex Coeffiients A(2, NDEG + 1) or COMPLEX*16 A( NDEG + 1) COMPLEX*16 H ( 2 * NDEG**2) Z(2, NDEG) or CALL ZPOLZ(A, NDEG, Z, H, IERR) B.5 Argument Definitions A() [in] Contains the oeffiients of a polynomial, high order oeffiient first, with A(1) 0. The ontents of this array will not be modified by the subroutine. In the ase of ZPOLZ, if the delaration DOUBLE PRECISION A(2, NDEG+1) is used, the user must store the real part of a i in A(1, i) and the imaginary part in A(2, i). NDEG [in] Degree of the polynomial. H() [srath] Work spae for the subroutine. Z() [out] Contains the polynomial roots stored as omplex numbers. In the ases of DPOLZ and ZPOLZ, if the delaration Z(2, NDEG) is used, the real part of z i will be returned in Z(1, i) and the imaginary part in Z(2, i). IERR [out] Error flag. Set by the subroutine to 0 on normal termination. Set to 1 if A(1) = 0. Set to 2 if NDEG < 1. Set to J > 0 if the iteration ount limit has been exeeded and roots 1 through J have not been determined. July 11, 2015 Roots of a Polynomial 7.1 1

2 C. Examples and Remarks The program, DRSPOLZ, uses SPOLZ to ompute the roots of the two polynomials x 3 4x 2 + x 4, and x 5 15x x 3 225x x 120 The output is shown in ODSPOLZ. The Fortran 77 standard does not support a double preision omplex data type, although suh a type is supported in many ompilers using the delaration, COM- PLEX*16. The subroutines desribed here onform to the standard and thus do not use COMPLEX*16. For ases in whih double preision omplex quantities are ommuniated using the arrays A() or Z(), these subroutines store a omplex number as an adjaent pair of double preision numbers, representing respetively the real and imaginary parts of the omplex number. This is ompatible with the Fortran 90 storage onvention for double preision omplex. If the user has the COM- PLEX*16 delaration available and wishes to use it, it will generally be ompatible with this storage onvention. D. Funtional Desription Method The degree, NDEG, and oeffiients, a 1,..., a NDEG+1, are given. An error ondition is reported if NDEG < 1 or if a 1 = 0. Let k + 1 be the index of the last nonzero oeffiient. If k < NDEG, the polynomial has a root at zero repeated NDEG k times and these roots are reorded. The remaining roots will be roots of the polynomial of degree k whose oeffiients are the first k + 1 given oeffiients. If k = 1, the root a 2 /a 1 is reorded. If k > 1, the subroutine forms the k k ompanion matrix H for this k th degree polynomial. The matrix H is zero exept for the first row, h 1,j = a j+1 /a 1, j = 1,..., k and the elements just below the diagonal, h i,i 1 = 1, i = 2,..., k A saling algorithm is applied to H to balane the sizes of the nonzero elements. Testing showed that auray ould be very unsatisfatory if no saling were done. The saling method used is a modifiation of the subroutine BALANC from the EISPACK olletion of matrix eigensystem subroutines [1], [2]. The modifiation avoids treating the elements that are known to be zero due to the form of the ompanion matrix. The searh for useful row or olumn permutations done in BALANC is also deleted sine, with a k+1 known to be nonzero, none of these permutations are possible. The eigenvalues of the balaned H matrix are then omputed using appropriate ode for the QR algorithm from EISPACK. For SPOLZ and DPOLZ the ode for the EIS- PACK subroutine, HQR, has been inorporated in-line. For CPOLZ or ZPOLZ, a all is made to SCOMQR or DCOMQR, respetively. These latter two subroutines are, respetively, single preision and double preision versions of the EISPACK subroutine, COMQR. Referene [3] reports that ompared with other widely used methods, the onversion of the root finding problem to an eigenvalue problem is superior in reliability, generally superior in auray, and omparable in speed. Auray tests A root of a polynomial is alled ill-onditioned if a small relative hange in the oeffiients makes a signifiantly larger relative hange in the root. Roots that are bunhed losely together relative to their magnitude, or relative to their distane from other roots, tend to be illonditioned. An extreme ase of ill-onditioning ours with multiple roots. If the oeffiients of a polynomial are only known to some relative preision, say p, then a double root will typially have a relative unertainty of about p 1/2, and a triple root a relative unertainty of about p 1/3. The auray of a omputed root is limited by the inherent onditioning of the root. Rather than diretly testing the auray of the omputed roots, we have hosen to test the auray with whih polynomial oeffiients ould be reonstituted from the omputed roots. To test these subroutines we seleted eight sets of roots to test SPOLZ and DPOLZ and a different group of eight sets of roots to test CPOLZ and ZPOLZ. These sets inluded double and triple roots, roots that formed a small luster relative to other roots, roots that differed by a fator of 10 8, and both real and omplex roots. The number of roots in eah set varied from 1 to 7. From eah set of roots we reated 8 test sets by multiplying all roots in the set by one of the fators, 10 3, 10 2,..., 10 3, or This produed a total of 64 test sets for eah subroutine. To exeute the test for one subroutine, say xpolz, and one set of roots, say r 1,..., r n, we did the following: 1. Compute, in double preision, the oeffiients, say a i, of the moni polynomial having the roots, r i. Subroutine ZCOEF of Chapter 15.3 is used for this. 2. Use subroutine xpolz to ompute the roots, say s i, of this polynomial Roots of a Polynomial July 11, 2015

3 3. Compute, in double preision, the oeffiients, say b i, of the moni polynomial having the roots, s i. 4. Compute δ = the maximum of the relative differenes between orresponding oeffiients, a i and b i. 5. Compute ε = δ /ρ, where ρ is the relative preision of the arithmeti being used by xpolz. The value for ρ was obtained as R1MACH(4) for single preision and D1MACH(4) for double preision. (See Chapter 19.1.) Ideally, Step 3 should be done using signifiantly higher preision than is used by the subroutine xpolz being tested, so the error measures, δ and ε, will be attributable only to xpolz with no inflation from Step 3. Sine we used double preision in Step 3 for all ases, we onlude that the reported values of ε are solely attributable to SPOLZ and CPOLZ in the tests of those subroutines, while the values of ε reported for DPOLZ and ZPOLZ are somewhat inflated due to errors from Step 3. These tests were run on an IBM PC/AT equipped with the Intel math oproessor. The preision was ρ for single preision and for double preision. The results may be summarized as follows: Max. ε over Number of Cases Subroutine 64 test ases with ɛ > 10 SPOLZ DPOLZ CPOLZ 8 0 ZPOLZ 43 8 Referenes 1. B. T. Smith, J. M. Boyle, B. S. Garbow, Y. Ikebe, V. C. Klema, and C. B. Moler, Matrix Eigensystem Routines EISPACK Guide, Leture Notes in Computer Siene 6, Springer Verlag, Berlin (1974) 387 pages. 2. B. S. Garbow, J. M. Boyle, J. J. Dongarra, and C. B. Moler, Matrix Eigensystem Routines EISPACK Guide Extension, Leture Notes in Computer Siene 51, Springer Verlag, Berlin (1977) 343 pages. 3. S. Goedeker, Remark on algorithms to find roots of polynomials, SIAM J. on Sientifi Computing 15, 5 (Sept. 1994) E. Error Proedures and Restritions The error indiator, IERR, will be set as follows: = 0 when no errors are deteted. = 1 if A(1) is zero, or A(1, 1) and A(2, 1) are both zero. = 2 if NDEG < 1. = J > 0 if the iteration ount limit has been exeeded and roots 1 through J have not been determined. The matrix eigenvalue odes allow a maximum of 30 iterations for eah root. This limit is ample. When IERR is set nonzero, the subroutine will also issue an error message using ERMSG, of Chapter 19.2, with an error level of 0. F. Supporting Information Entry Required Files CPOLZ AMACH, CPOLZ, ERFIN, ERMSG, SCOMQR DPOLZ AMACH, DPOLZ, ERFIN, ERMSG SPOLZ AMACH, ERFIN, ERMSG, SPOLZ ZPOLZ AMACH, DCOMQR, DZABS, ERFIN, ERMSG, ZPOLZ, ZQUO, ZSQRT Designed by C. L. Lawson, JPL, May Programmed by C. L. Lawson and S. Y. Chiu, JPL, May 1986, Feb July 11, 2015 Roots of a Polynomial 7.1 3

4 DRSPOLZ Program DRSPOLZ >> DRZPOLZ Krogh Mods to g e t omples used in s i n g l e pre. >> DRZPOLZ Krogh Set f o r d e r i v i n g s i n g l e p r e i s i o n C v e r s. >> DRSPOLZ WVS Remove 0 i n format >> DRSPOLZ CLL >> DRSPOLZ Lawson I n i t i a l Code. Conversion s h o u l d only be done from D to S f o r p r o e s s i n g to C. S r e p l a e s? : DR?POLZ,?POLZ Demonstration d r i v e r f o r SPOLZ. real A1 ( 4 ), A2 ( 6 ), H( 2 5 ) ++ CODE f o r.d..c. i s i n a t i v e C r e a l Z1 ( 2, 3 ), Z2 ( 2, 5) omplex Z1 ( 3 ), Z2 ( 5 ) integer N1, N2, IERR integer I, k %% l o n g i n t i, k ; data A1 / 1. E0, 4.E0, 1. E0, 4.E0 / data A2 / 1. E0, 15.E0, 8 5. E0, 225.E0, E0, 120.E0 / N1 = 3 N2 = format (, Degree =, I2 /, C o e f f i i e n t s =, ( T20, 4 ( F10. 4, 1X) ) ) 200 format (, Roots = /(2(1X, (,1X, F8. 5,,,1X, F8. 5, 2X, ) : 2X) ) ) 300 format (// ) print 100, N1, (A1( I ), I =1,4) %% p r i n t f ( Degree =%2l d \n C o e f f i i e n t s =, n1 ) ; %% f o r ( i = 0 ; i < 4 ; i++) p r i n t f ( %10.4 f, a1 [ i ] ) ; ++ End a l l SPOLZ(A1, N1, Z1,H, IERR) ++ CODE f o r.d. &.C. i s i n a t i v e C p r i n t 200, ( ( Z1 (K, I ),K=1,2), I =1,3) print 200, ( Z1 ( I ), I =1,3) print 300 print 100, N2, (A2( I ), I =1,6) %% p r i n t f ( \n Roots =\n ) ; %% f o r ( i = 0 ; i < 3 ; i +=2) { %% p r i n t f ( ( %8.5 f, %8.5 f ), z1 [ i ] [ 0 ], z1 [ i ] [ 1 ] ) ; %% i f ( i <2) p r i n t f ( ( %8.5 f, %8.5 f ), z1 [ i + 1 ] [ 0 ], z1 [ i + 1 ] [ 1 ] ) ; %% p r i n t f ( \n ) ; } %% p r i n t f ( \n\n \n Degree =%2l d \n C o e f f i i e n t s =, n2 ) ; %% f o r ( i = 0 ; i < 6 ; i +=4) { %% f o r ( k = i ; k < ( i < 2? i + 4 : 6 ) ; k++) Roots of a Polynomial July 11, 2015

5 %% p r i n t f ( %10.4 f, a2 [ k ] ) ; %% i f ( i < 4) p r i n t f ( \n ) ; } ++ End a l l SPOLZ(A2, N2, Z2,H, IERR) ++ CODE f o r.d. &.C. i s i n a t i v e C p r i n t 200,(( Z2(K, I ),K=1,2), I =1,5) print 200,( Z2 ( I ), I =1,5) %% p r i n t f ( \n Roots =\n ) ; %% f o r ( i = 0 ; i < 5 ; i +=2) { %% p r i n t f ( ( %8.5 f, %8.5 f ), z2 [ i ] [ 0 ], z2 [ i ] [ 1 ] ) ; %% i f ( i <4) p r i n t f ( ( %8.5 f, %8.5 f ), z2 [ i + 1 ] [ 0 ], z2 [ i + 1 ] [ 1 ] ) ; %% p r i n t f ( \n ) ; } %% p r i n t f ( \n ) ; end ODSPOLZ Degree = 3 C o e f f i i e n t s = Roots = ( , ) ( , ) ( , ) Degree = 5 C o e f f i i e n t s = Roots = ( , ) ( , ) ( , ) ( , ) ( , ) July 11, 2015 Roots of a Polynomial 7.1 5

11.1 Polynomial Least-Squares Curve Fit

11.1 Polynomial Least-Squares Curve Fit 11.1 Polynomial Least-Squares Curve Fit A. Purpose This subroutine determines a univariate polynomial that fits a given disrete set of data in the sense of minimizing the weighted sum of squares of residuals.

More information

3.2 Gaussian (Normal) Random Numbers and Vectors

3.2 Gaussian (Normal) Random Numbers and Vectors 3.2 Gaussian (Normal) Random Numbers and Vetors A. Purpose Generate pseudorandom numbers or vetors from the Gaussian (normal) distribution. B. Usage B.1 Generating Gaussian (normal) pseudorandom numbers

More information

2.9 Incomplete Elliptic Integrals

2.9 Incomplete Elliptic Integrals .9 Inomplete Ellipti Integrals A. Purpose An integral of the form R t, P t) 1/) dt 1) in whih Pt) is a polynomial of the third or fourth degree that has no multiple roots, and R is a rational funtion of

More information

4.3 Singular Value Decomposition and Analysis

4.3 Singular Value Decomposition and Analysis 4.3 Singular Value Deomposition and Analysis A. Purpose Any M N matrix, A, has a Singular Value Deomposition (SVD) of the form A = USV t where U is an M M orthogonal matrix, V is an N N orthogonal matrix,

More information

Developing Excel Macros for Solving Heat Diffusion Problems

Developing Excel Macros for Solving Heat Diffusion Problems Session 50 Developing Exel Maros for Solving Heat Diffusion Problems N. N. Sarker and M. A. Ketkar Department of Engineering Tehnology Prairie View A&M University Prairie View, TX 77446 Abstrat This paper

More information

FINITE WORD LENGTH EFFECTS IN DSP

FINITE WORD LENGTH EFFECTS IN DSP FINITE WORD LENGTH EFFECTS IN DSP PREPARED BY GUIDED BY Snehal Gor Dr. Srianth T. ABSTRACT We now that omputers store numbers not with infinite preision but rather in some approximation that an be paed

More information

An iterative least-square method suitable for solving large sparse matrices

An iterative least-square method suitable for solving large sparse matrices An iteratie least-square method suitable for soling large sparse matries By I. M. Khabaza The purpose of this paper is to report on the results of numerial experiments with an iteratie least-square method

More information

Routh-Hurwitz Lecture Routh-Hurwitz Stability test

Routh-Hurwitz Lecture Routh-Hurwitz Stability test ECE 35 Routh-Hurwitz Leture Routh-Hurwitz Staility test AStolp /3/6, //9, /6/ Denominator of transfer funtion or signal: s n s n s n 3 s n 3 a s a Usually of the Closed-loop transfer funtion denominator

More information

23.1 Tuning controllers, in the large view Quoting from Section 16.7:

23.1 Tuning controllers, in the large view Quoting from Section 16.7: Lesson 23. Tuning a real ontroller - modeling, proess identifiation, fine tuning 23.0 Context We have learned to view proesses as dynami systems, taking are to identify their input, intermediate, and output

More information

8.2 Solve System of Nonlinear Equations

8.2 Solve System of Nonlinear Equations 8.2 Solve System of Nonlinear Equations A. Purpose This subroutine solves a system of n nonlinear equations in n unknowns. The problem can be expressed as f(x) = 0 where x denotes an n-vector of unknowns

More information

Danielle Maddix AA238 Final Project December 9, 2016

Danielle Maddix AA238 Final Project December 9, 2016 Struture and Parameter Learning in Bayesian Networks with Appliations to Prediting Breast Caner Tumor Malignany in a Lower Dimension Feature Spae Danielle Maddix AA238 Final Projet Deember 9, 2016 Abstrat

More information

Applying CIECAM02 for Mobile Display Viewing Conditions

Applying CIECAM02 for Mobile Display Viewing Conditions Applying CIECAM2 for Mobile Display Viewing Conditions YungKyung Park*, ChangJun Li*, M.. Luo*, Youngshin Kwak**, Du-Sik Park **, and Changyeong Kim**; * University of Leeds, Colour Imaging Lab, UK*, **

More information

Measuring & Inducing Neural Activity Using Extracellular Fields I: Inverse systems approach

Measuring & Inducing Neural Activity Using Extracellular Fields I: Inverse systems approach Measuring & Induing Neural Ativity Using Extraellular Fields I: Inverse systems approah Keith Dillon Department of Eletrial and Computer Engineering University of California San Diego 9500 Gilman Dr. La

More information

Advanced Computational Fluid Dynamics AA215A Lecture 4

Advanced Computational Fluid Dynamics AA215A Lecture 4 Advaned Computational Fluid Dynamis AA5A Leture 4 Antony Jameson Winter Quarter,, Stanford, CA Abstrat Leture 4 overs analysis of the equations of gas dynamis Contents Analysis of the equations of gas

More information

6.3 Basic Linear Algebra Subprograms (BLAS1)

6.3 Basic Linear Algebra Subprograms (BLAS1) 6.3 Basi Linear Algebra Subprograms (BLAS1) A. Purpose This is a set of subroutine and funtion subprograms for basi mathematial operations on a single vetor or a pair of vetors. The operations provided

More information

UTC. Engineering 329. Proportional Controller Design. Speed System. John Beverly. Green Team. John Beverly Keith Skiles John Barker.

UTC. Engineering 329. Proportional Controller Design. Speed System. John Beverly. Green Team. John Beverly Keith Skiles John Barker. UTC Engineering 329 Proportional Controller Design for Speed System By John Beverly Green Team John Beverly Keith Skiles John Barker 24 Mar 2006 Introdution This experiment is intended test the variable

More information

Complexity of Regularization RBF Networks

Complexity of Regularization RBF Networks Complexity of Regularization RBF Networks Mark A Kon Department of Mathematis and Statistis Boston University Boston, MA 02215 mkon@buedu Leszek Plaskota Institute of Applied Mathematis University of Warsaw

More information

arxiv:math/ v1 [math.ca] 27 Nov 2003

arxiv:math/ v1 [math.ca] 27 Nov 2003 arxiv:math/011510v1 [math.ca] 27 Nov 200 Counting Integral Lamé Equations by Means of Dessins d Enfants Sander Dahmen November 27, 200 Abstrat We obtain an expliit formula for the number of Lamé equations

More information

max min z i i=1 x j k s.t. j=1 x j j:i T j

max min z i i=1 x j k s.t. j=1 x j j:i T j AM 221: Advaned Optimization Spring 2016 Prof. Yaron Singer Leture 22 April 18th 1 Overview In this leture, we will study the pipage rounding tehnique whih is a deterministi rounding proedure that an be

More information

INTRO VIDEOS. LESSON 9.5: The Doppler Effect

INTRO VIDEOS. LESSON 9.5: The Doppler Effect DEVIL PHYSICS BADDEST CLASS ON CAMPUS IB PHYSICS INTRO VIDEOS Big Bang Theory of the Doppler Effet Doppler Effet LESSON 9.5: The Doppler Effet 1. Essential Idea: The Doppler Effet desribes the phenomenon

More information

Tutorial 4 (week 4) Solutions

Tutorial 4 (week 4) Solutions THE UNIVERSITY OF SYDNEY PURE MATHEMATICS Summer Shool Math26 28 Tutorial week s You are given the following data points: x 2 y 2 Construt a Lagrange basis {p p p 2 p 3 } of P 3 using the x values from

More information

CMSC 451: Lecture 9 Greedy Approximation: Set Cover Thursday, Sep 28, 2017

CMSC 451: Lecture 9 Greedy Approximation: Set Cover Thursday, Sep 28, 2017 CMSC 451: Leture 9 Greedy Approximation: Set Cover Thursday, Sep 28, 2017 Reading: Chapt 11 of KT and Set 54 of DPV Set Cover: An important lass of optimization problems involves overing a ertain domain,

More information

Perturbation Analyses for the Cholesky Factorization with Backward Rounding Errors

Perturbation Analyses for the Cholesky Factorization with Backward Rounding Errors Perturbation Analyses for the holesky Fatorization with Bakward Rounding Errors Xiao-Wen hang Shool of omputer Siene, MGill University, Montreal, Quebe, anada, H3A A7 Abstrat. This paper gives perturbation

More information

QCLAS Sensor for Purity Monitoring in Medical Gas Supply Lines

QCLAS Sensor for Purity Monitoring in Medical Gas Supply Lines DOI.56/sensoren6/P3. QLAS Sensor for Purity Monitoring in Medial Gas Supply Lines Henrik Zimmermann, Mathias Wiese, Alessandro Ragnoni neoplas ontrol GmbH, Walther-Rathenau-Str. 49a, 7489 Greifswald, Germany

More information

( ) ( ) Volumetric Properties of Pure Fluids, part 4. The generic cubic equation of state:

( ) ( ) Volumetric Properties of Pure Fluids, part 4. The generic cubic equation of state: CE304, Spring 2004 Leture 6 Volumetri roperties of ure Fluids, part 4 The generi ubi equation of state: There are many possible equations of state (and many have been proposed) that have the same general

More information

Lightpath routing for maximum reliability in optical mesh networks

Lightpath routing for maximum reliability in optical mesh networks Vol. 7, No. 5 / May 2008 / JOURNAL OF OPTICAL NETWORKING 449 Lightpath routing for maximum reliability in optial mesh networks Shengli Yuan, 1, * Saket Varma, 2 and Jason P. Jue 2 1 Department of Computer

More information

A Spatiotemporal Approach to Passive Sound Source Localization

A Spatiotemporal Approach to Passive Sound Source Localization A Spatiotemporal Approah Passive Sound Soure Loalization Pasi Pertilä, Mikko Parviainen, Teemu Korhonen and Ari Visa Institute of Signal Proessing Tampere University of Tehnology, P.O.Box 553, FIN-330,

More information

Case I: 2 users In case of 2 users, the probability of error for user 1 was earlier derived to be 2 A1

Case I: 2 users In case of 2 users, the probability of error for user 1 was earlier derived to be 2 A1 MUTLIUSER DETECTION (Letures 9 and 0) 6:33:546 Wireless Communiations Tehnologies Instrutor: Dr. Narayan Mandayam Summary By Shweta Shrivastava (shwetash@winlab.rutgers.edu) bstrat This artile ontinues

More information

Estimating the probability law of the codelength as a function of the approximation error in image compression

Estimating the probability law of the codelength as a function of the approximation error in image compression Estimating the probability law of the odelength as a funtion of the approximation error in image ompression François Malgouyres Marh 7, 2007 Abstrat After some reolletions on ompression of images using

More information

A Heuristic Approach for Design and Calculation of Pressure Distribution over Naca 4 Digit Airfoil

A Heuristic Approach for Design and Calculation of Pressure Distribution over Naca 4 Digit Airfoil IOSR Journal of Engineering (IOSRJEN) ISSN (e): 2250-3021, ISSN (p): 2278-8719 PP 11-15 www.iosrjen.org A Heuristi Approah for Design and Calulation of Pressure Distribution over Naa 4 Digit Airfoil G.

More information

7 Max-Flow Problems. Business Computing and Operations Research 608

7 Max-Flow Problems. Business Computing and Operations Research 608 7 Max-Flow Problems Business Computing and Operations Researh 68 7. Max-Flow Problems In what follows, we onsider a somewhat modified problem onstellation Instead of osts of transmission, vetor now indiates

More information

Maximum Entropy and Exponential Families

Maximum Entropy and Exponential Families Maximum Entropy and Exponential Families April 9, 209 Abstrat The goal of this note is to derive the exponential form of probability distribution from more basi onsiderations, in partiular Entropy. It

More information

Control Theory association of mathematics and engineering

Control Theory association of mathematics and engineering Control Theory assoiation of mathematis and engineering Wojieh Mitkowski Krzysztof Oprzedkiewiz Department of Automatis AGH Univ. of Siene & Tehnology, Craow, Poland, Abstrat In this paper a methodology

More information

UPPER-TRUNCATED POWER LAW DISTRIBUTIONS

UPPER-TRUNCATED POWER LAW DISTRIBUTIONS Fratals, Vol. 9, No. (00) 09 World Sientifi Publishing Company UPPER-TRUNCATED POWER LAW DISTRIBUTIONS STEPHEN M. BURROUGHS and SARAH F. TEBBENS College of Marine Siene, University of South Florida, St.

More information

Nonreversibility of Multiple Unicast Networks

Nonreversibility of Multiple Unicast Networks Nonreversibility of Multiple Uniast Networks Randall Dougherty and Kenneth Zeger September 27, 2005 Abstrat We prove that for any finite direted ayli network, there exists a orresponding multiple uniast

More information

Sequence Analysis, WS 14/15, D. Huson & R. Neher (this part by D. Huson & J. Fischer) January 21,

Sequence Analysis, WS 14/15, D. Huson & R. Neher (this part by D. Huson & J. Fischer) January 21, Sequene Analysis, WS 14/15, D. Huson & R. Neher (this part by D. Huson & J. Fisher) January 21, 201511 9 Suffix Trees and Suffix Arrays This leture is based on the following soures, whih are all reommended

More information

Where as discussed previously we interpret solutions to this partial differential equation in the weak sense: b

Where as discussed previously we interpret solutions to this partial differential equation in the weak sense: b Consider the pure initial value problem for a homogeneous system of onservation laws with no soure terms in one spae dimension: Where as disussed previously we interpret solutions to this partial differential

More information

Singular Event Detection

Singular Event Detection Singular Event Detetion Rafael S. Garía Eletrial Engineering University of Puerto Rio at Mayagüez Rafael.Garia@ee.uprm.edu Faulty Mentor: S. Shankar Sastry Researh Supervisor: Jonathan Sprinkle Graduate

More information

A simple expression for radial distribution functions of pure fluids and mixtures

A simple expression for radial distribution functions of pure fluids and mixtures A simple expression for radial distribution funtions of pure fluids and mixtures Enrio Matteoli a) Istituto di Chimia Quantistia ed Energetia Moleolare, CNR, Via Risorgimento, 35, 56126 Pisa, Italy G.

More information

REFINED UPPER BOUNDS FOR THE LINEAR DIOPHANTINE PROBLEM OF FROBENIUS. 1. Introduction

REFINED UPPER BOUNDS FOR THE LINEAR DIOPHANTINE PROBLEM OF FROBENIUS. 1. Introduction Version of 5/2/2003 To appear in Advanes in Applied Mathematis REFINED UPPER BOUNDS FOR THE LINEAR DIOPHANTINE PROBLEM OF FROBENIUS MATTHIAS BECK AND SHELEMYAHU ZACKS Abstrat We study the Frobenius problem:

More information

Lecture 7: Sampling/Projections for Least-squares Approximation, Cont. 7 Sampling/Projections for Least-squares Approximation, Cont.

Lecture 7: Sampling/Projections for Least-squares Approximation, Cont. 7 Sampling/Projections for Least-squares Approximation, Cont. Stat60/CS94: Randomized Algorithms for Matries and Data Leture 7-09/5/013 Leture 7: Sampling/Projetions for Least-squares Approximation, Cont. Leturer: Mihael Mahoney Sribe: Mihael Mahoney Warning: these

More information

Likelihood-confidence intervals for quantiles in Extreme Value Distributions

Likelihood-confidence intervals for quantiles in Extreme Value Distributions Likelihood-onfidene intervals for quantiles in Extreme Value Distributions A. Bolívar, E. Díaz-Franés, J. Ortega, and E. Vilhis. Centro de Investigaión en Matemátias; A.P. 42, Guanajuato, Gto. 36; Méxio

More information

Supplementary Materials

Supplementary Materials Supplementary Materials Neural population partitioning and a onurrent brain-mahine interfae for sequential motor funtion Maryam M. Shanehi, Rollin C. Hu, Marissa Powers, Gregory W. Wornell, Emery N. Brown

More information

DIGITAL DISTANCE RELAYING SCHEME FOR PARALLEL TRANSMISSION LINES DURING INTER-CIRCUIT FAULTS

DIGITAL DISTANCE RELAYING SCHEME FOR PARALLEL TRANSMISSION LINES DURING INTER-CIRCUIT FAULTS CHAPTER 4 DIGITAL DISTANCE RELAYING SCHEME FOR PARALLEL TRANSMISSION LINES DURING INTER-CIRCUIT FAULTS 4.1 INTRODUCTION Around the world, environmental and ost onsiousness are foring utilities to install

More information

Chapter IX. Roots of Equations

Chapter IX. Roots of Equations 14 Chapter IX Roots of Equations Root solving typially onsists of finding values of x whih satisfy a relationship suh as: 3 3 x + x = 1 + e x The problem an be restated as: Find the root of 3 f ( x) =

More information

A Functional Representation of Fuzzy Preferences

A Functional Representation of Fuzzy Preferences Theoretial Eonomis Letters, 017, 7, 13- http://wwwsirporg/journal/tel ISSN Online: 16-086 ISSN Print: 16-078 A Funtional Representation of Fuzzy Preferenes Susheng Wang Department of Eonomis, Hong Kong

More information

Weighted K-Nearest Neighbor Revisited

Weighted K-Nearest Neighbor Revisited Weighted -Nearest Neighbor Revisited M. Biego University of Verona Verona, Italy Email: manuele.biego@univr.it M. Loog Delft University of Tehnology Delft, The Netherlands Email: m.loog@tudelft.nl Abstrat

More information

A Longitudinal Aerodynamic Data Repeatability Study for a Commercial Transport Model Test in the National Transonic Facility

A Longitudinal Aerodynamic Data Repeatability Study for a Commercial Transport Model Test in the National Transonic Facility NASA Tehnial Paper 3522 A Longitudinal Aerodynami Data Repeatability Study for a Commerial Transport Model Test in the National Transoni Faility R. A. Wahls and J. B. Adok Langley Researh Center Hampton,

More information

After the completion of this section the student should recall

After the completion of this section the student should recall Chapter I MTH FUNDMENTLS I. Sets, Numbers, Coordinates, Funtions ugust 30, 08 3 I. SETS, NUMERS, COORDINTES, FUNCTIONS Objetives: fter the ompletion of this setion the student should reall - the definition

More information

Combined Electric and Magnetic Dipoles for Mesoband Radiation, Part 2

Combined Electric and Magnetic Dipoles for Mesoband Radiation, Part 2 Sensor and Simulation Notes Note 53 3 May 8 Combined Eletri and Magneti Dipoles for Mesoband Radiation, Part Carl E. Baum University of New Mexio Department of Eletrial and Computer Engineering Albuquerque

More information

ETSI EN V8.0.1 ( )

ETSI EN V8.0.1 ( ) EN 300 728 V8.0.1 (2000-11) European Standard (Teleommuniations series) Digital ellular teleommuniations system (Phase 2+); Comfort noise aspets for Enhaned Full Rate (EFR) speeh traffi hannels (GSM 06.62

More information

A NETWORK SIMPLEX ALGORITHM FOR THE MINIMUM COST-BENEFIT NETWORK FLOW PROBLEM

A NETWORK SIMPLEX ALGORITHM FOR THE MINIMUM COST-BENEFIT NETWORK FLOW PROBLEM NETWORK SIMPLEX LGORITHM FOR THE MINIMUM COST-BENEFIT NETWORK FLOW PROBLEM Cen Çalışan, Utah Valley University, 800 W. University Parway, Orem, UT 84058, 801-863-6487, en.alisan@uvu.edu BSTRCT The minimum

More information

Calibration of Piping Assessment Models in the Netherlands

Calibration of Piping Assessment Models in the Netherlands ISGSR 2011 - Vogt, Shuppener, Straub & Bräu (eds) - 2011 Bundesanstalt für Wasserbau ISBN 978-3-939230-01-4 Calibration of Piping Assessment Models in the Netherlands J. Lopez de la Cruz & E.O.F. Calle

More information

Study of EM waves in Periodic Structures (mathematical details)

Study of EM waves in Periodic Structures (mathematical details) Study of EM waves in Periodi Strutures (mathematial details) Massahusetts Institute of Tehnology 6.635 partial leture notes 1 Introdution: periodi media nomenlature 1. The spae domain is defined by a basis,(a

More information

A model for measurement of the states in a coupled-dot qubit

A model for measurement of the states in a coupled-dot qubit A model for measurement of the states in a oupled-dot qubit H B Sun and H M Wiseman Centre for Quantum Computer Tehnology Centre for Quantum Dynamis Griffith University Brisbane 4 QLD Australia E-mail:

More information

The universal model of error of active power measuring channel

The universal model of error of active power measuring channel 7 th Symposium EKO TC 4 3 rd Symposium EKO TC 9 and 5 th WADC Workshop nstrumentation for the CT Era Sept. 8-2 Kosie Slovakia The universal model of error of ative power measuring hannel Boris Stogny Evgeny

More information

The Tetrahedron Quality Factors of CSDS

The Tetrahedron Quality Factors of CSDS MAX PLANCK INSTITUT FÜR AERONOMIE D 37191 Katlenburg-Lindau, Federal Republi of Germany MPAE W 100 94 27 The Tetrahedron Quality Fators of CSDS PATRICK W. DALY 1994 June 7 This report available from http://www.mpae.gwdg.de/~daly/tetra.html

More information

Ayan Kumar Bandyopadhyay

Ayan Kumar Bandyopadhyay Charaterization of radiating apertures using Multiple Multipole Method And Modeling and Optimization of a Spiral Antenna for Ground Penetrating Radar Appliations Ayan Kumar Bandyopadhyay FET-IESK, Otto-von-Guerike-University,

More information

An I-Vector Backend for Speaker Verification

An I-Vector Backend for Speaker Verification An I-Vetor Bakend for Speaker Verifiation Patrik Kenny, 1 Themos Stafylakis, 1 Jahangir Alam, 1 and Marel Kokmann 2 1 CRIM, Canada, {patrik.kenny, themos.stafylakis, jahangir.alam}@rim.a 2 VoieTrust, Canada,

More information

Centroid Detection by Gaussian Pattern Matching In Adaptive Optics

Centroid Detection by Gaussian Pattern Matching In Adaptive Optics 010 International Journal of Computer Appliations (0975-8887) Centroid Detetion by Gaussian Pattern Mathing In Adaptive Optis Akondi Vyas Indian Institute of Astrophysis Indian Institute of Siene M B Roopashree

More information

Supplementary Information. Infrared Transparent Visible Opaque Fabrics (ITVOF) for Personal Cooling

Supplementary Information. Infrared Transparent Visible Opaque Fabrics (ITVOF) for Personal Cooling Supplementary Information Infrared Transparent Visible Opaque Fabris (ITVOF) for Personal Cooling Jonathan K. Tong 1,Ɨ, Xiaopeng Huang 1,Ɨ, Svetlana V. Boriskina 1, James Loomis 1, Yanfei Xu 1, and Gang

More information

THE NUMBER FIELD SIEVE FOR INTEGERS OF LOW WEIGHT

THE NUMBER FIELD SIEVE FOR INTEGERS OF LOW WEIGHT MATHEMATICS OF COMPUTATION Volume 79, Number 269, January 2010, Pages 583 602 S 0025-5718(09)02198-X Artile eletronially published on July 27, 2009 THE NUMBER FIELD SIEVE FOR INTEGERS OF LOW WEIGHT OLIVER

More information

arxiv:gr-qc/ v2 6 Feb 2004

arxiv:gr-qc/ v2 6 Feb 2004 Hubble Red Shift and the Anomalous Aeleration of Pioneer 0 and arxiv:gr-q/0402024v2 6 Feb 2004 Kostadin Trenčevski Faulty of Natural Sienes and Mathematis, P.O.Box 62, 000 Skopje, Maedonia Abstrat It this

More information

MOLECULAR ORBITAL THEORY- PART I

MOLECULAR ORBITAL THEORY- PART I 5.6 Physial Chemistry Leture #24-25 MOLECULAR ORBITAL THEORY- PART I At this point, we have nearly ompleted our rash-ourse introdution to quantum mehanis and we re finally ready to deal with moleules.

More information

6.4 Dividing Polynomials: Long Division and Synthetic Division

6.4 Dividing Polynomials: Long Division and Synthetic Division 6 CHAPTER 6 Rational Epressions 6. Whih of the following are equivalent to? y a., b. # y. y, y 6. Whih of the following are equivalent to 5? a a. 5, b. a 5, 5. # a a 6. In your own words, eplain one method

More information

Chapter 2. Conditional Probability

Chapter 2. Conditional Probability Chapter. Conditional Probability The probabilities assigned to various events depend on what is known about the experimental situation when the assignment is made. For a partiular event A, we have used

More information

Robust Flight Control Design for a Turn Coordination System with Parameter Uncertainties

Robust Flight Control Design for a Turn Coordination System with Parameter Uncertainties Amerian Journal of Applied Sienes 4 (7): 496-501, 007 ISSN 1546-939 007 Siene Publiations Robust Flight ontrol Design for a urn oordination System with Parameter Unertainties 1 Ari Legowo and Hiroshi Okubo

More information

Variation Based Online Travel Time Prediction Using Clustered Neural Networks

Variation Based Online Travel Time Prediction Using Clustered Neural Networks Variation Based Online Travel Time Predition Using lustered Neural Networks Jie Yu, Gang-Len hang, H.W. Ho and Yue Liu Abstrat-This paper proposes a variation-based online travel time predition approah

More information

Physical Laws, Absolutes, Relative Absolutes and Relativistic Time Phenomena

Physical Laws, Absolutes, Relative Absolutes and Relativistic Time Phenomena Page 1 of 10 Physial Laws, Absolutes, Relative Absolutes and Relativisti Time Phenomena Antonio Ruggeri modexp@iafria.om Sine in the field of knowledge we deal with absolutes, there are absolute laws that

More information

IMPEDANCE EFFECTS OF LEFT TURNERS FROM THE MAJOR STREET AT A TWSC INTERSECTION

IMPEDANCE EFFECTS OF LEFT TURNERS FROM THE MAJOR STREET AT A TWSC INTERSECTION 09-1289 Citation: Brilon, W. (2009): Impedane Effets of Left Turners from the Major Street at A TWSC Intersetion. Transportation Researh Reord Nr. 2130, pp. 2-8 IMPEDANCE EFFECTS OF LEFT TURNERS FROM THE

More information

Supporting Information

Supporting Information Supporting Information Olsman and Goentoro 10.1073/pnas.1601791113 SI Materials Analysis of the Sensitivity and Error Funtions. We now define the sensitivity funtion Sð, «0 Þ, whih summarizes the steepness

More information

Phase Diffuser at the Transmitter for Lasercom Link: Effect of Partially Coherent Beam on the Bit-Error Rate.

Phase Diffuser at the Transmitter for Lasercom Link: Effect of Partially Coherent Beam on the Bit-Error Rate. Phase Diffuser at the Transmitter for Laserom Link: Effet of Partially Coherent Beam on the Bit-Error Rate. O. Korotkova* a, L. C. Andrews** a, R. L. Phillips*** b a Dept. of Mathematis, Univ. of Central

More information

Concerning the Numbers 22p + 1, p Prime

Concerning the Numbers 22p + 1, p Prime Conerning the Numbers 22p + 1, p Prime By John Brillhart 1. Introdution. In a reent investigation [7] the problem of fatoring numbers of the form 22p + 1, p a, was enountered. Sine 22p + 1 = (2P - 2*

More information

A. Shirani*and M. H. Alamatsaz

A. Shirani*and M. H. Alamatsaz IJST (013) A1: 9-34 Iranian Journal of Siene & Tehnology http://www.shirazu.a.ir/en Calulion of exposure buildup fators for point isotropi gamma ray soures in strified spherial shields of wer surrounded

More information

Slenderness Effects for Concrete Columns in Sway Frame - Moment Magnification Method

Slenderness Effects for Concrete Columns in Sway Frame - Moment Magnification Method Slenderness Effets for Conrete Columns in Sway Frame - Moment Magnifiation Method Slender Conrete Column Design in Sway Frame Buildings Evaluate slenderness effet for olumns in a sway frame multistory

More information

EXPERIMENTAL INVESTIGATION OF CRITICAL STRAIN FOR VISCOPLASTIC MATERIALS WITH DIFFERENT GEOMETRIES AND RHEOMETERS

EXPERIMENTAL INVESTIGATION OF CRITICAL STRAIN FOR VISCOPLASTIC MATERIALS WITH DIFFERENT GEOMETRIES AND RHEOMETERS EXPERIMENTAL INVESTIGATION OF CRITICAL STRAIN FOR VISCOPLASTIC MATERIALS WITH DIFFERENT GEOMETRIES AND RHEOMETERS Guilherme A. S. Balvedi, 2 Diogo E. V. Andrade, 3 Admilson T. Frano e 3 Cezar O. R. Negrão

More information

15.12 Applications of Suffix Trees

15.12 Applications of Suffix Trees 248 Algorithms in Bioinformatis II, SoSe 07, ZBIT, D. Huson, May 14, 2007 15.12 Appliations of Suffix Trees 1. Searhing for exat patterns 2. Minimal unique substrings 3. Maximum unique mathes 4. Maximum

More information

Hankel Optimal Model Order Reduction 1

Hankel Optimal Model Order Reduction 1 Massahusetts Institute of Tehnology Department of Eletrial Engineering and Computer Siene 6.245: MULTIVARIABLE CONTROL SYSTEMS by A. Megretski Hankel Optimal Model Order Redution 1 This leture overs both

More information

A Characterization of Wavelet Convergence in Sobolev Spaces

A Characterization of Wavelet Convergence in Sobolev Spaces A Charaterization of Wavelet Convergene in Sobolev Spaes Mark A. Kon 1 oston University Louise Arakelian Raphael Howard University Dediated to Prof. Robert Carroll on the oasion of his 70th birthday. Abstrat

More information

Optimal control of solar energy systems

Optimal control of solar energy systems Optimal ontrol of solar energy systems Viorel Badesu Candida Oanea Institute Polytehni University of Buharest Contents. Optimal operation - systems with water storage tanks 2. Sizing solar olletors 3.

More information

In this problem, we are given the following quantities: We want to find: Equations and basic calculations:

In this problem, we are given the following quantities: We want to find: Equations and basic calculations: .1 It takes. million tons of oal per year to a 1000-W power plant that operates at a apaity fator of 70%. If the heating value of the oal is 1,000 /lb, alulate the plant s effiieny and the heat rate. In

More information

Application of the Dyson-type boson mapping for low-lying electron excited states in molecules

Application of the Dyson-type boson mapping for low-lying electron excited states in molecules Prog. Theor. Exp. Phys. 05, 063I0 ( pages DOI: 0.093/ptep/ptv068 Appliation of the Dyson-type boson mapping for low-lying eletron exited states in moleules adao Ohkido, and Makoto Takahashi Teaher-training

More information

Average Rate Speed Scaling

Average Rate Speed Scaling Average Rate Speed Saling Nikhil Bansal David P. Bunde Ho-Leung Chan Kirk Pruhs May 2, 2008 Abstrat Speed saling is a power management tehnique that involves dynamially hanging the speed of a proessor.

More information

9 Geophysics and Radio-Astronomy: VLBI VeryLongBaseInterferometry

9 Geophysics and Radio-Astronomy: VLBI VeryLongBaseInterferometry 9 Geophysis and Radio-Astronomy: VLBI VeryLongBaseInterferometry VLBI is an interferometry tehnique used in radio astronomy, in whih two or more signals, oming from the same astronomial objet, are reeived

More information

Searching All Approximate Covers and Their Distance using Finite Automata

Searching All Approximate Covers and Their Distance using Finite Automata Searhing All Approximate Covers and Their Distane using Finite Automata Ondřej Guth, Bořivoj Melihar, and Miroslav Balík České vysoké učení tehniké v Praze, Praha, CZ, {gutho1,melihar,alikm}@fel.vut.z

More information

Gluing Potential Energy Surfaces with Rare Event Simulations

Gluing Potential Energy Surfaces with Rare Event Simulations This is an open aess artile published under an ACS AuthorChoie Liense, whih permits opying and redistribution of the artile or any adaptations for non-ommerial purposes. pubs.as.org/jctc Gluing Potential

More information

DETERMINATION OF CARRIER TEMPERATURE FROM JUNCTION I(V) MEASUREMENTS

DETERMINATION OF CARRIER TEMPERATURE FROM JUNCTION I(V) MEASUREMENTS Journal of Eletron Devies, Vol. 15, 2012, pp. 1269-1273 JED [ISS: 1682-3427 ] DETERMIATIO OF CARRIER TEMPERATURE FROM JUCTIO I(V) MEASUREMETS 1 Mohamed H. Boukhatem, 2 Mario El Tahhi, 3 Pierre Mialhe 1

More information

Most results in this section are stated without proof.

Most results in this section are stated without proof. Leture 8 Level 4 v2 he Expliit formula. Most results in this setion are stated without proof. Reall that we have shown that ζ (s has only one pole, a simple one at s =. It has trivial zeros at the negative

More information

Analysis of discretization in the direct simulation Monte Carlo

Analysis of discretization in the direct simulation Monte Carlo PHYSICS OF FLUIDS VOLUME 1, UMBER 1 OCTOBER Analysis of disretization in the diret simulation Monte Carlo iolas G. Hadjionstantinou a) Department of Mehanial Engineering, Massahusetts Institute of Tehnology,

More information

Canimals. borrowed, with thanks, from Malaspina University College/Kwantlen University College

Canimals. borrowed, with thanks, from Malaspina University College/Kwantlen University College Canimals borrowed, with thanks, from Malaspina University College/Kwantlen University College http://ommons.wikimedia.org/wiki/file:ursus_maritimus_steve_amstrup.jpg Purpose Investigate the rate of heat

More information

CHBE320 LECTURE X STABILITY OF CLOSED-LOOP CONTOL SYSTEMS. Professor Dae Ryook Yang

CHBE320 LECTURE X STABILITY OF CLOSED-LOOP CONTOL SYSTEMS. Professor Dae Ryook Yang CHBE320 LECTURE X STABILITY OF CLOSED-LOOP CONTOL SYSTEMS Professor Dae Ryook Yang Spring 208 Dept. of Chemial and Biologial Engineering 0- Road Map of the Leture X Stability of losed-loop ontrol system

More information

The transition between quasi-static and fully dynamic for interfaces

The transition between quasi-static and fully dynamic for interfaces Physia D 198 (24) 136 147 The transition between quasi-stati and fully dynami for interfaes G. Caginalp, H. Merdan Department of Mathematis, University of Pittsburgh, Pittsburgh, PA 1526, USA Reeived 6

More information

Failure Assessment Diagram Analysis of Creep Crack Initiation in 316H Stainless Steel

Failure Assessment Diagram Analysis of Creep Crack Initiation in 316H Stainless Steel Failure Assessment Diagram Analysis of Creep Crak Initiation in 316H Stainless Steel C. M. Davies *, N. P. O Dowd, D. W. Dean, K. M. Nikbin, R. A. Ainsworth Department of Mehanial Engineering, Imperial

More information

Computer Science 786S - Statistical Methods in Natural Language Processing and Data Analysis Page 1

Computer Science 786S - Statistical Methods in Natural Language Processing and Data Analysis Page 1 Computer Siene 786S - Statistial Methods in Natural Language Proessing and Data Analysis Page 1 Hypothesis Testing A statistial hypothesis is a statement about the nature of the distribution of a random

More information

MAC Calculus II Summer All you need to know on partial fractions and more

MAC Calculus II Summer All you need to know on partial fractions and more MC -75-Calulus II Summer 00 ll you need to know on partial frations and more What are partial frations? following forms:.... where, α are onstants. Partial frations are frations of one of the + α, ( +

More information

Geometry of Transformations of Random Variables

Geometry of Transformations of Random Variables Geometry of Transformations of Random Variables Univariate distributions We are interested in the problem of finding the distribution of Y = h(x) when the transformation h is one-to-one so that there is

More information

Optimization of replica exchange molecular dynamics by fast mimicking

Optimization of replica exchange molecular dynamics by fast mimicking THE JOURNAL OF CHEMICAL PHYSICS 127, 204104 2007 Optimization of replia exhange moleular dynamis by fast mimiking Jozef Hritz and Chris Oostenbrink a Leiden Amsterdam Center for Drug Researh (LACDR), Division

More information

Centroid Detection by Gaussian Pattern Matching in Adaptive Optics

Centroid Detection by Gaussian Pattern Matching in Adaptive Optics Centroid Detetion by Gaussian Pattern Mathing in Adaptive Optis Akondi Vyas ndian nstitute of Astrophysis Koramangala, Bangalore, ndia ndian nstitute of Siene Koramangala, Bangalore, ndia 91-99867340 vyas@iiap.res.in

More information

Aharonov-Bohm effect. Dan Solomon.

Aharonov-Bohm effect. Dan Solomon. Aharonov-Bohm effet. Dan Solomon. In the figure the magneti field is onfined to a solenoid of radius r 0 and is direted in the z- diretion, out of the paper. The solenoid is surrounded by a barrier that

More information

On the Bit Error Probability of Noisy Channel Networks With Intermediate Node Encoding I. INTRODUCTION

On the Bit Error Probability of Noisy Channel Networks With Intermediate Node Encoding I. INTRODUCTION 5188 IEEE TRANSACTIONS ON INFORMATION THEORY, VOL. 54, NO. 11, NOVEMBER 2008 [8] A. P. Dempster, N. M. Laird, and D. B. Rubin, Maximum likelihood estimation from inomplete data via the EM algorithm, J.

More information