Numerical Exploration of the Compacted Associated Stirling Numbers

Size: px
Start display at page:

Download "Numerical Exploration of the Compacted Associated Stirling Numbers"

Transcription

1 Numerical Exploration of the Compacted Associated Stirling Numbers Khaled Ben Letaïef To cite this version: Khaled Ben Letaïef. Numerical Exploration of the Compacted Associated Stirling Numbers <hal > HAL Id: hal Submitted on 29 Aug 2017 HAL is a multi-disciplinary open access archive for the deposit and dissemination of scientific research documents, whether they are published or not. The documents may come from teaching and research institutions in France or abroad, or from public or private research centers. L archive ouverte pluridisciplinaire HAL, est destinée au dépôt et à la diffusion de documents scientifiques de niveau recherche, publiés ou non, émanant des établissements d enseignement et de recherche français ou étrangers, des laboratoires publics ou privés.

2 Notes on Number Theory and Discrete Mathematics ISSN Vol. XX, XXXX, No. X, XX XX Numerical Exploration of the Compacted Associated Stirling Numbers Khaled Ben Letaïef 1 1 Aeronautics and aerospace high graduate engineer 16 Bd du Maréchal de Lattre, apt. 095, Chenove, France letaiev@gmail.com Abstract : In this work, we make some Python simulations of the modular properties of associated Stirling numbers in order to illustrate our previous results and to make new conjectures. Keywords : Number Theory, Associated Stirling Numbers, Modular Rotations, Numerical Simulations. AMS Classification : 11B73, 05A18. Table des matières 1 The computer program in Python 2 2 Variation of n at r fixed 4 3 Variation of r at n fixed 7 4 Conclusion 14 Introduction The associated Stirling numbers of first and second kind at order r, respectively noted {d r (n, k)} n,k N and {s r (n, k)} n,k N, verify the following relations [4] : 1

3 d r (n, k) = (n 1)d r (n 1, k) + (n 1) r 1 d r (n r, k 1) ( ) n 1 s r (n, k) = k.s r (n 1, k) + s r (n r, k 1) r 1 In [1], we defined σ r and π r as the arithmetical triangles, respectively {D r (m, k)} m,k N and {S r (m, k)} m,k N, obtained from the application (r 1) times of the following linear geometrical transformation R (defined in the space of numerical sequences s with two integer variables n et k) to the associated Stirling numbers of first and second kind at order r : Then, by definition : R : s(n, k) R(s(n, k)) = s(n + k 1, k) with m = n (r 1)(k 1). D r (m, k) = R r 1 (d r )(n (r 1)(k 1), k) = d r (n, k) S r (m, k) = R r 1 (s r )(n (r 1)(k 1), k) = s r (n, k) This elastic transformation R was assimilated to a rotation, compacting the associated Stirling numbers from their usual dilated staircase structures into arithmetical triangles t verifying the general relation : t(i, j) = g(i, j)t(i 1, j 1) + h(i, j)t(i 1, j) Then, in [2] [3], modular properties in geometrical form have been obtained for σ r and π r and their corresponding associated Stirling numbers. In the current work, our purpose will be more experimental as we are going to numerically simulate some of those interesting and fundamentally visual properties but also try to infer new ones. 1 The computer program in Python Here, we use a Python code written by us for the simulation of π r modulo n for different values of r and n. It will show the modular behaviour we already proved in [1] [2] [3] when r varies. As for the notations, the 0 are the elements of π r divisible by n, whereas the 1 (or sometimes * ) are non divisible by n. The main geometrical lines defined in our theorems are put in red colour. Those examples visually show the modular rotations with increasing r. We have privileged Python language in our programming because of its power to handle very large integers. The following code, which provides LaTeX files of π r, was implemented under Cygwin. It can be easily generalized to the simulation of σ r. 2

4 # Program of calculation modulo n of the triangle pi_r (or sigma_r) r=input( order r= ) n=input( modulo n= ) h = input( number of lines of the triangle= ) # initialization of the triangle T=[[1,0]] # Loop for calculating the triangle as a list for i in range(1,h): T.append([1]) # initialization for T[i][0]=1 for j in range(1,i+1): prod=1 fact=1 for k in range(1,r): prod=(i+(r-1)*j+ k)*prod fact=k*fact # calculating the factorial of r # use of the recurrence relation of the triangle: T[i].append(prod//fact*T[i-1][j-1] + (j+1)*t[i-1][j]) T[i].append(0) # initialization for T[i][i+1]=0 # one can use this program for calculating sigma_r: # just do not calculate fact=r! and replace the top line # with: T[i].append(prod*T[i-1][j-1] + (j+1)*t[i-1][j]). # Computation in loop modulo n of the terms of the triangle # the 0 are the terms divisible by n # the 1 are the others for i in range(0,h): for j in range(0,i+1): if T[i][j]%n==0: # terms divisible by n are represented in blue "0" (red "0" on the diagonal): if i+(r-1)*j==n-r: # diagonal associated with n T[i][j]= \\textcolor{ + str( red ) + }{ + str( 0 ) + } else: T[i][j]= \\textcolor{ + str( blue ) + }{ + str( 0 ) + } else: # terms non divisible by n symbolized by green "1" (red "1" on the diagonal): T[i][j]= \\textcolor{ + str( green ) + }{ + str( 1 ) + } # red asymptote associated with n while its terms are not divisible by n: if i-j==n-r and T[i][j]== \\textcolor{ +str( green )+ }{ +str( 1 )+ } : 3

5 T[i][j]= \\textcolor{ + str( red ) + }{ + str( 1 ) + } # the centre of rotation of the line associated with n may be noted "*": T[n-r][0]= \\textcolor{ + str( red ) + }{ + str( * ) + } f=open( r= +str(r)+, + n= +str(n)+.tex, w ) # opening of the recording file of the results: f.write("$") # writing of the text in LaTeX and of the computation constants: f.write("\pi") f.write("_") f.write("{") f.write(str(r)) f.write("}") f.write("$") f.write("\n") f.write("modulo ") f.write("$") f.write(str(n)) f.write("$") f.write( \\\\\n ) f.write( \\\\\n ) for i in range(0,h): # display of the triangle ch="" for j in range(0,i+1): ch+="" + str(t[i][j]) ch=ch+ "\\\\\n" f.write(ch) f.close() # closing of the file 2 Variation of n at r fixed Here, we fix r = 2 and make n vary to study π 2 modulo n. First, let s remind that if n is a prime number, we proved in [2] that : S r (m, k) 0 [n] for all S r (m, k) belonging to the modular angle associated to n, A r (n), which is the whole of the elements of π r ranging in the area between δ r (n) and ρ r (n), except δ r (n) (see Figure 0 below for the case r = 3). As a reminder, ρ r (n) is the line in π r associated with a natural integer n - such that the coordinates (m, k) of each term in this line verify m = n (r 1)(k 1) - and δ r (n) the line which forms an angle of π 4 with the horizontal. The algebraic value of the modular angle is : α = π 4 + arctan(r 1) [2]. 4

6 ρ r (n) Figure 0 : r=3 A r (n) α δ r (n) This property was shown invertible in [3], provided that n (r 1)! = 1, and generalizable to σ r with a few properties. Let s move on to the simulations. FIGURE 1 π 2 mod 3 FIGURE 2 π 2 mod 4 5

7 FIGURE 3 π 2 mod 5 FIGURE 4 π 2 mod 6 FIGURE 5 π 2 mod 7 FIGURE 6 π 2 mod 13 6

8 FIGURE 7 π 2 mod 20 The triangles show different patterns according to whether n is prime (Figures 1, 3) or not (Figures 2, 4). Zeros regions are much denser for n prime. Besides, the associated lines to n contain very few or none zeros if n is not prime, and all zeros (excepted the centre of rotation ) otherwise. This is confirmed in Figures 5, 6, 7. We see clearly in such examples the arithmetical behaviour of π 2 according to whether n is a prime or not : in the affirmative case, patterns are very different from those of the so-called Pascal triangle or the Stirling triangles of first and second kind. Indeed, for r 2, modular properties of π r and σ r are no longer concentrated on the horizontal lines like in the last triangles but make modular rotations of angle arctan(r 1) ([3]). Then, one observes in the figures above new modular properties compared to our previous results in [1] [2] [3] : for n prime only, the geometrical patterns of π 2, or modular angles, seem to be repeated every n lines by shifting one column to the right. This phenomenon is also observable in π r and σ r for r > 2 (see below). 3 Variation of r at n fixed Here, we fix n = 17. 7

9 FIGURE 8 π 1 mod 17 FIGURE 9 π 2 mod 17 FIGURE 10 π 3 mod 17 FIGURE 11 π 4 mod 17 8

10 FIGURE 12 π 17 mod 17 FIGURE 13 π 18 mod 17 FIGURE 14 π 19 mod 17 FIGURE 15 π 20 mod 17 The initial case r = 1 is similar to the "Pascal s triangle" modulo n prime (the associated line to n is 9

11 simply horizontal). Then, Figures 8 to 11 show again the expected rotation of the line associated with n as a function of r and its modular "scanning" of the triangle π r. Let s make here some "zooms" for π r modulo 17 when r varies : FIGURE 16 π 1 mod 17 FIGURE 17 π 2 mod 17 FIGURE 18 π 3 mod 17 FIGURE 19 π 4 mod 17 10

12 FIGURE 20 π 5 mod 17 FIGURE 21 π 6 mod 17 FIGURE 22 π 9 mod 17 FIGURE 23 π 10 mod 17 As clearly remarkable in those magnifications (Figures 16 to 23), the line (and a fortiori the modular angle) associated to n prime tends to disappear with r increasing, which can be understood in a combinatorial way : as r increases, one can find less and less k-partitions with classes of more than r elements in a set of cardinal n, which implies the limit towards zero with r of each term of π r. This property looks interesting given that the number and size of the required π r terms to characterize their associated prime number n (see theorem above) is decreasing with r. Besides, we observe like a "cyclical" behaviour in terms of r of the congruence properties of π r modulo n : in Figure 12, for n = r = 17, the appearance of π 17 is very singular in that most "zeros" disappear. On the other hand, in Figures 13, 14, 15, one notes that π 18 modulo 17 suddenly finds its zeros (although in a quite different way from π 1 modulo 17) and a modular sweep resumes when r increases, here for r = 18 to 20. Anyway, even isolated zeros seem to adopt this cyclical behaviour in general. The same phenomenon recurs for other n, according to the following Figures 24, 25, 26, 27 : 11

13 FIGURE 24 π 23 mod 23 FIGURE 25 π 24 mod 23 FIGURE 26 π 29 mod 29 FIGURE 27 π 31 mod 29 12

14 Finally, sharing the same arithmetical triangle structure as π r [1], triangles σ r modulo n show, not surprisingly, similar properties for n prime. Just a few examples below for n = 11 and r = 1 to r = 4 : FIGURE 28 σ 1 mod 11 FIGURE 29 σ 2 mod 11 FIGURE 30 σ 3 mod 11 FIGURE 31 σ 4 mod 11 13

15 4 Conclusion Thanks to those simulations, new phenomena in associated Stirling numbers have been observed, in particular cyclical behaviours of π r and σ r modulo n for r n and repeated modular patterns (or angles) along with n. Once proved, such results should be transferred, like we did in [3], to the associated Stirling numbers in the classical staircase form as we find them in the whole literature, i.e. s r (n, k) and d r (n, k), n, k N. Besides, there remain some exciting open questions inspired by this work. For example : Could we find new arithmetical structures with more varied modular angles than defined above, that is to say for any rational, non-positive or even real values of r? To which extent would it be possible to describe the modular properties of π r and σ r (or other similar triangles) in terms of "geometrical" properties only : rotations, translations, asymptotic limits? Are there other arithmetical triangles than π r and σ r or any general structure which have the same kind of modular properties distinct from their geometrical transformations? This would be the object of future papers. Références [1] Ben Letaïef, K., "All Associated Stirling Numbers are Arithmetical Triangles", Notes on Number Theory and Discrete Mathematics, 23, 3, accepted, to be published in September 2017 : https ://hal.archives-ouvertes.fr/hal [2] Ben Letaïef, K., "Two Types of Rotations in Associated Stirling Numbers", submitted to Notes on Number Theory and Discrete Mathematics in July 2017 : https ://hal.archives-ouvertes.fr/hal [3] Ben Letaïef, K., "A Disturbing Combination of Geometrical and Modular Rotations in the World of Arithmetic", submitted to Notes on Number Theory and Discrete Mathematics in July 2017 : https ://hal.archives-ouvertes.fr/hal [4] Comtet, L., Analyse combinatoire, PUF,

All Associated Stirling Numbers are Arithmetical Triangles

All Associated Stirling Numbers are Arithmetical Triangles All Associated Stirling Numbers are Arithmetical Triangles Khaled Ben Letaïef To cite this version: Khaled Ben Letaïef. All Associated Stirling Numbers are Arithmetical Triangles. 2017.

More information

A new simple recursive algorithm for finding prime numbers using Rosser s theorem

A new simple recursive algorithm for finding prime numbers using Rosser s theorem A new simple recursive algorithm for finding prime numbers using Rosser s theorem Rédoane Daoudi To cite this version: Rédoane Daoudi. A new simple recursive algorithm for finding prime numbers using Rosser

More information

Stickelberger s congruences for absolute norms of relative discriminants

Stickelberger s congruences for absolute norms of relative discriminants Stickelberger s congruences for absolute norms of relative discriminants Georges Gras To cite this version: Georges Gras. Stickelberger s congruences for absolute norms of relative discriminants. Journal

More information

Easter bracelets for years

Easter bracelets for years Easter bracelets for 5700000 years Denis Roegel To cite this version: Denis Roegel. Easter bracelets for 5700000 years. [Research Report] 2014. HAL Id: hal-01009457 https://hal.inria.fr/hal-01009457

More information

Smart Bolometer: Toward Monolithic Bolometer with Smart Functions

Smart Bolometer: Toward Monolithic Bolometer with Smart Functions Smart Bolometer: Toward Monolithic Bolometer with Smart Functions Matthieu Denoual, Gilles Allègre, Patrick Attia, Olivier De Sagazan To cite this version: Matthieu Denoual, Gilles Allègre, Patrick Attia,

More information

Methylation-associated PHOX2B gene silencing is a rare event in human neuroblastoma.

Methylation-associated PHOX2B gene silencing is a rare event in human neuroblastoma. Methylation-associated PHOX2B gene silencing is a rare event in human neuroblastoma. Loïc De Pontual, Delphine Trochet, Franck Bourdeaut, Sophie Thomas, Heather Etchevers, Agnes Chompret, Véronique Minard,

More information

Vibro-acoustic simulation of a car window

Vibro-acoustic simulation of a car window Vibro-acoustic simulation of a car window Christophe Barras To cite this version: Christophe Barras. Vibro-acoustic simulation of a car window. Société Française d Acoustique. Acoustics 12, Apr 12, Nantes,

More information

Case report on the article Water nanoelectrolysis: A simple model, Journal of Applied Physics (2017) 122,

Case report on the article Water nanoelectrolysis: A simple model, Journal of Applied Physics (2017) 122, Case report on the article Water nanoelectrolysis: A simple model, Journal of Applied Physics (2017) 122, 244902 Juan Olives, Zoubida Hammadi, Roger Morin, Laurent Lapena To cite this version: Juan Olives,

More information

On Newton-Raphson iteration for multiplicative inverses modulo prime powers

On Newton-Raphson iteration for multiplicative inverses modulo prime powers On Newton-Raphson iteration for multiplicative inverses modulo prime powers Jean-Guillaume Dumas To cite this version: Jean-Guillaume Dumas. On Newton-Raphson iteration for multiplicative inverses modulo

More information

On size, radius and minimum degree

On size, radius and minimum degree On size, radius and minimum degree Simon Mukwembi To cite this version: Simon Mukwembi. On size, radius and minimum degree. Discrete Mathematics and Theoretical Computer Science, DMTCS, 2014, Vol. 16 no.

More information

On path partitions of the divisor graph

On path partitions of the divisor graph On path partitions of the divisor graph Paul Melotti, Eric Saias To cite this version: Paul Melotti, Eric Saias On path partitions of the divisor graph 018 HAL Id: hal-0184801 https://halarchives-ouvertesfr/hal-0184801

More information

A new approach of the concept of prime number

A new approach of the concept of prime number A new approach of the concept of prime number Jamel Ghannouchi To cite this version: Jamel Ghannouchi. A new approach of the concept of prime number. 4 pages. 24. HAL Id: hal-3943 https://hal.archives-ouvertes.fr/hal-3943

More information

Can we reduce health inequalities? An analysis of the English strategy ( )

Can we reduce health inequalities? An analysis of the English strategy ( ) Can we reduce health inequalities? An analysis of the English strategy (1997-2010) Johan P Mackenbach To cite this version: Johan P Mackenbach. Can we reduce health inequalities? An analysis of the English

More information

There are infinitely many twin primes 30n+11 and 30n+13, 30n+17 and 30n+19, 30n+29 and 30n+31

There are infinitely many twin primes 30n+11 and 30n+13, 30n+17 and 30n+19, 30n+29 and 30n+31 There are infinitely many twin primes 30n+11 and 30n+13, 30n+17 and 30n+19, 30n+29 and 30n+31 Sibiri Christian Bandre To cite this version: Sibiri Christian Bandre. There are infinitely many twin primes

More information

approximation results for the Traveling Salesman and related Problems

approximation results for the Traveling Salesman and related Problems approximation results for the Traveling Salesman and related Problems Jérôme Monnot To cite this version: Jérôme Monnot. approximation results for the Traveling Salesman and related Problems. Information

More information

A note on the computation of the fraction of smallest denominator in between two irreducible fractions

A note on the computation of the fraction of smallest denominator in between two irreducible fractions A note on the computation of the fraction of smallest denominator in between two irreducible fractions Isabelle Sivignon To cite this version: Isabelle Sivignon. A note on the computation of the fraction

More information

Hook lengths and shifted parts of partitions

Hook lengths and shifted parts of partitions Hook lengths and shifted parts of partitions Guo-Niu Han To cite this version: Guo-Niu Han Hook lengths and shifted parts of partitions The Ramanujan Journal, 009, 9 p HAL Id: hal-00395690

More information

L institution sportive : rêve et illusion

L institution sportive : rêve et illusion L institution sportive : rêve et illusion Hafsi Bedhioufi, Sida Ayachi, Imen Ben Amar To cite this version: Hafsi Bedhioufi, Sida Ayachi, Imen Ben Amar. L institution sportive : rêve et illusion. Revue

More information

b-chromatic number of cacti

b-chromatic number of cacti b-chromatic number of cacti Victor Campos, Claudia Linhares Sales, Frédéric Maffray, Ana Silva To cite this version: Victor Campos, Claudia Linhares Sales, Frédéric Maffray, Ana Silva. b-chromatic number

More information

Full-order observers for linear systems with unknown inputs

Full-order observers for linear systems with unknown inputs Full-order observers for linear systems with unknown inputs Mohamed Darouach, Michel Zasadzinski, Shi Jie Xu To cite this version: Mohamed Darouach, Michel Zasadzinski, Shi Jie Xu. Full-order observers

More information

Passerelle entre les arts : la sculpture sonore

Passerelle entre les arts : la sculpture sonore Passerelle entre les arts : la sculpture sonore Anaïs Rolez To cite this version: Anaïs Rolez. Passerelle entre les arts : la sculpture sonore. Article destiné à l origine à la Revue de l Institut National

More information

On infinite permutations

On infinite permutations On infinite permutations Dmitri G. Fon-Der-Flaass, Anna E. Frid To cite this version: Dmitri G. Fon-Der-Flaass, Anna E. Frid. On infinite permutations. Stefan Felsner. 2005 European Conference on Combinatorics,

More information

A Simple Proof of P versus NP

A Simple Proof of P versus NP A Simple Proof of P versus NP Frank Vega To cite this version: Frank Vega. A Simple Proof of P versus NP. 2016. HAL Id: hal-01281254 https://hal.archives-ouvertes.fr/hal-01281254 Submitted

More information

Analysis of Boyer and Moore s MJRTY algorithm

Analysis of Boyer and Moore s MJRTY algorithm Analysis of Boyer and Moore s MJRTY algorithm Laurent Alonso, Edward M. Reingold To cite this version: Laurent Alonso, Edward M. Reingold. Analysis of Boyer and Moore s MJRTY algorithm. Information Processing

More information

Sparse multivariate factorization by mean of a few bivariate factorizations

Sparse multivariate factorization by mean of a few bivariate factorizations Sparse multivariate factorization by mean of a few bivariate factorizations Bernard Parisse To cite this version: Bernard Parisse. Sparse multivariate factorization by mean of a few bivariate factorizations.

More information

Completeness of the Tree System for Propositional Classical Logic

Completeness of the Tree System for Propositional Classical Logic Completeness of the Tree System for Propositional Classical Logic Shahid Rahman To cite this version: Shahid Rahman. Completeness of the Tree System for Propositional Classical Logic. Licence. France.

More information

Cutwidth and degeneracy of graphs

Cutwidth and degeneracy of graphs Cutwidth and degeneracy of graphs Benoit Kloeckner To cite this version: Benoit Kloeckner. Cutwidth and degeneracy of graphs. IF_PREPUB. 2009. HAL Id: hal-00408210 https://hal.archives-ouvertes.fr/hal-00408210v1

More information

A non-commutative algorithm for multiplying (7 7) matrices using 250 multiplications

A non-commutative algorithm for multiplying (7 7) matrices using 250 multiplications A non-commutative algorithm for multiplying (7 7) matrices using 250 multiplications Alexandre Sedoglavic To cite this version: Alexandre Sedoglavic. A non-commutative algorithm for multiplying (7 7) matrices

More information

Exact Comparison of Quadratic Irrationals

Exact Comparison of Quadratic Irrationals Exact Comparison of Quadratic Irrationals Phuc Ngo To cite this version: Phuc Ngo. Exact Comparison of Quadratic Irrationals. [Research Report] LIGM. 20. HAL Id: hal-0069762 https://hal.archives-ouvertes.fr/hal-0069762

More information

From Unstructured 3D Point Clouds to Structured Knowledge - A Semantics Approach

From Unstructured 3D Point Clouds to Structured Knowledge - A Semantics Approach From Unstructured 3D Point Clouds to Structured Knowledge - A Semantics Approach Christophe Cruz, Helmi Ben Hmida, Frank Boochs, Christophe Nicolle To cite this version: Christophe Cruz, Helmi Ben Hmida,

More information

The Riemann Hypothesis Proof And The Quadrivium Theory

The Riemann Hypothesis Proof And The Quadrivium Theory The Riemann Hypothesis Proof And The Quadrivium Theory Thierno M. Sow To cite this version: Thierno M. Sow. The Riemann Hypothesis Proof And The Quadrivium Theory. 2017. HAL Id: hal-01513658 https://hal.archives-ouvertes.fr/hal-01513658

More information

On one class of permutation polynomials over finite fields of characteristic two *

On one class of permutation polynomials over finite fields of characteristic two * On one class of permutation polynomials over finite fields of characteristic two * Leonid Bassalygo, Victor A. Zinoviev To cite this version: Leonid Bassalygo, Victor A. Zinoviev. On one class of permutation

More information

Evolution of the cooperation and consequences of a decrease in plant diversity on the root symbiont diversity

Evolution of the cooperation and consequences of a decrease in plant diversity on the root symbiont diversity Evolution of the cooperation and consequences of a decrease in plant diversity on the root symbiont diversity Marie Duhamel To cite this version: Marie Duhamel. Evolution of the cooperation and consequences

More information

On Symmetric Norm Inequalities And Hermitian Block-Matrices

On Symmetric Norm Inequalities And Hermitian Block-Matrices On Symmetric Norm Inequalities And Hermitian lock-matrices Antoine Mhanna To cite this version: Antoine Mhanna On Symmetric Norm Inequalities And Hermitian lock-matrices 015 HAL Id: hal-0131860

More information

A Study of the Regular Pentagon with a Classic Geometric Approach

A Study of the Regular Pentagon with a Classic Geometric Approach A Study of the Regular Pentagon with a Classic Geometric Approach Amelia Carolina Sparavigna, Mauro Maria Baldi To cite this version: Amelia Carolina Sparavigna, Mauro Maria Baldi. A Study of the Regular

More information

A remark on a theorem of A. E. Ingham.

A remark on a theorem of A. E. Ingham. A remark on a theorem of A. E. Ingham. K G Bhat, K Ramachandra To cite this version: K G Bhat, K Ramachandra. A remark on a theorem of A. E. Ingham.. Hardy-Ramanujan Journal, Hardy-Ramanujan Society, 2006,

More information

Dispersion relation results for VCS at JLab

Dispersion relation results for VCS at JLab Dispersion relation results for VCS at JLab G. Laveissiere To cite this version: G. Laveissiere. Dispersion relation results for VCS at JLab. Compton Scattering from Low to High Momentum Transfer, Mar

More information

Electromagnetic characterization of magnetic steel alloys with respect to the temperature

Electromagnetic characterization of magnetic steel alloys with respect to the temperature Electromagnetic characterization of magnetic steel alloys with respect to the temperature B Paya, P Teixeira To cite this version: B Paya, P Teixeira. Electromagnetic characterization of magnetic steel

More information

Widely Linear Estimation with Complex Data

Widely Linear Estimation with Complex Data Widely Linear Estimation with Complex Data Bernard Picinbono, Pascal Chevalier To cite this version: Bernard Picinbono, Pascal Chevalier. Widely Linear Estimation with Complex Data. IEEE Transactions on

More information

The Mahler measure of trinomials of height 1

The Mahler measure of trinomials of height 1 The Mahler measure of trinomials of height 1 Valérie Flammang To cite this version: Valérie Flammang. The Mahler measure of trinomials of height 1. Journal of the Australian Mathematical Society 14 9 pp.1-4.

More information

FORMAL TREATMENT OF RADIATION FIELD FLUCTUATIONS IN VACUUM

FORMAL TREATMENT OF RADIATION FIELD FLUCTUATIONS IN VACUUM FORMAL TREATMENT OF RADIATION FIELD FLUCTUATIONS IN VACUUM Frederic Schuller, Renaud Savalle, Michael Neumann-Spallart To cite this version: Frederic Schuller, Renaud Savalle, Michael Neumann-Spallart.

More information

Axiom of infinity and construction of N

Axiom of infinity and construction of N Axiom of infinity and construction of N F Portal To cite this version: F Portal. Axiom of infinity and construction of N. 2015. HAL Id: hal-01162075 https://hal.archives-ouvertes.fr/hal-01162075 Submitted

More information

On the longest path in a recursively partitionable graph

On the longest path in a recursively partitionable graph On the longest path in a recursively partitionable graph Julien Bensmail To cite this version: Julien Bensmail. On the longest path in a recursively partitionable graph. 2012. HAL Id:

More information

Thomas Lugand. To cite this version: HAL Id: tel

Thomas Lugand. To cite this version: HAL Id: tel Contribution à la Modélisation et à l Optimisation de la Machine Asynchrone Double Alimentation pour des Applications Hydrauliques de Pompage Turbinage Thomas Lugand To cite this version: Thomas Lugand.

More information

RHEOLOGICAL INTERPRETATION OF RAYLEIGH DAMPING

RHEOLOGICAL INTERPRETATION OF RAYLEIGH DAMPING RHEOLOGICAL INTERPRETATION OF RAYLEIGH DAMPING Jean-François Semblat To cite this version: Jean-François Semblat. RHEOLOGICAL INTERPRETATION OF RAYLEIGH DAMPING. Journal of Sound and Vibration, Elsevier,

More information

Solving the neutron slowing down equation

Solving the neutron slowing down equation Solving the neutron slowing down equation Bertrand Mercier, Jinghan Peng To cite this version: Bertrand Mercier, Jinghan Peng. Solving the neutron slowing down equation. 2014. HAL Id: hal-01081772

More information

Lower bound of the covering radius of binary irreducible Goppa codes

Lower bound of the covering radius of binary irreducible Goppa codes Lower bound of the covering radius of binary irreducible Goppa codes Sergey Bezzateev, Natalia Shekhunova To cite this version: Sergey Bezzateev, Natalia Shekhunova. Lower bound of the covering radius

More information

Interactions of an eddy current sensor and a multilayered structure

Interactions of an eddy current sensor and a multilayered structure Interactions of an eddy current sensor and a multilayered structure Thanh Long Cung, Pierre-Yves Joubert, Eric Vourc H, Pascal Larzabal To cite this version: Thanh Long Cung, Pierre-Yves Joubert, Eric

More information

The Arm Prime Factors Decomposition

The Arm Prime Factors Decomposition The Arm Prime Factors Decomosition Boris Arm To cite this version: Boris Arm. The Arm Prime Factors Decomosition. 2013. HAL Id: hal-00810545 htts://hal.archives-ouvertes.fr/hal-00810545 Submitted on 10

More information

On The Exact Solution of Newell-Whitehead-Segel Equation Using the Homotopy Perturbation Method

On The Exact Solution of Newell-Whitehead-Segel Equation Using the Homotopy Perturbation Method On The Exact Solution of Newell-Whitehead-Segel Equation Using the Homotopy Perturbation Method S. Salman Nourazar, Mohsen Soori, Akbar Nazari-Golshan To cite this version: S. Salman Nourazar, Mohsen Soori,

More information

The Learner s Dictionary and the Sciences:

The Learner s Dictionary and the Sciences: The Learner s Dictionary and the Sciences: Geoffrey Williams To cite this version: Geoffrey Williams. The Learner s Dictionary and the Sciences:: Mismatch or no match?. Corpora, Language, Teaching, and

More information

Soundness of the System of Semantic Trees for Classical Logic based on Fitting and Smullyan

Soundness of the System of Semantic Trees for Classical Logic based on Fitting and Smullyan Soundness of the System of Semantic Trees for Classical Logic based on Fitting and Smullyan Shahid Rahman To cite this version: Shahid Rahman. Soundness of the System of Semantic Trees for Classical Logic

More information

Water Vapour Effects in Mass Measurement

Water Vapour Effects in Mass Measurement Water Vapour Effects in Mass Measurement N.-E. Khélifa To cite this version: N.-E. Khélifa. Water Vapour Effects in Mass Measurement. Measurement. Water Vapour Effects in Mass Measurement, May 2007, Smolenice,

More information

Control of an offshore wind turbine modeled as discrete system

Control of an offshore wind turbine modeled as discrete system Control of an offshore wind turbine modeled as discrete system Pedro Guimarães, Suzana Ávila To cite this version: Pedro Guimarães, Suzana Ávila. Control of an offshore wind turbine modeled as discrete

More information

Towards an active anechoic room

Towards an active anechoic room Towards an active anechoic room Dominique Habault, Philippe Herzog, Emmanuel Friot, Cédric Pinhède To cite this version: Dominique Habault, Philippe Herzog, Emmanuel Friot, Cédric Pinhède. Towards an active

More information

Spatial representativeness of an air quality monitoring station. Application to NO2 in urban areas

Spatial representativeness of an air quality monitoring station. Application to NO2 in urban areas Spatial representativeness of an air quality monitoring station. Application to NO2 in urban areas Maxime Beauchamp, Laure Malherbe, Laurent Letinois, Chantal De Fouquet To cite this version: Maxime Beauchamp,

More information

A proximal approach to the inversion of ill-conditioned matrices

A proximal approach to the inversion of ill-conditioned matrices A proximal approach to the inversion of ill-conditioned matrices Pierre Maréchal, Aude Rondepierre To cite this version: Pierre Maréchal, Aude Rondepierre. A proximal approach to the inversion of ill-conditioned

More information

Comparison of Harmonic, Geometric and Arithmetic means for change detection in SAR time series

Comparison of Harmonic, Geometric and Arithmetic means for change detection in SAR time series Comparison of Harmonic, Geometric and Arithmetic means for change detection in SAR time series Guillaume Quin, Béatrice Pinel-Puysségur, Jean-Marie Nicolas To cite this version: Guillaume Quin, Béatrice

More information

A Context free language associated with interval maps

A Context free language associated with interval maps A Context free language associated with interval maps M Archana, V Kannan To cite this version: M Archana, V Kannan. A Context free language associated with interval maps. Discrete Mathematics and Theoretical

More information

On Symmetric Norm Inequalities And Hermitian Block-Matrices

On Symmetric Norm Inequalities And Hermitian Block-Matrices On Symmetric Norm Inequalities And Hermitian lock-matrices Antoine Mhanna To cite this version: Antoine Mhanna On Symmetric Norm Inequalities And Hermitian lock-matrices 016 HAL Id: hal-0131860

More information

A non-linear simulator written in C for orbital spacecraft rendezvous applications.

A non-linear simulator written in C for orbital spacecraft rendezvous applications. A non-linear simulator written in C for orbital spacecraft rendezvous applications. Paulo Ricardo Arantes Gilz To cite this version: Paulo Ricardo Arantes Gilz. A non-linear simulator written in C for

More information

Some tight polynomial-exponential lower bounds for an exponential function

Some tight polynomial-exponential lower bounds for an exponential function Some tight polynomial-exponential lower bounds for an exponential function Christophe Chesneau To cite this version: Christophe Chesneau. Some tight polynomial-exponential lower bounds for an exponential

More information

Multiple sensor fault detection in heat exchanger system

Multiple sensor fault detection in heat exchanger system Multiple sensor fault detection in heat exchanger system Abdel Aïtouche, Didier Maquin, Frédéric Busson To cite this version: Abdel Aïtouche, Didier Maquin, Frédéric Busson. Multiple sensor fault detection

More information

The Accelerated Euclidean Algorithm

The Accelerated Euclidean Algorithm The Accelerated Euclidean Algorithm Sidi Mohamed Sedjelmaci To cite this version: Sidi Mohamed Sedjelmaci The Accelerated Euclidean Algorithm Laureano Gonzales-Vega and Thomas Recio Eds 2004, University

More information

The Zenith Passage of the Sun in the Plan of Brasilia

The Zenith Passage of the Sun in the Plan of Brasilia The Zenith Passage of the Sun in the Plan of Brasilia Amelia Carolina Sparavigna To cite this version: Amelia Carolina Sparavigna. The Zenith Passage of the Sun in the Plan of Brasilia. Philica, Philica,

More information

The core of voting games: a partition approach

The core of voting games: a partition approach The core of voting games: a partition approach Aymeric Lardon To cite this version: Aymeric Lardon. The core of voting games: a partition approach. International Game Theory Review, World Scientific Publishing,

More information

Nonlocal computational methods applied to composites structures

Nonlocal computational methods applied to composites structures Nonlocal computational methods applied to composites structures Norbert Germain, Frédéric Feyel, Jacques Besson To cite this version: Norbert Germain, Frédéric Feyel, Jacques Besson. Nonlocal computational

More information

RENORMALISATION ON THE PENROSE LATTICE

RENORMALISATION ON THE PENROSE LATTICE RENORMALISATION ON THE PENROSE LATTICE C. Godreche, Henri Orland To cite this version: C. Godreche, Henri Orland. RENORMALISATION ON THE PENROSE LATTICE. Journal de Physique Colloques, 1986, 47 (C3), pp.c3-197-c3-203.

More information

An electronic algorithm to find the optimal solution for the travelling salesman problem

An electronic algorithm to find the optimal solution for the travelling salesman problem An electronic algorithm to find the optimal solution for the travelling salesman problem M Sghiar To cite this version: M Sghiar. An electronic algorithm to find the optimal solution for the travelling

More information

Sound intensity as a function of sound insulation partition

Sound intensity as a function of sound insulation partition Sound intensity as a function of sound insulation partition S. Cvetkovic, R. Prascevic To cite this version: S. Cvetkovic, R. Prascevic. Sound intensity as a function of sound insulation partition. Journal

More information

Computer Visualization of the Riemann Zeta Function

Computer Visualization of the Riemann Zeta Function Computer Visualization of the Riemann Zeta Function Kamal Goudjil To cite this version: Kamal Goudjil. Computer Visualization of the Riemann Zeta Function. 2017. HAL Id: hal-01441140 https://hal.archives-ouvertes.fr/hal-01441140

More information

On sl3 KZ equations and W3 null-vector equations

On sl3 KZ equations and W3 null-vector equations On sl3 KZ equations and W3 null-vector equations Sylvain Ribault To cite this version: Sylvain Ribault. On sl3 KZ equations and W3 null-vector equations. Conformal Field Theory, Integrable Models, and

More information

Particle-in-cell simulations of high energy electron production by intense laser pulses in underdense plasmas

Particle-in-cell simulations of high energy electron production by intense laser pulses in underdense plasmas Particle-in-cell simulations of high energy electron production by intense laser pulses in underdense plasmas Susumu Kato, Eisuke Miura, Mitsumori Tanimoto, Masahiro Adachi, Kazuyoshi Koyama To cite this

More information

Finite element computation of leaky modes in straight and helical elastic waveguides

Finite element computation of leaky modes in straight and helical elastic waveguides Finite element computation of leaky modes in straight and helical elastic waveguides Khac-Long Nguyen, Fabien Treyssede, Christophe Hazard, Anne-Sophie Bonnet-Ben Dhia To cite this version: Khac-Long Nguyen,

More information

Some approaches to modeling of the effective properties for thermoelastic composites

Some approaches to modeling of the effective properties for thermoelastic composites Some approaches to modeling of the ective properties for thermoelastic composites Anna Nasedkina Andrey Nasedkin Vladimir Remizov To cite this version: Anna Nasedkina Andrey Nasedkin Vladimir Remizov.

More information

The FLRW cosmological model revisited: relation of the local time with th e local curvature and consequences on the Heisenberg uncertainty principle

The FLRW cosmological model revisited: relation of the local time with th e local curvature and consequences on the Heisenberg uncertainty principle The FLRW cosmological model revisited: relation of the local time with th e local curvature and consequences on the Heisenberg uncertainty principle Nathalie Olivi-Tran, Paul M Gauthier To cite this version:

More information

SOLAR RADIATION ESTIMATION AND PREDICTION USING MEASURED AND PREDICTED AEROSOL OPTICAL DEPTH

SOLAR RADIATION ESTIMATION AND PREDICTION USING MEASURED AND PREDICTED AEROSOL OPTICAL DEPTH SOLAR RADIATION ESTIMATION AND PREDICTION USING MEASURED AND PREDICTED AEROSOL OPTICAL DEPTH Carlos M. Fernández-Peruchena, Martín Gastón, Maria V Guisado, Ana Bernardos, Íñigo Pagola, Lourdes Ramírez

More information

Some diophantine problems concerning equal sums of integers and their cubes

Some diophantine problems concerning equal sums of integers and their cubes Some diophantine problems concerning equal sums of integers and their cubes Ajai Choudhry To cite this version: Ajai Choudhry. Some diophantine problems concerning equal sums of integers and their cubes.

More information

Unfolding the Skorohod reflection of a semimartingale

Unfolding the Skorohod reflection of a semimartingale Unfolding the Skorohod reflection of a semimartingale Vilmos Prokaj To cite this version: Vilmos Prokaj. Unfolding the Skorohod reflection of a semimartingale. Statistics and Probability Letters, Elsevier,

More information

IMPROVEMENTS OF THE VARIABLE THERMAL RESISTANCE

IMPROVEMENTS OF THE VARIABLE THERMAL RESISTANCE IMPROVEMENTS OF THE VARIABLE THERMAL RESISTANCE V. Szekely, S. Torok, E. Kollar To cite this version: V. Szekely, S. Torok, E. Kollar. IMPROVEMENTS OF THE VARIABLE THERMAL RESIS- TANCE. THERMINIC 2007,

More information

Impulse response measurement of ultrasonic transducers

Impulse response measurement of ultrasonic transducers Impulse response measurement of ultrasonic transducers F. Kadlec To cite this version: F. Kadlec. Impulse response measurement of ultrasonic transducers. Journal de Physique IV Colloque, 1994, 04 (C5),

More information

Gaia astrometric accuracy in the past

Gaia astrometric accuracy in the past Gaia astrometric accuracy in the past François Mignard To cite this version: François Mignard. Gaia astrometric accuracy in the past. IMCCE. International Workshop NAROO-GAIA A new reduction of old observations

More information

Norm Inequalities of Positive Semi-Definite Matrices

Norm Inequalities of Positive Semi-Definite Matrices Norm Inequalities of Positive Semi-Definite Matrices Antoine Mhanna To cite this version: Antoine Mhanna Norm Inequalities of Positive Semi-Definite Matrices 15 HAL Id: hal-11844 https://halinriafr/hal-11844v1

More information

Solution to Sylvester equation associated to linear descriptor systems

Solution to Sylvester equation associated to linear descriptor systems Solution to Sylvester equation associated to linear descriptor systems Mohamed Darouach To cite this version: Mohamed Darouach. Solution to Sylvester equation associated to linear descriptor systems. Systems

More information

Theoretical calculation of the power of wind turbine or tidal turbine

Theoretical calculation of the power of wind turbine or tidal turbine Theoretical calculation of the power of wind turbine or tidal turbine Pierre Lecanu, Joel Breard, Dominique Mouazé To cite this version: Pierre Lecanu, Joel Breard, Dominique Mouazé. Theoretical calculation

More information

Numerical modification of atmospheric models to include the feedback of oceanic currents on air-sea fluxes in ocean-atmosphere coupled models

Numerical modification of atmospheric models to include the feedback of oceanic currents on air-sea fluxes in ocean-atmosphere coupled models Numerical modification of atmospheric models to include the feedback of oceanic currents on air-sea fluxes in ocean-atmosphere coupled models Florian Lemarié To cite this version: Florian Lemarié. Numerical

More information

Comment on: Sadi Carnot on Carnot s theorem.

Comment on: Sadi Carnot on Carnot s theorem. Comment on: Sadi Carnot on Carnot s theorem. Jacques Arnaud, Laurent Chusseau, Fabrice Philippe To cite this version: Jacques Arnaud, Laurent Chusseau, Fabrice Philippe. Comment on: Sadi Carnot on Carnot

More information

Negative results on acyclic improper colorings

Negative results on acyclic improper colorings Negative results on acyclic improper colorings Pascal Ochem To cite this version: Pascal Ochem. Negative results on acyclic improper colorings. Stefan Felsner. 005 European Conference on Combinatorics,

More information

The magnetic field diffusion equation including dynamic, hysteresis: A linear formulation of the problem

The magnetic field diffusion equation including dynamic, hysteresis: A linear formulation of the problem The magnetic field diffusion equation including dynamic, hysteresis: A linear formulation of the problem Marie-Ange Raulet, Benjamin Ducharne, Jean-Pierre Masson, G. Bayada To cite this version: Marie-Ange

More information

Some Generalized Euclidean and 2-stage Euclidean number fields that are not norm-euclidean

Some Generalized Euclidean and 2-stage Euclidean number fields that are not norm-euclidean Some Generalized Euclidean and 2-stage Euclidean number fields that are not norm-euclidean Jean-Paul Cerri To cite this version: Jean-Paul Cerri. Some Generalized Euclidean and 2-stage Euclidean number

More information

Quantum efficiency and metastable lifetime measurements in ruby ( Cr 3+ : Al2O3) via lock-in rate-window photothermal radiometry

Quantum efficiency and metastable lifetime measurements in ruby ( Cr 3+ : Al2O3) via lock-in rate-window photothermal radiometry Quantum efficiency and metastable lifetime measurements in ruby ( Cr 3+ : Al2O3) via lock-in rate-window photothermal radiometry A. Mandelis, Z. Chen, R. Bleiss To cite this version: A. Mandelis, Z. Chen,

More information

The sound power output of a monopole source in a cylindrical pipe containing area discontinuities

The sound power output of a monopole source in a cylindrical pipe containing area discontinuities The sound power output of a monopole source in a cylindrical pipe containing area discontinuities Wenbo Duan, Ray Kirby To cite this version: Wenbo Duan, Ray Kirby. The sound power output of a monopole

More information

Finite volume method for nonlinear transmission problems

Finite volume method for nonlinear transmission problems Finite volume method for nonlinear transmission problems Franck Boyer, Florence Hubert To cite this version: Franck Boyer, Florence Hubert. Finite volume method for nonlinear transmission problems. Proceedings

More information

Best linear unbiased prediction when error vector is correlated with other random vectors in the model

Best linear unbiased prediction when error vector is correlated with other random vectors in the model Best linear unbiased prediction when error vector is correlated with other random vectors in the model L.R. Schaeffer, C.R. Henderson To cite this version: L.R. Schaeffer, C.R. Henderson. Best linear unbiased

More information

Basic concepts and models in continuum damage mechanics

Basic concepts and models in continuum damage mechanics Basic concepts and models in continuum damage mechanics Djimedo Kondo, Hélène Welemane, Fabrice Cormery To cite this version: Djimedo Kondo, Hélène Welemane, Fabrice Cormery. Basic concepts and models

More information

A non-commutative algorithm for multiplying (7 7) matrices using 250 multiplications

A non-commutative algorithm for multiplying (7 7) matrices using 250 multiplications A non-commutative algorithm for multiplying (7 7) matrices using 250 multiplications Alexandre Sedoglavic To cite this version: Alexandre Sedoglavic. A non-commutative algorithm for multiplying (7 7) matrices

More information

Near-Earth Asteroids Orbit Propagation with Gaia Observations

Near-Earth Asteroids Orbit Propagation with Gaia Observations Near-Earth Asteroids Orbit Propagation with Gaia Observations David Bancelin, Daniel Hestroffer, William Thuillot To cite this version: David Bancelin, Daniel Hestroffer, William Thuillot. Near-Earth Asteroids

More information

The Windy Postman Problem on Series-Parallel Graphs

The Windy Postman Problem on Series-Parallel Graphs The Windy Postman Problem on Series-Parallel Graphs Francisco Javier Zaragoza Martínez To cite this version: Francisco Javier Zaragoza Martínez. The Windy Postman Problem on Series-Parallel Graphs. Stefan

More information

Entropies and fractal dimensions

Entropies and fractal dimensions Entropies and fractal dimensions Amelia Carolina Sparavigna To cite this version: Amelia Carolina Sparavigna. Entropies and fractal dimensions. Philica, Philica, 2016. HAL Id: hal-01377975

More information

On Poincare-Wirtinger inequalities in spaces of functions of bounded variation

On Poincare-Wirtinger inequalities in spaces of functions of bounded variation On Poincare-Wirtinger inequalities in spaces of functions of bounded variation Maïtine Bergounioux To cite this version: Maïtine Bergounioux. On Poincare-Wirtinger inequalities in spaces of functions of

More information