Relaxed Multiplication Using the Middle Product

Size: px
Start display at page:

Download "Relaxed Multiplication Using the Middle Product"

Transcription

1 Relaxed Multiplication Usin the Middle Product Joris van der Hoeven Département de Mathématiques (bât. 425) Université Paris-Sud Orsay Cedex France ABSTRACT In previous work, we have introduced the technique o relaxed power series computations. With this technique, it is possible to solve implicit equations almost as quickly as doin the operations which occur in the implicit equation. In this paper, we present a new relaxed multiplication alorithm or the resolution o linear equations. The alorithm has the same asymptotic time complexity as our previous alorithms, but we improve the space overhead in the divide and conquer model and the constant actor in the F.F.T. model. Cateories and Subject Descriptors G. Mathematics o Computin [G.1. Numerical Analysis]: G.1.0. General Multiple Precision Arithmetic General Terms Alorithms Keywords power series, relaxed multiplication, middle product 1. INTRODUCTION Let R be an eective rin and consider two power series = 0 + 1z + and = 0 + 1z + in R[[z]]. In this paper we will be concerned with the eicient computation o the irst n coeicients o the product h = = h 0+h 1z+. I the irst n coeicients o and are known beorehand, then we may use any ast multiplication or polynomials in order to achieve this oal, such as divide and conquer multiplication [6, 7], which has a time complexity K(n) = O(n lo 3/ lo 2 ), or F.F.T. multiplication [2, 9, 1, 11], which has a time complexity M(n) =O(n lo n lo lo n). For simplicity, time complexity stands or the required number o operations in R. Similarly, space complexity will stand or the number o elements o R which need to This paper is in the public domain. Permission is ranted to reproduce it on all media, either in its entirety or in any derived orm. ISSAC 03, Auust 3 6, 2003, Philadelphia, Pennsylvania, USA.. be stored. The required number o multiplications K (n) in the divide and conquer alorithm satisies the ollowin recurrence relations: K (1) = 1 K (n) = 2K ( n/2 )+K ( n/2 ) When perormin computin only the product truncated at order n, then the number o multiplications K needed by the divide and conquer alorithm becomes K (1) = 1 K (n) = K ( n/2 )+2K ( n/2 ) For certain computations, and most importantly the resolution o implicit equations, it is interestin to have so called relaxed alorithms which output the irst i coeicients o h as soon as the irst i coeicients o and are known or each i 6 n. This allows or instance the computation o the exponential =exp o a series with 0 = 0 usin the ormula =. (1) In [10, 11], we proved the ollowin two theorems: Theorem 1. There exists a relaxed multiplication alorithm o time complexity K(n) and space complexity O(lo n), andwhichusesk (n) multiplications. Theorem 2. There exists a relaxed multiplication alorithm o time complexity O(M(n)lon) and space complexity O(n). Althouh these theorems are satisactory rom a theoretical point o view, they can be improved in two directions: by removin the loarithmic space overhead in the divide and conquer model and by improvin the constant actor in the F.F.T. model. In this paper, we will present such an improved alorithm in the case o relaxed multiplication with a ixed series. More precisely, let and be power series, such that is known up to order n. Then our alorithm will compute the product h = up to order n and output () i as soon as 0,..., i are known, or all i<n. We will prove the ollowin: Theorem 3. There exists a relaxed multiplication alorithm with ixed series o time complexity O(K(n)), ospace complexity O(n), andwhichusesk (n) multiplications.

2 Fiure 1: Illustration o the middle product. Fiure 2: The subdivision used or the new relaxed multiplication alorithm. γ = 0( 1 + 2) h 0 = α β h 1 = γ + β This trick may be applied recursively in order to yield an alorithm which needs exactly the same number o multiplications K (n) as the divide and conquer alorithm or the computation o the product o two polynomials o de We also obtain a better constant actor in the asymptotic complexity in the F.F.T. model, but this result is harder to stateinaprecisetheorem. The alorithm is useul or the relaxed resolution o linear dierential or dierence equations. For instance, the exponential o a series can be computed usin 6 K (n) multiplications in R. Moreover, the new alorithm is very simple to implement, so it is likely to require less overhead than the alorithm rom theorem 1. Our alorithm is based on the recent middle product alorithm [3, 4], which is recalled in section 2. In section 3 we present our new alorithm and in section 5 we ive some applications. In our alorithms we will use the ollowin notations: the data type TPS(n) stands or truncated power series o order n, like = n 1z n 1. Given TPS(n) and 0 6 i<j6 n, we will denote i...j = i + + j 1z j i 1 TPS(j i). Given TPS(m) and TPS(n), we also denote 1 = + z m TPS(m + n). We will denote by Re(TPS(n)) the type, whose elements are reerences to elements o type TPS(n). I TPS(n) and06 i<j6 n, then we assume that i...j Re(TPS(n)). 2. THE MIDDLE PRODUCT Let = n 1z n 1 and = n 2z 2n 2 be two truncated power series at orders n resp. 2n 1. The middle product and is deined to be the truncated power series P h = = h h n 1z n 1 o order n, such that n 1 h i = j=0 jn 1+i j or all i {0,...,n 1}. In iure 1, h corresponds to the colored reion. The middle product o = 0+ 1z and = 0+ 1z+ 2z 2 can be computed usin only three multiplications, usin the ollowin trick: α = 1( 0 + 1) β = ( 1 0) 1 ree n 1. More precisely, the ollowin recursive alorithm comes rom [3, 4]. Alorithm Input: TPS(n) and TPS(2n 1) Output: their middle product TPS(n) i n =1then return 0 0 k := n/2,l:= n/2 α := k...n ( 0...2l 1 + l...3l 1 ) i n is even then β := ( l...n 0...k ) l...3l 1 else β := [ k 1 ( l...n 0...k )] l...3l 1 γ := 0...k ( l...l+2k 1 + 2l...2n 1 ) return (α β) 1 (γ + β 0...k ) In [4] it is also shown that, in the F.F.T. model, the middle product can still be computed in essentially the same time as the product o two polynomials. 3. RELAXED MULTIPLICATION WITH A FIXED SERIES Let and be power series, such that is known up to order n. In this section, we present an alorithm which computes the product h = up to order n. Foreachi<n, the alorithm outputs () i as soon as 0,..., i are known. The idea o our alorithm is similar to the idea behind ast relaxed multiplication in [10, 11] and based on a subdivision o the trianular area which corresponds to the computation o the truncated power series product. This subdivision is shown in iures 2 and 3, where each paralleloram corresponds to the computation o a middle product. More precisely, let l = n/2 and assume that 0,..., l 1 are known. Then the contribution o 0...l n+1 2l...n to may be computed usin the middle product alorithm rom the previous section. The relaxed truncated products 0...k 0...k and l...n 0...k may be computed recursively. In order to implement this idea, we will use an in-place alorithm, which adds the result o h = to a reerence ϕ to an element o TPS(n). Denote by ϕ init the initial value o ϕ. Then the in-place alorithm should be called successively or i =1,...,n. Ater the last call, we have ϕ = ϕ init + h. Takin ϕ init = 0, the alorithm computes h.

3 Alorithm relaxed-muladd(,,ϕ,i) Input:, TPS(n), ϕ Re(TPS(n)), i 6 n. Action: we have ϕ 0...i = ϕ init i 0...i on exit. i i = n =1then ϕ 0 += 0 0 and return k := n/2,l:= n/2 i i 6 k then relaxed-muladd( 0...k, 0...k,ϕ 0...k,i) i i = k +1then ϕ k...n += 0...l n+1 2l...n i i>lthen relaxed-muladd( l...n, 0...k,ϕ l...n,i l) The number o multiplications R (n) used by relaxedmuladd is determined by the relations R (1) = 1 ; R (n) = K ( n/2 )+2R ( n/2 ). By induction, it ollows that R (n) =K (n). The overall time complexity satisies R(n) 6 K( n/2 ) +2R( n/2 ) +O(n), so R(n) = O(K(n)). The alorithm bein in-place, its space complexity is clearly O(n). This proves theorem 3. In it is also interestin to use the above alorithm in the F.F.T. model. We then have the estimation R(n) 6 M( n/2 ) +2R( n/2 ) +O(n) or the asymptotic complexity R(n). I M(n) cn lo n lo lo n, this yields R(n) 1 2 M(n)lo 2 n. This should be compared with the complexity R(n) M(n)lo 2 n o the previously best alorithm and with the complexity L(n) 2M(n)lo 2 n o the standard ast relaxed multiplication alorithm. Notice that we rarely obtain the complexity M(n) cn lo n lo lo n in practice. In the rane where M(n) cn α,weobtain R(n) 1 2 α 2 M(n). 4. A WORKED EXAMPLE Let us consider the computation o =e z/(1 z) up till order 7 = n + 1 usin our alorithm and the ormula =, with 0 =1and =1+2z +3z 2 +. We start with ϕ =0 in relaxed-muladd and perorm the ollowin computations at successive calls or i =1,...,6: 1. We set ϕ 0 += 0 0 =1,sothat and 1 =1. ϕ := 1 2. We recursively apply relaxed-muladd to 0...3, 0...3, ϕ and i = 2. This requires the computation o Fiure 3: Illustration o an order 6 relaxed multiplication =(1+z) (1 + 2z +3z 2 )=3+5z. We thus increase ϕ = 3 + 5z, sothat and 2 = 3 2. ϕ := 1 + 3z +5z 2 3. The two nested recursive calls to relaxed-muladd now lead to the increase o ϕ 2 by 2 0 = 3 2,sothat and 3 = ϕ := 1 + 3z z2 4. We now both have i = k +1=4 andi>l=3. Sowe irst compute = z +17z2 and set ϕ = z +17z2. We next recursively apply relaxed-muladd to 3...6, 0...3, ϕ and i =1,which leads to an increase o ϕ 3 by 3 0 = Alltoether, we obtain ϕ := 1 + 3z z z z4 +17z 5 and 4 = We recursively apply relaxed-muladd to 3...6, 0...3, ϕ and i = 2. This leads to the increase ϕ = = z,sothat 8 12 ϕ := 1 + 3z z z z z5 and 5 = The two nested recursive calls lead to the increase ϕ 5 += 5 0 = 167,sothat 40 ϕ := 1 + 3z z z z z5 and 6 = The entire computation is represented schematically in iure 3.

4 5. APPLICATIONS First o all, let us consider the problem o relaxed division by a ixed power series. In other words, we are iven two power series and, where is known up to order n and 0 = 1. We want an alorithm or the computation o h = / up to order n, such that h i is computed as soon as 0,..., i are known or each i<n.nowwehave h = z(ϕh), where ϕ =( 1)/z R[[z]]. We may thus compute h in a relaxed way usin the alorithm rom the previous section. Computin h up till n terms will then necessitate 6 K (n) multiplications in R. Let us next consider a linear dierential equation L r (r) + + L 0 =0, (2) with L 0,...,L r R[[z]] and L r(0) = 1. Given initial conditions or 0,..., r 1, there exists a unique solution to this equation. We may compute this solution usin the relaxed alorithm rom the previous section, the above alorithm or relaxed division, and the ormula = L 1 r... r (L r (r) + + L 0). In order to compute n coeicients, we need to perorm (r + 1)K (n) multiplications in R and O(n) multiplications and divisions by inteers. I L r = 1, then we only need rk (n) multiplications. For instance, the exponential o a series with 0 =0 satisies the equation =0, so can be computed usin K (n) multiplications, usin the ormula (1). More enerally, consider the solution to (2) with the prescribed initial conditions, and let be another series with 0 = 0. Then the composition h = aain satisies a linear dierential equation. Indeed, we have the relations = h = h = h h 2 3. Postcomposin (2) with and usin these relations, we obtain a linear dierential equation or h. In act, our alorithm may be used to solve ar more eneral linear equations, such as linear partial dierential equations, or linear dierential-dierence equations. In the case o dierence equations, we notice that the relaxed multiplications in the alorithms rom [11] or relaxed riht composition with a ixed series all have one ixed arument. So we may indeed apply the alorithm rom section 3. We inally notice that our alorithm can even be used in a non-linear context. Indeed, ater computin n/2 coeicients o a truncated relaxed product, the computation o the remainin products reduces to the computation o two truncated relaxed products with one ixed arument. Actually, this corresponds to an implicit application o Newton s method. Fiure 4: Usin Mulders trick in combination with the middle product. 6. CONCLUSION AND OPEN QUESTIONS We have presented a new alorithm or relaxed multiplication. Althouh the new alorithm does not yield a siniicant improvement rom the asymptotic complexity point o view, we do expect it to be very useul or practical applications, such as the exponentiation o power series. First o all, the alorithm is easy to implement. Secondly, it only needs a linear amount o memory in the rane where divide and conquer multiplication is appropriate. In combination with F.F.T. multiplication, the alorithm yields a better constant actor in the asymptotic complexity. When implementin a library or power series computations, it is interestin to incorporate a mechanism to automatically detect relaxed and ixed multiplicands in a complex computation. This is possible by examinin the dependency raph. With such a mechanism, one may use the new alorithm whenever possible. Some interestin questions remain open in the divide and conquer model: can we apply Mulders trick [8, 5] or the computation o short products in our settin while maintainin the linear space complexity (see iure 4)? In that case, we miht improve the number o multiplications in theorem 3 to K(n). In a similar vein, does there exist a relaxed multiplication alorithm o time complexity 6 K(n) and linear space complexity? This would be so, i the middle product alorithm could be made relaxed in an in-place way (the alorithm is already essentially relaxed in the sense o [10, 11] in the divide and conquer model). As it stands now, with the above questions still unanswered, the oriinal relaxed multiplication alorithm rom theorem 1 remains best rom the time complexity point o view in the divide and conquer model. Moreover, Mulders trick can be applied in this settin, so as to yield a short relaxed multiplication alorithm o complexity K(n), or even better [5]. This has surprisin consequences or the complexities o several operations like short division and square roots: we obtain alorithms o time complexities K(n) and 1 K(n) when usin O(n lo n) space, while the best known 2 alorithms which use linear space have time complexities K(n) and 3 K(n). In order to obtain the complexity 4 o 1 K(n) in the case o square roots, one should use 2

5 a relaxed version o the ast squarin alorithm rom [4], which is based on middle products. We inally remark that this relaxed version o squarin usin middle products is also interestin in the F.F.T. model. In this case, the relaxed middle product corresponds to a ull relaxed product with one ixed arument. Such products can be computed in time 2R(n), so that we obtain a relaxed squarin alorithm o time complexity 2R(n). This is twice as ood as eneral relaxed multiplication. In the non-relaxed settin, squares can be computed in a time between 1 M(n) and 2 M(n), dependin on whether most 2 3 time is spent on inner multiplications or ast Fourier transorms respectively. 7. REFERENCES [1] Cantor, D., and Kaltoen, E. On ast multiplication o polynomials over arbitrary alebras. Acta Inormatica 28 (1991), [2] Cooley, J., and Tukey, J. An alorithm or the machine calculation o complex Fourier series. Math. Computat. 19 (1965), [3] Hanrot, G., Quercia, M., and immermann, P. Speedin up the division and square root o power series. Research Report 3973, INRIA, July Available rom [4] Hanrot, G., Quercia, M., and immermann, P. The middle product alorithm I. speedin up the division and square root o power series. Submitted, [5] Hanrot, G., and immermann, P. A lon note on mulders short product. Research Report 4654, INRIA, Dec Available rom [6] Karatsuba, A., and Oman, J. Multiplication o multidiit numbers on automata. Soviet Physics Doklady 7 (1963), [7] Knuth, D. The Art o Computer Prorammin, 3-rd ed., vol. 2: Seminumerical Alorithms. Addison-Wesley, [8] Mulders, T. On short multiplication and division. AAECC 11, 1 (2000), [9] Schönhae, A., and Strassen, V. Schnelle Multiplikation rosser ahlen. Computin 7 7 (1971), [10] van der Hoeven, J. Lazy multiplication o ormal power series. In Proc. ISSAC 97 (Maui, Hawaii, July 1997), W. W. Küchlin, Ed., pp [11] van der Hoeven, J. Relax, but don t be too lazy. JSC 34 (2002),

2 The Truncated Fourier Transform and Applications The TFT permits to speed up the multiplication of univariate polynomials with a constant factor bet

2 The Truncated Fourier Transform and Applications The TFT permits to speed up the multiplication of univariate polynomials with a constant factor bet The Truncated Fourier Transform and Applications Joris van der Hoeven D pt. de Math matiques (B t. 425) Universit Paris-Sud 91405 Orsay Cedex France Email: joris@texmacs.org January 9, 2004 In this paper,

More information

5. Network Analysis. 5.1 Introduction

5. Network Analysis. 5.1 Introduction 5. Network Analysis 5.1 Introduction With the continued rowth o this country as it enters the next century comes the inevitable increase in the number o vehicles tryin to use the already overtaxed transportation

More information

( ) x y z. 3 Functions 36. SECTION D Composite Functions

( ) x y z. 3 Functions 36. SECTION D Composite Functions 3 Functions 36 SECTION D Composite Functions By the end o this section you will be able to understand what is meant by a composite unction ind composition o unctions combine unctions by addition, subtraction,

More information

Categorical Background (Lecture 2)

Categorical Background (Lecture 2) Cateorical Backround (Lecture 2) February 2, 2011 In the last lecture, we stated the main theorem o simply-connected surery (at least or maniolds o dimension 4m), which hihlihts the importance o the sinature

More information

Newton s method and FFT trading

Newton s method and FFT trading Newton s method and FFT trading Joris van der Hoeven Dépt. de Mathématiques (Bât. 425) CNRS, Université Paris-Sud 91405 Orsay Cedex France Email: joris@texmacs.org December 9, 2008 Let C[[z]] be the ring

More information

INTERSECTION THEORY CLASSES 20 AND 21: BIVARIANT INTERSECTION THEORY

INTERSECTION THEORY CLASSES 20 AND 21: BIVARIANT INTERSECTION THEORY INTERSECTION THEORY CLASSES 20 AND 21: BIVARIANT INTERSECTION THEORY RAVI VAKIL CONTENTS 1. What we re doin this week 1 2. Precise statements 2 2.1. Basic operations and properties 4 3. Provin thins 6

More information

Functions. Introduction

Functions. Introduction Functions,00 P,000 00 0 y 970 97 980 98 990 99 000 00 00 Fiure Standard and Poor s Inde with dividends reinvested (credit "bull": modiication o work by Prayitno Hadinata; credit "raph": modiication o work

More information

are well-formed, provided Φ ( X, x)

are well-formed, provided Φ ( X, x) (October 27) 1 We deine an axiomatic system, called the First-Order Theory o Abstract Sets (FOTAS) Its syntax will be completely speciied Certain axioms will be iven; but these may be extended by additional

More information

THE GORENSTEIN DEFECT CATEGORY

THE GORENSTEIN DEFECT CATEGORY THE GORENSTEIN DEFECT CATEGORY PETTER ANDREAS BERGH, DAVID A. JORGENSEN & STEFFEN OPPERMANN Dedicated to Ranar-Ola Buchweitz on the occasion o his sixtieth birthday Abstract. We consider the homotopy cateory

More information

Matrix multiplication: a group-theoretic approach

Matrix multiplication: a group-theoretic approach CSG399: Gems of Theoretical Computer Science. Lec. 21-23. Mar. 27-Apr. 3, 2009. Instructor: Emanuele Viola Scribe: Ravi Sundaram Matrix multiplication: a roup-theoretic approach Given two n n matrices

More information

Categories and Quantum Informatics: Monoidal categories

Categories and Quantum Informatics: Monoidal categories Cateories and Quantum Inormatics: Monoidal cateories Chris Heunen Sprin 2018 A monoidal cateory is a cateory equipped with extra data, describin how objects and morphisms can be combined in parallel. This

More information

STRONGLY GORENSTEIN PROJECTIVE MODULES OVER UPPER TRIANGULAR MATRIX ARTIN ALGEBRAS. Shanghai , P. R. China. Shanghai , P. R.

STRONGLY GORENSTEIN PROJECTIVE MODULES OVER UPPER TRIANGULAR MATRIX ARTIN ALGEBRAS. Shanghai , P. R. China. Shanghai , P. R. STRONGLY GORENSTEIN PROJETIVE MODULES OVER UPPER TRINGULR MTRIX RTIN LGERS NN GO PU ZHNG Department o Mathematics Shanhai University Shanhai 2444 P R hina Department o Mathematics Shanhai Jiao Ton University

More information

Probabilistic Model of Error in Fixed-Point Arithmetic Gaussian Pyramid

Probabilistic Model of Error in Fixed-Point Arithmetic Gaussian Pyramid Probabilistic Model o Error in Fixed-Point Arithmetic Gaussian Pyramid Antoine Méler John A. Ruiz-Hernandez James L. Crowley INRIA Grenoble - Rhône-Alpes 655 avenue de l Europe 38 334 Saint Ismier Cedex

More information

RELATIVE GOURSAT CATEGORIES

RELATIVE GOURSAT CATEGORIES RELTIVE GOURST CTEGORIES JULI GOEDECKE ND TMR JNELIDZE bstract. We deine relative Goursat cateories and prove relative versions o the equivalent conditions deinin reular Goursat cateories. These include

More information

Work It, Wrap It, Fix It, Fold It

Work It, Wrap It, Fix It, Fold It 1 Work It, Wrap It, Fix It, Fold It NEIL SCULTHORPE University o Kansas, USA GRAHAM HUTTON University o Nottinham, UK Abstract The worker/wrapper transormation is a eneral-purpose technique or reactorin

More information

Nonlinear Integro-differential Equations by Differential Transform Method with Adomian Polynomials

Nonlinear Integro-differential Equations by Differential Transform Method with Adomian Polynomials Math Sci Lett No - Mathematical Science Letters An International Journal http://ddoior//msl/ Nonlinear Intero-dierential Equations b Dierential Transorm Method with Adomian Polnomials S H Behir General

More information

Central Limit Theorems and Proofs

Central Limit Theorems and Proofs Math/Stat 394, Winter 0 F.W. Scholz Central Limit Theorems and Proos The ollowin ives a sel-contained treatment o the central limit theorem (CLT). It is based on Lindeber s (9) method. To state the CLT

More information

CLASSIFICATION OF GROUP EXTENSIONS AND H 2

CLASSIFICATION OF GROUP EXTENSIONS AND H 2 CLASSIFICATION OF GROUP EXTENSIONS AND H 2 RAPHAEL HO Abstract. In this paper we will outline the oundations o homoloical alebra, startin with the theory o chain complexes which arose in alebraic topoloy.

More information

9. v > 7.3 mi/h x < 2.5 or x > x between 1350 and 5650 hot dogs

9. v > 7.3 mi/h x < 2.5 or x > x between 1350 and 5650 hot dogs .5 Etra Practice. no solution. (, 0) and ( 9, ). (, ) and (, ). (, 0) and (, 0) 5. no solution. ( + 5 5 + 5, ) and ( 5 5 5, ) 7. (0, ) and (, 0). (, ) and (, 0) 9. (, 0) 0. no solution. (, 5). a. Sample

More information

2.2 Differentiation and Integration of Vector-Valued Functions

2.2 Differentiation and Integration of Vector-Valued Functions .. DIFFERENTIATION AND INTEGRATION OF VECTOR-VALUED FUNCTIONS133. Differentiation and Interation of Vector-Valued Functions Simply put, we differentiate and interate vector functions by differentiatin

More information

CPSC 518 Introduction to Computer Algebra Schönhage and Strassen s Algorithm for Integer Multiplication

CPSC 518 Introduction to Computer Algebra Schönhage and Strassen s Algorithm for Integer Multiplication CPSC 518 Introduction to Computer Algebra Schönhage and Strassen s Algorithm for Integer Multiplication March, 2006 1 Introduction We have now seen that the Fast Fourier Transform can be applied to perform

More information

Asynchronous Parallel Programming in Pei. E. Violard. Boulevard S. Brant, F Illkirch.

Asynchronous Parallel Programming in Pei. E. Violard. Boulevard S. Brant, F Illkirch. Asynchronous Parallel Prorammin in Pei E. Violard ICPS, Universite Louis Pasteur, Strasbour Boulevard S. Brant, F-67400 Illkirch e-mail: violard@icps.u-strasb.r Abstract. This paper presents a transormational

More information

Category Theory 2. Eugenia Cheng Department of Mathematics, University of Sheffield Draft: 31st October 2007

Category Theory 2. Eugenia Cheng Department of Mathematics, University of Sheffield   Draft: 31st October 2007 Cateory Theory 2 Euenia Chen Department o Mathematics, niversity o Sheield E-mail: echen@sheieldacuk Drat: 31st October 2007 Contents 2 Some basic universal properties 1 21 Isomorphisms 2 22 Terminal objects

More information

Algebra 2CP Fall Final Exam

Algebra 2CP Fall Final Exam Fall Final Exam Review (Revised 0) Alebra CP Alebra CP Fall Final Exam Can You Solve an equation with one variable, includin absolute value equations (. and.) Solve and raph inequalities, compound inequalities,

More information

The intrinsic structure of FFT and a synopsis of SFT

The intrinsic structure of FFT and a synopsis of SFT Global Journal o Pure and Applied Mathematics. ISSN 0973-1768 Volume 12, Number 2 (2016), pp. 1671-1676 Research India Publications http://www.ripublication.com/gjpam.htm The intrinsic structure o FFT

More information

CPSC 518 Introduction to Computer Algebra Asymptotically Fast Integer Multiplication

CPSC 518 Introduction to Computer Algebra Asymptotically Fast Integer Multiplication CPSC 518 Introduction to Computer Algebra Asymptotically Fast Integer Multiplication 1 Introduction We have now seen that the Fast Fourier Transform can be applied to perform polynomial multiplication

More information

On-Line Trajectory Optimization Including Moving Threats and Targets

On-Line Trajectory Optimization Including Moving Threats and Targets AIAA Guidance, Naviation, and Control Conerence and Ehibit 6-9 Auust 00, Providence, Rhode Island AIAA 00-59 On-Line rajector Optimization Includin Movin hreats and arets hannon wi *, Anthon Calise and

More information

arxiv: v2 [math.co] 29 Mar 2017

arxiv: v2 [math.co] 29 Mar 2017 COMBINATORIAL IDENTITIES FOR GENERALIZED STIRLING NUMBERS EXPANDING -FACTORIAL FUNCTIONS AND THE -HARMONIC NUMBERS MAXIE D. SCHMIDT arxiv:6.04708v2 [math.co 29 Mar 207 SCHOOL OF MATHEMATICS GEORGIA INSTITUTE

More information

On Nonpermutational Transformation Semigroups with an Application to Syntactic Complexity

On Nonpermutational Transformation Semigroups with an Application to Syntactic Complexity Acta Cybernetica 22 (2016) 687 701. On Nonpermutational Transormation Semiroups with an Application to Syntactic Complexity Szabolcs Iván and Judit Nay-Györy Abstract We ive an upper bound o n((n 1)! (n

More information

Western University. Imants Barušs King's University College, Robert Woodrow

Western University. Imants Barušs King's University College, Robert Woodrow Western University Scholarship@Western Psycholoy Psycholoy 2013 A reduction theorem or the Kripke-Joyal semantics: Forcin over an arbitrary cateory can always be replaced by orcin over a complete Heytin

More information

FFTs in Graphics and Vision. Rotational and Reflective Symmetry Detection

FFTs in Graphics and Vision. Rotational and Reflective Symmetry Detection FFTs in Grahics and Vision Rotational and Relectie Symmetry Detection Outline Reresentation Theory Symmetry Detection Rotational Symmetry Relectie Symmetry Reresentation Theory Recall: A rou is a set o

More information

Numerical Methods - Lecture 2. Numerical Methods. Lecture 2. Analysis of errors in numerical methods

Numerical Methods - Lecture 2. Numerical Methods. Lecture 2. Analysis of errors in numerical methods Numerical Methods - Lecture 1 Numerical Methods Lecture. Analysis o errors in numerical methods Numerical Methods - Lecture Why represent numbers in loating point ormat? Eample 1. How a number 56.78 can

More information

Analysis of the regularity, pointwise completeness and pointwise generacy of descriptor linear electrical circuits

Analysis of the regularity, pointwise completeness and pointwise generacy of descriptor linear electrical circuits Computer Applications in Electrical Engineering Vol. 4 Analysis o the regularity pointwise completeness pointwise generacy o descriptor linear electrical circuits Tadeusz Kaczorek Białystok University

More information

Recursive Credibility: Using Credibility to Blend Reserve Assumptions

Recursive Credibility: Using Credibility to Blend Reserve Assumptions Recursive Credibility: Usin Credibility to Blend Reserve Assumptions by Marcus M. Yamashiro ABSTRACT When estimatin loss reserves, actuaries usually ive varyin weihts to multiple indications to arrive

More information

2 Section 2 However, in order to apply the above idea, we will need to allow non standard intervals ('; ) in the proof. More precisely, ' and may gene

2 Section 2 However, in order to apply the above idea, we will need to allow non standard intervals ('; ) in the proof. More precisely, ' and may gene Introduction 1 A dierential intermediate value theorem by Joris van der Hoeven D pt. de Math matiques (B t. 425) Universit Paris-Sud 91405 Orsay Cedex France June 2000 Abstract Let T be the eld of grid-based

More information

A Peter May Picture Book, Part 1

A Peter May Picture Book, Part 1 A Peter May Picture Book, Part 1 Steve Balady Auust 17, 2007 This is the beinnin o a larer project, a notebook o sorts intended to clariy, elucidate, and/or illustrate the principal ideas in A Concise

More information

Supplementary material for Continuous-action planning for discounted infinite-horizon nonlinear optimal control with Lipschitz values

Supplementary material for Continuous-action planning for discounted infinite-horizon nonlinear optimal control with Lipschitz values Supplementary material or Continuous-action planning or discounted ininite-horizon nonlinear optimal control with Lipschitz values List o main notations x, X, u, U state, state space, action, action space,

More information

SIO 211B, Rudnick. We start with a definition of the Fourier transform! ĝ f of a time series! ( )

SIO 211B, Rudnick. We start with a definition of the Fourier transform! ĝ f of a time series! ( ) SIO B, Rudnick! XVIII.Wavelets The goal o a wavelet transorm is a description o a time series that is both requency and time selective. The wavelet transorm can be contrasted with the well-known and very

More information

Propagation Modes in Multimode Graded-Index Fibers

Propagation Modes in Multimode Graded-Index Fibers International Journal o Science and Research (IJSR) ISSN (Online): 319-7064 Index Copernicus Value (013): 6.14 Impact Factor (015): 6.391 Propaation Modes in Multie Graded-Index Fibers Zaman Hameed Kareem

More information

Transformations of Quadratic Functions

Transformations of Quadratic Functions .1 Transormations o Quadratic Functions Essential Question How do the constants a, h, and k aect the raph o the quadratic unction () = a( h) + k? The parent unction o the quadratic amil is. A transormation

More information

2. ETA EVALUATIONS USING WEBER FUNCTIONS. Introduction

2. ETA EVALUATIONS USING WEBER FUNCTIONS. Introduction . ETA EVALUATIONS USING WEBER FUNCTIONS Introduction So ar we have seen some o the methods or providing eta evaluations that appear in the literature and we have seen some o the interesting properties

More information

A General Class of Estimators of Population Median Using Two Auxiliary Variables in Double Sampling

A General Class of Estimators of Population Median Using Two Auxiliary Variables in Double Sampling ohammad Khoshnevisan School o Accountin and inance riith University Australia Housila P. Sinh School o Studies in Statistics ikram University Ujjain - 56. P. India Sarjinder Sinh Departament o athematics

More information

Higher Order Sensitivities for Solving Nonlinear Two-Point Boundary-Value Problems

Higher Order Sensitivities for Solving Nonlinear Two-Point Boundary-Value Problems Hiher Order Sensitivities or Solvin Nonlinear wo-point Boundary-Value Problems D. odd Griith exas A&M University, Collee Station, exas 77843-34 James D. urner Amdyn Systems, White GA 384 S. R. Vadali and

More information

Roberto s Notes on Differential Calculus Chapter 8: Graphical analysis Section 1. Extreme points

Roberto s Notes on Differential Calculus Chapter 8: Graphical analysis Section 1. Extreme points Roberto s Notes on Dierential Calculus Chapter 8: Graphical analysis Section 1 Extreme points What you need to know already: How to solve basic algebraic and trigonometric equations. All basic techniques

More information

UMS 7/2/14. Nawaz John Sultani. July 12, Abstract

UMS 7/2/14. Nawaz John Sultani. July 12, Abstract UMS 7/2/14 Nawaz John Sultani July 12, 2014 Notes or July, 2 2014 UMS lecture Abstract 1 Quick Review o Universals Deinition 1.1. I S : D C is a unctor and c an object o C, a universal arrow rom c to S

More information

WEAK AND STRONG CONVERGENCE OF AN ITERATIVE METHOD FOR NONEXPANSIVE MAPPINGS IN HILBERT SPACES

WEAK AND STRONG CONVERGENCE OF AN ITERATIVE METHOD FOR NONEXPANSIVE MAPPINGS IN HILBERT SPACES Applicable Analysis and Discrete Mathematics available online at http://pemath.et.b.ac.yu Appl. Anal. Discrete Math. 2 (2008), 197 204. doi:10.2298/aadm0802197m WEAK AND STRONG CONVERGENCE OF AN ITERATIVE

More information

Lecture : Feedback Linearization

Lecture : Feedback Linearization ecture : Feedbac inearization Niola Misovic, dipl ing and Pro Zoran Vuic June 29 Summary: This document ollows the lectures on eedbac linearization tought at the University o Zagreb, Faculty o Electrical

More information

INTERSECTION THEORY CLASS 17

INTERSECTION THEORY CLASS 17 INTERSECTION THEORY CLASS 17 RAVI VAKIL CONTENTS 1. Were we are 1 1.1. Reined Gysin omomorpisms i! 2 1.2. Excess intersection ormula 4 2. Local complete intersection morpisms 6 Were we re oin, by popular

More information

The tangent line and the velocity problems. The derivative at a point and rates of change. , such as the graph shown below:

The tangent line and the velocity problems. The derivative at a point and rates of change. , such as the graph shown below: Capter 3: Derivatives In tis capter we will cover: 3 Te tanent line an te velocity problems Te erivative at a point an rates o cane 3 Te erivative as a unction Dierentiability 3 Derivatives o constant,

More information

Arbitrary-Precision Division

Arbitrary-Precision Division Arbitrary-Precision Division Rod Howell Kansas State University September 8, 000 This paper presents an algorithm for arbitrary-precision division and shows its worst-case time compleity to be related

More information

Triangulated categories and localization

Triangulated categories and localization Trianulated cateories and localization Karin Marie Jacobsen Master o Science in Physics and Mathematics Submission date: Januar 212 Supervisor: Aslak Bakke Buan, MATH Norweian University o Science and

More information

Fast composition of numeric power series

Fast composition of numeric power series Fast composition of numeric power series Joris van der Hoeven CNRS, Département de Mathématiques Bâtiment 425 Université Paris-Sud 91405 Orsay Cedex France Email: joris@texmacs.org Web: http://www.math.u-psud.fr/~vdhoeven

More information

Lecture 8 Optimization

Lecture 8 Optimization 4/9/015 Lecture 8 Optimization EE 4386/5301 Computational Methods in EE Spring 015 Optimization 1 Outline Introduction 1D Optimization Parabolic interpolation Golden section search Newton s method Multidimensional

More information

Finding all Bessel type solutions for Linear Differential Equations with Rational Function Coefficients

Finding all Bessel type solutions for Linear Differential Equations with Rational Function Coefficients Finding all essel type solutions or Linear Dierential Equations with Rational Function Coeicients Mark van Hoeij & Quan Yuan Florida State University, Tallahassee, FL 06-07, USA hoeij@math.su.edu & qyuan@math.su.edu

More information

Asymptotics of integrals

Asymptotics of integrals October 3, 4 Asymptotics o integrals Paul Garrett garrett@math.umn.edu http://www.math.umn.edu/ garrett/ [This document is http://www.math.umn.edu/ garrett/m/complex/notes 4-5/4c basic asymptotics.pd].

More information

Estimation of Sample Reactivity Worth with Differential Operator Sampling Method

Estimation of Sample Reactivity Worth with Differential Operator Sampling Method Progress in NUCLEAR SCIENCE and TECHNOLOGY, Vol. 2, pp.842-850 (2011) ARTICLE Estimation o Sample Reactivity Worth with Dierential Operator Sampling Method Yasunobu NAGAYA and Takamasa MORI Japan Atomic

More information

ASSOCIATIVITY DATA IN AN (, 1)-CATEGORY

ASSOCIATIVITY DATA IN AN (, 1)-CATEGORY ASSOCIATIVITY DATA IN AN (, 1)-CATEGORY EMILY RIEHL A popular sloan is tat (, 1)-cateories (also called quasi-cateories or - cateories) sit somewere between cateories and spaces, combinin some o te eatures

More information

Numerical Investigation of Downward Continuation Techniques for

Numerical Investigation of Downward Continuation Techniques for Numerical Investiation o Downward Continuation Techniques or Gravity Anomalies J. HUANG, M. G. SIDEIS, P. VANÍČEK 3, I. N. TZIAVOS 4 Geodetic Survey Division, Natural esources Canada, 65 Booth Street,

More information

2 Olo J. Staans where R is a iven positive semidenite matrix. At the end o this introduction we shall return to this second possibility, and show that

2 Olo J. Staans where R is a iven positive semidenite matrix. At the end o this introduction we shall return to this second possibility, and show that QUADRATIC OPTIMAL CONTROL THROUGH COPRIME AND SPECTRAL FACTORIZATIONS OLOF J. STAFFANS ABO AKADEMI UNIVERSITY DEPARTMENT OF MATHEMATICS FIN-25 ABO, FINLAND OLOF.STAFFANS@ABO.FI Abstract. We consider the

More information

The excess intersection formula for Grothendieck-Witt groups

The excess intersection formula for Grothendieck-Witt groups manuscripta mathematica manuscript No. (will be inserted by the editor) Jean Fasel The excess intersection ormula or Grothendieck-Witt roups Received: date / Revised version: date Abstract. We prove the

More information

Definition: Let f(x) be a function of one variable with continuous derivatives of all orders at a the point x 0, then the series.

Definition: Let f(x) be a function of one variable with continuous derivatives of all orders at a the point x 0, then the series. 2.4 Local properties o unctions o several variables In this section we will learn how to address three kinds o problems which are o great importance in the ield o applied mathematics: how to obtain the

More information

Numerical Solution of Ordinary Differential Equations in Fluctuationlessness Theorem Perspective

Numerical Solution of Ordinary Differential Equations in Fluctuationlessness Theorem Perspective Numerical Solution o Ordinary Dierential Equations in Fluctuationlessness Theorem Perspective NEJLA ALTAY Bahçeşehir University Faculty o Arts and Sciences Beşiktaş, İstanbul TÜRKİYE TURKEY METİN DEMİRALP

More information

A differential intermediate value theorem

A differential intermediate value theorem A differential intermediate value theorem by Joris van der Hoeven Dépt. de Mathématiques (Bât. 425) Université Paris-Sud 91405 Orsay Cedex France June 2000 Abstract Let T be the field of grid-based transseries

More information

In many diverse fields physical data is collected or analysed as Fourier components.

In many diverse fields physical data is collected or analysed as Fourier components. 1. Fourier Methods In many diverse ields physical data is collected or analysed as Fourier components. In this section we briely discuss the mathematics o Fourier series and Fourier transorms. 1. Fourier

More information

A Simple Explanation of the Sobolev Gradient Method

A Simple Explanation of the Sobolev Gradient Method A Simple Explanation o the Sobolev Gradient Method R. J. Renka July 3, 2006 Abstract We have observed that the term Sobolev gradient is used more oten than it is understood. Also, the term is oten used

More information

Slowly Changing Function Oriented Growth Analysis of Differential Monomials and Differential Polynomials

Slowly Changing Function Oriented Growth Analysis of Differential Monomials and Differential Polynomials Slowly Chanin Function Oriented Growth Analysis o Dierential Monomials Dierential Polynomials SANJIB KUMAR DATTA Department o Mathematics University o kalyani Kalyani Dist-NadiaPIN- 7235 West Benal India

More information

Problem Set. Problems on Unordered Summation. Math 5323, Fall Februray 15, 2001 ANSWERS

Problem Set. Problems on Unordered Summation. Math 5323, Fall Februray 15, 2001 ANSWERS Problem Set Problems on Unordered Summation Math 5323, Fall 2001 Februray 15, 2001 ANSWERS i 1 Unordered Sums o Real Terms In calculus and real analysis, one deines the convergence o an ininite series

More information

Products and Convolutions of Gaussian Probability Density Functions

Products and Convolutions of Gaussian Probability Density Functions Tina Memo No. 003-003 Internal Report Products and Convolutions o Gaussian Probability Density Functions P.A. Bromiley Last updated / 9 / 03 Imaging Science and Biomedical Engineering Division, Medical

More information

Divide and Conquer: Polynomial Multiplication Version of October 1 / 7, 24201

Divide and Conquer: Polynomial Multiplication Version of October 1 / 7, 24201 Divide and Conquer: Polynomial Multiplication Version of October 7, 2014 Divide and Conquer: Polynomial Multiplication Version of October 1 / 7, 24201 Outline Outline: Introduction The polynomial multiplication

More information

Mixture Behavior, Stability, and Azeotropy

Mixture Behavior, Stability, and Azeotropy 7 Mixture Behavior, Stability, and Azeotropy Copyrihted Material CRC Press/Taylor & Francis 6 BASIC RELATIONS As compounds mix to some deree in the liquid phase, the Gibbs enery o the system decreases

More information

Fast reversion of formal power series

Fast reversion of formal power series Fast reversion of formal power series Fredrik Johansson LFANT, INRIA Bordeaux RAIM, 2016-06-29, Banyuls-sur-mer 1 / 30 Reversion of power series F = exp(x) 1 = x + x 2 2! + x 3 3! + x 4 G = log(1 + x)

More information

Strong Lyapunov Functions for Systems Satisfying the Conditions of La Salle

Strong Lyapunov Functions for Systems Satisfying the Conditions of La Salle 06 IEEE TRANSACTIONS ON AUTOMATIC CONTROL, VOL. 49, NO. 6, JUNE 004 Strong Lyapunov Functions or Systems Satisying the Conditions o La Salle Frédéric Mazenc and Dragan Ne sić Abstract We present a construction

More information

Outline. Approximate sampling theorem (AST) recall Lecture 1. P. L. Butzer, G. Schmeisser, R. L. Stens

Outline. Approximate sampling theorem (AST) recall Lecture 1. P. L. Butzer, G. Schmeisser, R. L. Stens Outline Basic relations valid or the Bernstein space B and their extensions to unctions rom larger spaces in terms o their distances rom B Part 3: Distance unctional approach o Part applied to undamental

More information

Multiplying huge integers using Fourier transforms

Multiplying huge integers using Fourier transforms Fourier transforms October 25, 2007 820348901038490238478324 1739423249728934932894??? integers occurs in many fields of Computational Science: Cryptography Number theory... Traditional approaches to

More information

Solving Monotone Polynomial Equations

Solving Monotone Polynomial Equations Solving Monotone Polynomial Equations Javier Esparza, Stean Kieer, and Michael Luttenberger Institut ür Inormatik, Technische Universität München, 85748 Garching, Germany {esparza,kieer,luttenbe}@in.tum.de

More information

RESOLUTION MSC.362(92) (Adopted on 14 June 2013) REVISED RECOMMENDATION ON A STANDARD METHOD FOR EVALUATING CROSS-FLOODING ARRANGEMENTS

RESOLUTION MSC.362(92) (Adopted on 14 June 2013) REVISED RECOMMENDATION ON A STANDARD METHOD FOR EVALUATING CROSS-FLOODING ARRANGEMENTS (Adopted on 4 June 203) (Adopted on 4 June 203) ANNEX 8 (Adopted on 4 June 203) MSC 92/26/Add. Annex 8, page THE MARITIME SAFETY COMMITTEE, RECALLING Article 28(b) o the Convention on the International

More information

Differentiation. The main problem of differential calculus deals with finding the slope of the tangent line at a point on a curve.

Differentiation. The main problem of differential calculus deals with finding the slope of the tangent line at a point on a curve. Dierentiation The main problem o dierential calculus deals with inding the slope o the tangent line at a point on a curve. deinition() : The slope o a curve at a point p is the slope, i it eists, o the

More information

Colloids: Dilute Dispersions and Charged Interfaces

Colloids: Dilute Dispersions and Charged Interfaces 17-9-15 Colloids: Dilute Dispersions and Chared Interaces Andreas B. Dahlin ecture 1/6 Jones: 4.1-4.3, Hamley: 3.1-3.4 adahlin@chalmers.se http://www.adahlin.com/ 17-9-15 Sot Matter Physics 1 Continuous

More information

A Consistent Generation of Pipeline Parallelism and Distribution of Operations and Data among Processors

A Consistent Generation of Pipeline Parallelism and Distribution of Operations and Data among Processors ISSN 0361-7688 Programming and Computer Sotware 006 Vol. 3 No. 3 pp. 166176. Pleiades Publishing Inc. 006. Original Russian Text E.V. Adutskevich N.A. Likhoded 006 published in Programmirovanie 006 Vol.

More information

SPLITTING OF SHORT EXACT SEQUENCES FOR MODULES. 1. Introduction Let R be a commutative ring. A sequence of R-modules and R-linear maps.

SPLITTING OF SHORT EXACT SEQUENCES FOR MODULES. 1. Introduction Let R be a commutative ring. A sequence of R-modules and R-linear maps. SPLITTING OF SHORT EXACT SEQUENCES FOR MODULES KEITH CONRAD 1. Introduction Let R be a commutative rin. A sequence o R-modules and R-linear maps N M P is called exact at M i im = ker. For example, to say

More information

Physics 5153 Classical Mechanics. Solution by Quadrature-1

Physics 5153 Classical Mechanics. Solution by Quadrature-1 October 14, 003 11:47:49 1 Introduction Physics 5153 Classical Mechanics Solution by Quadrature In the previous lectures, we have reduced the number o eective degrees o reedom that are needed to solve

More information

General Solution of the Stress Potential Function in Lekhnitskii s Elastic Theory for Anisotropic and Piezoelectric Materials

General Solution of the Stress Potential Function in Lekhnitskii s Elastic Theory for Anisotropic and Piezoelectric Materials dv. Studies Teor. Pys. Vol. 007 no. 8 7 - General Solution o te Stress Potential Function in Lenitsii s Elastic Teory or nisotropic and Pieoelectric Materials Zuo-en Ou StateKey Laboratory o Explosion

More information

Proof nets for additive linear logic with units

Proof nets for additive linear logic with units Proo nets or additive linear loic with units Willem Heijltjes LFCS, School o Inormatics, University o Edinburh bstract dditive linear loic, the rament o linear loic concernin linear implication between

More information

1.5 Function Arithmetic

1.5 Function Arithmetic 76 Relations and Functions.5 Function Aritmetic In te previous section we used te newly deined unction notation to make sense o epressions suc as ) + 2 and 2) or a iven unction. It would seem natural,

More information

corresponds to the total transaction costs given by ka = 1 ε

corresponds to the total transaction costs given by ka = 1 ε ON THE ASYMPTOTIC BEHAVIOR OF A BOLTZMANN-TYPE PRICE FORMATION MODEL MARTIN BURGER, LUIS CAFFARELLI, PETER A. MARKOWICH, AND MARIE-THERESE WOLFRAM Abstract. In this paper we study the asymptotic behavior

More information

arxiv:quant-ph/ v2 2 Mar 2004

arxiv:quant-ph/ v2 2 Mar 2004 The oic o Entanlement Bob Coecke Oxord University Computin aboratory, Wolson Buildin, Parks Road, OX QD Oxord, UK. coecke@comlab.ox.ac.uk arxiv:quant-ph/000v Mar 00 Abstract. We expose the inormation low

More information

Fast Polynomial Multiplication

Fast Polynomial Multiplication Fast Polynomial Multiplication Marc Moreno Maza CS 9652, October 4, 2017 Plan Primitive roots of unity The discrete Fourier transform Convolution of polynomials The fast Fourier transform Fast convolution

More information

Integer multiplication and the truncated product problem

Integer multiplication and the truncated product problem Integer multiplication and the truncated product problem David Harvey Arithmetic Geometry, Number Theory, and Computation MIT, August 2018 University of New South Wales Political update from Australia

More information

COMPOSITION OF BINARY QUADRATIC FORMS: FROM GAUSS TO BHARGAVA. 1. Introduction

COMPOSITION OF BINARY QUADRATIC FORMS: FROM GAUSS TO BHARGAVA. 1. Introduction COMPOSITION OF BINARY QUADRATIC FORMS: FROM GAUSS TO BHARGAVA FRANÇOIS SÉGUIN Abstract. In is 004 article [], Barava introuces a new way to unerstan te composition law o interal binary quaratic orms trou

More information

On a Closed Formula for the Derivatives of e f(x) and Related Financial Applications

On a Closed Formula for the Derivatives of e f(x) and Related Financial Applications International Mathematical Forum, 4, 9, no. 9, 41-47 On a Closed Formula or the Derivatives o e x) and Related Financial Applications Konstantinos Draais 1 UCD CASL, University College Dublin, Ireland

More information

On High-Rate Cryptographic Compression Functions

On High-Rate Cryptographic Compression Functions On High-Rate Cryptographic Compression Functions Richard Ostertág and Martin Stanek Department o Computer Science Faculty o Mathematics, Physics and Inormatics Comenius University Mlynská dolina, 842 48

More information

Solving Continuous Linear Least-Squares Problems by Iterated Projection

Solving Continuous Linear Least-Squares Problems by Iterated Projection Solving Continuous Linear Least-Squares Problems by Iterated Projection by Ral Juengling Department o Computer Science, Portland State University PO Box 75 Portland, OR 977 USA Email: juenglin@cs.pdx.edu

More information

Object Tracking using Ane Structure for Point. Correspondences. Subhashis Banerjee. Department of Computer Science and Engineering

Object Tracking using Ane Structure for Point. Correspondences. Subhashis Banerjee. Department of Computer Science and Engineering Object Trackin usin Ane Structure or Point Correspondences Gurmeet Sinh Manku Pankaj Jain y Amit Aarwal Lalit Kumar Subhashis Banerjee Department o Computer Science and Enineerin Indian Institute o Technoloy

More information

Fluctuationlessness Theorem and its Application to Boundary Value Problems of ODEs

Fluctuationlessness Theorem and its Application to Boundary Value Problems of ODEs Fluctuationlessness Theorem and its Application to Boundary Value Problems o ODEs NEJLA ALTAY İstanbul Technical University Inormatics Institute Maslak, 34469, İstanbul TÜRKİYE TURKEY) nejla@be.itu.edu.tr

More information

Model to predict the mechanical behaviour of oriented rigid PVC

Model to predict the mechanical behaviour of oriented rigid PVC Louhborouh University Institutional Repository Model to predict the mechanical behaviour o oriented riid PVC This item was submitted to Louhborouh University's Institutional Repository by the/an author.

More information

XIUMEI LI AND MIN SHA

XIUMEI LI AND MIN SHA GAUSS FACTORIALS OF POLYNOMIALS OVER FINITE FIELDS arxiv:1704.0497v [math.nt] 18 Apr 017 XIUMEI LI AND MIN SHA Abstract. In this paper we initiate a study on Gauss factorials of polynomials over finite

More information

arxiv: v7 [cs.db] 24 Jul 2015

arxiv: v7 [cs.db] 24 Jul 2015 Relational oundations or unctorial Data Miration David I. Spivak, Ryan Wisnesky Massachusetts Institute o Technoloy {dspivak, wisnesky}@math.mit.edu arxiv:1212.5303v7 [cs.db] 24 Jul 2015 July 28, 2015

More information

Implementing Fast Carryless Multiplication

Implementing Fast Carryless Multiplication Implementing Fast Carryless Multiplication Joris van der Hoeven, Robin Larrieu and Grégoire Lecerf CNRS & École polytechnique MACIS 2017 Nov. 15, Vienna, Austria van der Hoeven, Larrieu, Lecerf Implementing

More information

Integer Multiplication

Integer Multiplication Integer Multiplication in almost linear time Martin Fürer CSE 588 Department of Computer Science and Engineering Pennsylvania State University 1/24/08 Karatsuba algebraic Split each of the two factors

More information

Least-Squares Spectral Analysis Theory Summary

Least-Squares Spectral Analysis Theory Summary Least-Squares Spectral Analysis Theory Summary Reerence: Mtamakaya, J. D. (2012). Assessment o Atmospheric Pressure Loading on the International GNSS REPRO1 Solutions Periodic Signatures. Ph.D. dissertation,

More information