Field emission microscopy: Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>Addbot
m Bot: Migrating 6 interwiki links, now provided by Wikidata on d:q905455 (Report Errors)
 
Line 1: Line 1:
In [[mathematics]], the '''Perrin numbers''' are defined by the [[recurrence relation]]
I'm Susanna and I live in a seaside city in northern United Kingdom, Corley Ash. I'm 34 and I'm will soon finish my study at Engineering.<br><br><br>http://brokerltd.com - CPM<br><br>Also visit my blog post ... [http://brokerltd.com/pub_cpa_network.html cpanetwork]
:''P''(0) = 3, ''P''(1) = 0, ''P''(2) = 2,
and  
:''P''(''n'') = ''P''(''n'' &minus; 2) + ''P''(''n'' &minus; 3) for ''n'' > 2.
 
The sequence of Perrin numbers starts with
:[[3 (number)|3]], [[0 (number)|0]], [[2 (number)|2]], 3, 2, [[5 (number)|5]], 5, [[7 (number)|7]], [[10 (number)|10]], [[12 (number)|12]], [[17 (number)|17]], [[22 (number)|22]], [[29 (number)|29]], [[39 (number)|39]] ... {{OEIS|id=A001608}}
 
The number of different [[maximal independent set]]s in an ''n''-vertex [[cycle graph]] is counted by the ''n''th Perrin number for ''n'' > 1.<ref>{{harvtxt|Füredi|1987}}</ref>
 
==History==
This sequence was mentioned implicitly by [[Édouard Lucas]] (1876).  In 1899, the same sequence was mentioned explicitly by
François Olivier Raoul Perrin.<ref>{{harvtxt|Knuth|2011}}</ref>  The most extensive treatment of this sequence was given by Adams and Shanks (1982).
 
== Properties ==
 
===Generating function===
The [[generating function]] of the Perrin sequence is
 
:<math>G(P(n);x)=\frac{3-x^2}{1-x^2-x^3}.</math>
 
===Matrix formula===
:<math> \begin{pmatrix} 0 & 1 & 0 \\ 0 & 0 & 1 \\ 1 & 1 & 0 \end{pmatrix}^n
  \begin{pmatrix} 3 \\ 0 \\ 2 \end{pmatrix} =
  \begin{pmatrix} P\left(n\right) \\ P\left(n+1\right) \\ P\left(n+2\right) \end{pmatrix}
</math>
 
===Binet-like formula===
 
The Perrin sequence numbers can be written in terms of powers of the roots of the equation
 
:<math> x^3 -x -1 = 0.</math>
 
This equation has 3 roots;  one real root ''p'' (known as the [[plastic number]]) and two complex conjugate roots ''q'' and ''r''. Given these three roots, the Perrin sequence analogue of the [[Lucas sequence]] Binet formula is
 
:<math>P\left(n\right) = {p^n} + {q^n} + {r^n}. </math>
 
Since the magnitudes of the complex roots ''q'' and ''r'' are both less than 1, the powers of these roots approach 0 for large ''n''. For large ''n'' the formula reduces to
 
:<math>P\left(n\right) \approx {p^n} </math>
 
This formula can be used to quickly calculate values of the Perrin sequence for large n. The ratio of successive terms in the Perrin sequence approaches ''p'', a.k.a. the [[plastic number]], which has a value of approximately 1.324718. This constant bears the same relationship to the Perrin sequence as the [[golden ratio]] does to the [[Lucas number|Lucas sequence]].  Similar connections exist also between ''p'' and the [[Padovan sequence]], between the [[golden ratio]] and Fibonacci numbers, and between the [[silver ratio]] and [[Pell number]]s.
 
===Multiplication formula===
 
From the Binet formula, we can obtain a formula for ''G''(''kn'') in terms of ''G''(''n''−1), ''G''(''n'') and ''G''(''n''+1); we know
:<math>
\begin{matrix}
G(n-1) & = &p^{-1}p^n + &q^{-1}q^n +& r^{-1} r^n\\
G(n) & =& p^n+&q^n+&r^n\\
G(n+1) &=& pp^n +& qq^n +& rr^n\end{matrix}</math>
 
which gives us three linear equations with coefficients over the [[splitting field]] of <math> x^3 -x -1 </math>; by inverting a matrix we can solve for <math>p^n, q^n, r^n</math> and then we can raise them to the ''k''th power and compute the sum.
 
Example [[Magma computer algebra system|magma]] code:
 
P&lt;x&gt; := PolynomialRing(Rationals());
S&lt;t&gt; := SplittingField(x^3-x-1);
P2&lt;y&gt; := PolynomialRing(S);
p,q,r := Explode(&#91;r&#91;1&#93; : r in Roots(y^3-y-1)&#93;);
Mi:=Matrix(&#91;&#91;1/p,1/q,1/r&#93;,&#91;1,1,1&#93;,&#91;p,q,r&#93;&#93;)^(-1);
T&lt;u,v,w&gt; := PolynomialRing(S,3);
v1 := ChangeRing(Mi,T) *Matrix(&#91;&#91;u&#93;,&#91;v&#93;,&#91;w&#93;&#93;);
&#91;p^i*v1&#91;1,1&#93;^3 + q^i*v1&#91;2,1&#93;^3 + r^i*v1&#91;3,1&#93;^3 : i in &#91;-1..1&#93;&#93;;
 
with the result that, if we have <math>u = G(n-1), v = G(n), w = G(n+1)</math>, then
:<math>
 
\begin{matrix}
23G(2n-1) &=& 4u^2 + 3v^2 + 9w^2 + 18uv - 12uw - 4vw \\
23G(2n) &=& - 6u^2 + 7v^2 - 2w^2 - 4uv + 18uw + 6vw\\
23G(2n+1) &=& 9u^2 + v^2 + 3w^2 + 6uv - 4uw + 14vw \\
23G(3n-1)& = &\left(-4u^3 + 2v^3 -w^3 + 9(uv^2+vw^2+wu^2) + 3v^2w+6uvw\right)\\
23G(3n)& = &\left(3u^3 + 2v^3 + 3w^3 - 3(uv^2 + uw^2 + vw^2 + vu^2) + 6v^2w + 18uvw\right) \\
23G(3n+1)& = &\left(v^3-w^3+6uv^2+9uw^2+6vw^2+9vu^2-3wu^2+6wv^2-6uvw\right) \end{matrix}
</math>
 
The number 23 here arises from the discriminant of the defining polynomial of the sequence.
 
This allows you to compute the nth Perrin number using integer arithmetic in <math>O(\log n)</math> multiplies.
 
== Primes and divisibility ==
 
=== Perrin pseudoprimes ===
 
It has been proven that for all primes ''p'', ''p'' divides ''P''(''p''). However, the converse is not true: for some [[composite number]]s ''n'', ''n'' may still divide ''P''(''n''). If ''n'' has this property, it is called a '''Perrin [[pseudoprime]]'''.
 
The question of the existence of Perrin pseudoprimes was considered by Perrin himself, but it was not known whether they existed until Adams and Shanks (1982) discovered the smallest one, 271441 = 521<sup>2</sup>; the next-smallest is 904631 = 7 x 13 x 9941. There are seventeen of them less than a billion;<ref>{{OEIS|id=A013998}}</ref> Jon Grantham has proved<ref>{{cite journal |author=[[Jon Grantham]] |title=There are infinitely many Perrin pseudoprimes |journal=[[Journal of Number Theory]] |year=2010 |volume=130 |issue=5 |pages=1117–1128 |doi=10.1016/j.jnt.2009.11.008 |url=http://www.pseudoprime.com/pseudo3.pdf}}</ref> that there are infinitely many Perrin pseudoprimes.
 
=== Perrin primes ===
 
A '''Perrin prime''' is a Perrin number that is [[prime number|prime]].  The first few Perrin primes are:
 
:2, 3, 5, 7, 17, 29, 277, 367, 853, 14197, 43721, 1442968193, 792606555396977, 187278659180417234321, 66241160488780141071579864797 {{OEIS|id=A074788}}
 
[[Eric W. Weisstein|E. W. Weisstein]] found a 32,147 digit probable Perrin prime ''P''(263226) in May 2006.
 
==Notes==
{{reflist}}
 
==References==
 
*{{cite journal
| author = Adams, William; Shanks, Daniel
| title = Strong primality tests that are not sufficient
| journal = Mathematics of Computation
| volume = 39
| year = 1982
| issue = 159
| pages = 255–300
| id = {{MathSciNet | id = 0658231}}
| doi = 10.2307/2007637
| jstor = 2007637
| publisher = American Mathematical Society}}
 
*{{cite journal
| author = Füredi, Z. | authorlink = Zoltán Füredi
| title = The number of maximal independent sets in connected graphs
| journal = Journal of Graph Theory
| volume = 11
| issue = 4
| year = 1987
| pages = 463–470
| doi = 10.1002/jgt.3190110403}}
 
* {{cite isbn | 0201038048}}
 
*{{cite journal
| author = Lucas, E.
| authorlink = Édouard Lucas
| title = Théorie des fonctions numériques simplement périodiques
| journal = American Journal of Mathematics
| volume = 1
| pages = 197–240
| year = 1878
| doi = 10.2307/2369311
| jstor = 2369311
| issue = 3
| publisher = The Johns Hopkins University Press}}
 
*{{cite journal
| author = Perrin, R.
| title = Query 1484
| journal = [[L'Intermédiaire des Mathématiciens]]
| volume = 6
| pages = 76
| year = 1899}}
 
==External links==
*[http://www.ai.univie.ac.at/perrin.html Zentrum für Hirnforschung Institut für Medizinische Kybernetik und Artificial Intelligence]
*[http://www.mathpages.com/home/kmath127/kmath127.htm MathPages - Lucas Pseudoprimes]
*[http://www.mathpages.com/home/kmath345/kmath345.htm MathPages - Perrin's Sequence]
*[http://oeis.org/A225876 Perrin-like sequence]
 
{{Prime number classes}}
{{Classes of natural numbers}}
 
[[Category:Integer sequences]]
[[Category:Recurrence relations]]

Latest revision as of 12:53, 25 October 2014

I'm Susanna and I live in a seaside city in northern United Kingdom, Corley Ash. I'm 34 and I'm will soon finish my study at Engineering.


http://brokerltd.com - CPM

Also visit my blog post ... cpanetwork