HomeHome Intuitionistic Logic Explorer
Theorem List (p. 123 of 142)
< Previous  Next >
Browser slow? Try the
Unicode version.

Mirrors  >  Metamath Home Page  >  ILE Home Page  >  Theorem List Contents  >  Recent Proofs       This page: Page List

Theorem List for Intuitionistic Logic Explorer - 12201-12300   *Has distinct variable group(s)
TypeLabelDescription
Statement
 
5.2.6  Arithmetic modulo a prime number
 
Theoremmodprm1div 12201 A prime number divides an integer minus 1 iff the integer modulo the prime number is 1. (Contributed by Alexander van der Vekens, 17-May-2018.) (Proof shortened by AV, 30-May-2023.)
 |-  ( ( P  e.  Prime  /\  A  e.  ZZ )  ->  ( ( A 
 mod  P )  =  1  <->  P  ||  ( A  -  1 ) ) )
 
Theoremm1dvdsndvds 12202 If an integer minus 1 is divisible by a prime number, the integer itself is not divisible by this prime number. (Contributed by Alexander van der Vekens, 30-Aug-2018.)
 |-  ( ( P  e.  Prime  /\  A  e.  ZZ )  ->  ( P  ||  ( A  -  1
 )  ->  -.  P  ||  A ) )
 
Theoremmodprminv 12203 Show an explicit expression for the modular inverse of  A  mod  P. This is an application of prmdiv 12189. (Contributed by Alexander van der Vekens, 15-May-2018.)
 |-  R  =  ( ( A ^ ( P  -  2 ) ) 
 mod  P )   =>    |-  ( ( P  e.  Prime  /\  A  e.  ZZ  /\ 
 -.  P  ||  A )  ->  ( R  e.  ( 1 ... ( P  -  1 ) ) 
 /\  ( ( A  x.  R )  mod  P )  =  1 ) )
 
Theoremmodprminveq 12204 The modular inverse of  A  mod  P is unique. (Contributed by Alexander van der Vekens, 17-May-2018.)
 |-  R  =  ( ( A ^ ( P  -  2 ) ) 
 mod  P )   =>    |-  ( ( P  e.  Prime  /\  A  e.  ZZ  /\ 
 -.  P  ||  A )  ->  ( ( S  e.  ( 0 ... ( P  -  1
 ) )  /\  (
 ( A  x.  S )  mod  P )  =  1 )  <->  S  =  R ) )
 
Theoremvfermltl 12205 Variant of Fermat's little theorem if  A is not a multiple of  P, see theorem 5.18 in [ApostolNT] p. 113. (Contributed by AV, 21-Aug-2020.) (Proof shortened by AV, 5-Sep-2020.)
 |-  ( ( P  e.  Prime  /\  A  e.  ZZ  /\ 
 -.  P  ||  A )  ->  ( ( A ^ ( P  -  1 ) )  mod  P )  =  1 )
 
Theorempowm2modprm 12206 If an integer minus 1 is divisible by a prime number, then the integer to the power of the prime number minus 2 is 1 modulo the prime number. (Contributed by Alexander van der Vekens, 30-Aug-2018.)
 |-  ( ( P  e.  Prime  /\  A  e.  ZZ )  ->  ( P  ||  ( A  -  1
 )  ->  ( ( A ^ ( P  -  2 ) )  mod  P )  =  1 ) )
 
Theoremreumodprminv 12207* For any prime number and for any positive integer less than this prime number, there is a unique modular inverse of this positive integer. (Contributed by Alexander van der Vekens, 12-May-2018.)
 |-  ( ( P  e.  Prime  /\  N  e.  (
 1..^ P ) ) 
 ->  E! i  e.  (
 1 ... ( P  -  1 ) ) ( ( N  x.  i
 )  mod  P )  =  1 )
 
Theoremmodprm0 12208* For two positive integers less than a given prime number there is always a nonnegative integer (less than the given prime number) so that the sum of one of the two positive integers and the other of the positive integers multiplied by the nonnegative integer is 0 ( modulo the given prime number). (Contributed by Alexander van der Vekens, 17-May-2018.)
 |-  ( ( P  e.  Prime  /\  N  e.  (
 1..^ P )  /\  I  e.  ( 1..^ P ) )  ->  E. j  e.  (
 0..^ P ) ( ( I  +  (
 j  x.  N ) )  mod  P )  =  0 )
 
Theoremnnnn0modprm0 12209* For a positive integer and a nonnegative integer both less than a given prime number there is always a second nonnegative integer (less than the given prime number) so that the sum of this second nonnegative integer multiplied with the positive integer and the first nonnegative integer is 0 ( modulo the given prime number). (Contributed by Alexander van der Vekens, 8-Nov-2018.)
 |-  ( ( P  e.  Prime  /\  N  e.  (
 1..^ P )  /\  I  e.  ( 0..^ P ) )  ->  E. j  e.  (
 0..^ P ) ( ( I  +  (
 j  x.  N ) )  mod  P )  =  0 )
 
Theoremmodprmn0modprm0 12210* For an integer not being 0 modulo a given prime number and a nonnegative integer less than the prime number, there is always a second nonnegative integer (less than the given prime number) so that the sum of this second nonnegative integer multiplied with the integer and the first nonnegative integer is 0 ( modulo the given prime number). (Contributed by Alexander van der Vekens, 10-Nov-2018.)
 |-  ( ( P  e.  Prime  /\  N  e.  ZZ  /\  ( N  mod  P )  =/=  0 )  ->  ( I  e.  (
 0..^ P )  ->  E. j  e.  (
 0..^ P ) ( ( I  +  (
 j  x.  N ) )  mod  P )  =  0 ) )
 
5.2.7  Pythagorean Triples
 
Theoremcoprimeprodsq 12211 If three numbers are coprime, and the square of one is the product of the other two, then there is a formula for the other two in terms of  gcd and square. (Contributed by Scott Fenton, 2-Apr-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  ( ( ( A  e.  NN0  /\  B  e.  ZZ  /\  C  e.  NN0 )  /\  ( ( A 
 gcd  B )  gcd  C )  =  1 )  ->  ( ( C ^
 2 )  =  ( A  x.  B ) 
 ->  A  =  ( ( A  gcd  C ) ^ 2 ) ) )
 
Theoremcoprimeprodsq2 12212 If three numbers are coprime, and the square of one is the product of the other two, then there is a formula for the other two in terms of  gcd and square. (Contributed by Scott Fenton, 17-Apr-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  ( ( ( A  e.  ZZ  /\  B  e.  NN0  /\  C  e.  NN0 )  /\  ( ( A  gcd  B ) 
 gcd  C )  =  1 )  ->  ( ( C ^ 2 )  =  ( A  x.  B )  ->  B  =  ( ( B  gcd  C ) ^ 2 ) ) )
 
Theoremoddprm 12213 A prime not equal to  2 is odd. (Contributed by Mario Carneiro, 4-Feb-2015.) (Proof shortened by AV, 10-Jul-2022.)
 |-  ( N  e.  ( Prime  \  { 2 } )  ->  ( ( N  -  1 )  / 
 2 )  e.  NN )
 
Theoremnnoddn2prm 12214 A prime not equal to  2 is an odd positive integer. (Contributed by AV, 28-Jun-2021.)
 |-  ( N  e.  ( Prime  \  { 2 } )  ->  ( N  e.  NN  /\  -.  2  ||  N ) )
 
Theoremoddn2prm 12215 A prime not equal to  2 is odd. (Contributed by AV, 28-Jun-2021.)
 |-  ( N  e.  ( Prime  \  { 2 } )  ->  -.  2  ||  N )
 
Theoremnnoddn2prmb 12216 A number is a prime number not equal to  2 iff it is an odd prime number. Conversion theorem for two representations of odd primes. (Contributed by AV, 14-Jul-2021.)
 |-  ( N  e.  ( Prime  \  { 2 } )  <->  ( N  e.  Prime  /\  -.  2  ||  N ) )
 
Theoremprm23lt5 12217 A prime less than 5 is either 2 or 3. (Contributed by AV, 5-Jul-2021.)
 |-  ( ( P  e.  Prime  /\  P  <  5
 )  ->  ( P  =  2  \/  P  =  3 ) )
 
Theoremprm23ge5 12218 A prime is either 2 or 3 or greater than or equal to 5. (Contributed by AV, 5-Jul-2021.)
 |-  ( P  e.  Prime  ->  ( P  =  2  \/  P  =  3  \/  P  e.  ( ZZ>= `  5 ) ) )
 
Theorempythagtriplem1 12219* Lemma for pythagtrip 12237. Prove a weaker version of one direction of the theorem. (Contributed by Scott Fenton, 28-Mar-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  ( E. n  e. 
 NN  E. m  e.  NN  E. k  e.  NN  ( A  =  ( k  x.  ( ( m ^
 2 )  -  ( n ^ 2 ) ) )  /\  B  =  ( k  x.  (
 2  x.  ( m  x.  n ) ) )  /\  C  =  ( k  x.  (
 ( m ^ 2
 )  +  ( n ^ 2 ) ) ) )  ->  (
 ( A ^ 2
 )  +  ( B ^ 2 ) )  =  ( C ^
 2 ) )
 
Theorempythagtriplem2 12220* Lemma for pythagtrip 12237. Prove the full version of one direction of the theorem. (Contributed by Scott Fenton, 28-Mar-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  ( ( A  e.  NN  /\  B  e.  NN )  ->  ( E. n  e.  NN  E. m  e. 
 NN  E. k  e.  NN  ( { A ,  B }  =  { (
 k  x.  ( ( m ^ 2 )  -  ( n ^
 2 ) ) ) ,  ( k  x.  ( 2  x.  ( m  x.  n ) ) ) }  /\  C  =  ( k  x.  (
 ( m ^ 2
 )  +  ( n ^ 2 ) ) ) )  ->  (
 ( A ^ 2
 )  +  ( B ^ 2 ) )  =  ( C ^
 2 ) ) )
 
Theorempythagtriplem3 12221 Lemma for pythagtrip 12237. Show that  C and 
B are relatively prime under some conditions. (Contributed by Scott Fenton, 8-Apr-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  ( ( ( A  e.  NN  /\  B  e.  NN  /\  C  e.  NN )  /\  ( ( A ^ 2 )  +  ( B ^
 2 ) )  =  ( C ^ 2
 )  /\  ( ( A  gcd  B )  =  1  /\  -.  2  ||  A ) )  ->  ( B  gcd  C )  =  1 )
 
Theorempythagtriplem4 12222 Lemma for pythagtrip 12237. Show that  C  -  B and  C  +  B are relatively prime. (Contributed by Scott Fenton, 12-Apr-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  ( ( ( A  e.  NN  /\  B  e.  NN  /\  C  e.  NN )  /\  ( ( A ^ 2 )  +  ( B ^
 2 ) )  =  ( C ^ 2
 )  /\  ( ( A  gcd  B )  =  1  /\  -.  2  ||  A ) )  ->  ( ( C  -  B )  gcd  ( C  +  B ) )  =  1 )
 
Theorempythagtriplem10 12223 Lemma for pythagtrip 12237. Show that  C  -  B is positive. (Contributed by Scott Fenton, 17-Apr-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  ( ( ( A  e.  NN  /\  B  e.  NN  /\  C  e.  NN )  /\  ( ( A ^ 2 )  +  ( B ^
 2 ) )  =  ( C ^ 2
 ) )  ->  0  <  ( C  -  B ) )
 
Theorempythagtriplem6 12224 Lemma for pythagtrip 12237. Calculate  ( sqr `  ( C  -  B ) ). (Contributed by Scott Fenton, 18-Apr-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  ( ( ( A  e.  NN  /\  B  e.  NN  /\  C  e.  NN )  /\  ( ( A ^ 2 )  +  ( B ^
 2 ) )  =  ( C ^ 2
 )  /\  ( ( A  gcd  B )  =  1  /\  -.  2  ||  A ) )  ->  ( sqr `  ( C  -  B ) )  =  ( ( C  -  B )  gcd  A ) )
 
Theorempythagtriplem7 12225 Lemma for pythagtrip 12237. Calculate  ( sqr `  ( C  +  B ) ). (Contributed by Scott Fenton, 18-Apr-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  ( ( ( A  e.  NN  /\  B  e.  NN  /\  C  e.  NN )  /\  ( ( A ^ 2 )  +  ( B ^
 2 ) )  =  ( C ^ 2
 )  /\  ( ( A  gcd  B )  =  1  /\  -.  2  ||  A ) )  ->  ( sqr `  ( C  +  B ) )  =  ( ( C  +  B )  gcd  A ) )
 
Theorempythagtriplem8 12226 Lemma for pythagtrip 12237. Show that  ( sqr `  ( C  -  B ) ) is a positive integer. (Contributed by Scott Fenton, 17-Apr-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  ( ( ( A  e.  NN  /\  B  e.  NN  /\  C  e.  NN )  /\  ( ( A ^ 2 )  +  ( B ^
 2 ) )  =  ( C ^ 2
 )  /\  ( ( A  gcd  B )  =  1  /\  -.  2  ||  A ) )  ->  ( sqr `  ( C  -  B ) )  e. 
 NN )
 
Theorempythagtriplem9 12227 Lemma for pythagtrip 12237. Show that  ( sqr `  ( C  +  B ) ) is a positive integer. (Contributed by Scott Fenton, 17-Apr-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  ( ( ( A  e.  NN  /\  B  e.  NN  /\  C  e.  NN )  /\  ( ( A ^ 2 )  +  ( B ^
 2 ) )  =  ( C ^ 2
 )  /\  ( ( A  gcd  B )  =  1  /\  -.  2  ||  A ) )  ->  ( sqr `  ( C  +  B ) )  e. 
 NN )
 
Theorempythagtriplem11 12228 Lemma for pythagtrip 12237. Show that  M (which will eventually be closely related to the  m in the final statement) is a natural. (Contributed by Scott Fenton, 17-Apr-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  M  =  ( ( ( sqr `  ( C  +  B )
 )  +  ( sqr `  ( C  -  B ) ) )  / 
 2 )   =>    |-  ( ( ( A  e.  NN  /\  B  e.  NN  /\  C  e.  NN )  /\  ( ( A ^ 2 )  +  ( B ^
 2 ) )  =  ( C ^ 2
 )  /\  ( ( A  gcd  B )  =  1  /\  -.  2  ||  A ) )  ->  M  e.  NN )
 
Theorempythagtriplem12 12229 Lemma for pythagtrip 12237. Calculate the square of  M. (Contributed by Scott Fenton, 17-Apr-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  M  =  ( ( ( sqr `  ( C  +  B )
 )  +  ( sqr `  ( C  -  B ) ) )  / 
 2 )   =>    |-  ( ( ( A  e.  NN  /\  B  e.  NN  /\  C  e.  NN )  /\  ( ( A ^ 2 )  +  ( B ^
 2 ) )  =  ( C ^ 2
 )  /\  ( ( A  gcd  B )  =  1  /\  -.  2  ||  A ) )  ->  ( M ^ 2 )  =  ( ( C  +  A )  / 
 2 ) )
 
Theorempythagtriplem13 12230 Lemma for pythagtrip 12237. Show that  N (which will eventually be closely related to the  n in the final statement) is a natural. (Contributed by Scott Fenton, 17-Apr-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  N  =  ( ( ( sqr `  ( C  +  B )
 )  -  ( sqr `  ( C  -  B ) ) )  / 
 2 )   =>    |-  ( ( ( A  e.  NN  /\  B  e.  NN  /\  C  e.  NN )  /\  ( ( A ^ 2 )  +  ( B ^
 2 ) )  =  ( C ^ 2
 )  /\  ( ( A  gcd  B )  =  1  /\  -.  2  ||  A ) )  ->  N  e.  NN )
 
Theorempythagtriplem14 12231 Lemma for pythagtrip 12237. Calculate the square of  N. (Contributed by Scott Fenton, 17-Apr-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  N  =  ( ( ( sqr `  ( C  +  B )
 )  -  ( sqr `  ( C  -  B ) ) )  / 
 2 )   =>    |-  ( ( ( A  e.  NN  /\  B  e.  NN  /\  C  e.  NN )  /\  ( ( A ^ 2 )  +  ( B ^
 2 ) )  =  ( C ^ 2
 )  /\  ( ( A  gcd  B )  =  1  /\  -.  2  ||  A ) )  ->  ( N ^ 2 )  =  ( ( C  -  A )  / 
 2 ) )
 
Theorempythagtriplem15 12232 Lemma for pythagtrip 12237. Show the relationship between  M,  N, and  A. (Contributed by Scott Fenton, 17-Apr-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  M  =  ( ( ( sqr `  ( C  +  B )
 )  +  ( sqr `  ( C  -  B ) ) )  / 
 2 )   &    |-  N  =  ( ( ( sqr `  ( C  +  B )
 )  -  ( sqr `  ( C  -  B ) ) )  / 
 2 )   =>    |-  ( ( ( A  e.  NN  /\  B  e.  NN  /\  C  e.  NN )  /\  ( ( A ^ 2 )  +  ( B ^
 2 ) )  =  ( C ^ 2
 )  /\  ( ( A  gcd  B )  =  1  /\  -.  2  ||  A ) )  ->  A  =  ( ( M ^ 2 )  -  ( N ^ 2 ) ) )
 
Theorempythagtriplem16 12233 Lemma for pythagtrip 12237. Show the relationship between  M,  N, and  B. (Contributed by Scott Fenton, 17-Apr-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  M  =  ( ( ( sqr `  ( C  +  B )
 )  +  ( sqr `  ( C  -  B ) ) )  / 
 2 )   &    |-  N  =  ( ( ( sqr `  ( C  +  B )
 )  -  ( sqr `  ( C  -  B ) ) )  / 
 2 )   =>    |-  ( ( ( A  e.  NN  /\  B  e.  NN  /\  C  e.  NN )  /\  ( ( A ^ 2 )  +  ( B ^
 2 ) )  =  ( C ^ 2
 )  /\  ( ( A  gcd  B )  =  1  /\  -.  2  ||  A ) )  ->  B  =  ( 2  x.  ( M  x.  N ) ) )
 
Theorempythagtriplem17 12234 Lemma for pythagtrip 12237. Show the relationship between  M,  N, and  C. (Contributed by Scott Fenton, 17-Apr-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  M  =  ( ( ( sqr `  ( C  +  B )
 )  +  ( sqr `  ( C  -  B ) ) )  / 
 2 )   &    |-  N  =  ( ( ( sqr `  ( C  +  B )
 )  -  ( sqr `  ( C  -  B ) ) )  / 
 2 )   =>    |-  ( ( ( A  e.  NN  /\  B  e.  NN  /\  C  e.  NN )  /\  ( ( A ^ 2 )  +  ( B ^
 2 ) )  =  ( C ^ 2
 )  /\  ( ( A  gcd  B )  =  1  /\  -.  2  ||  A ) )  ->  C  =  ( ( M ^ 2 )  +  ( N ^ 2 ) ) )
 
Theorempythagtriplem18 12235* Lemma for pythagtrip 12237. Wrap the previous  M and  N up in quantifiers. (Contributed by Scott Fenton, 18-Apr-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  ( ( ( A  e.  NN  /\  B  e.  NN  /\  C  e.  NN )  /\  ( ( A ^ 2 )  +  ( B ^
 2 ) )  =  ( C ^ 2
 )  /\  ( ( A  gcd  B )  =  1  /\  -.  2  ||  A ) )  ->  E. n  e.  NN  E. m  e.  NN  ( A  =  ( ( m ^ 2 )  -  ( n ^ 2 ) )  /\  B  =  ( 2  x.  ( m  x.  n ) ) 
 /\  C  =  ( ( m ^ 2
 )  +  ( n ^ 2 ) ) ) )
 
Theorempythagtriplem19 12236* Lemma for pythagtrip 12237. Introduce  k and remove the relative primality requirement. (Contributed by Scott Fenton, 18-Apr-2014.) (Revised by Mario Carneiro, 19-Apr-2014.)
 |-  ( ( ( A  e.  NN  /\  B  e.  NN  /\  C  e.  NN )  /\  ( ( A ^ 2 )  +  ( B ^
 2 ) )  =  ( C ^ 2
 )  /\  -.  2  ||  ( A  /  ( A  gcd  B ) ) )  ->  E. n  e.  NN  E. m  e. 
 NN  E. k  e.  NN  ( A  =  (
 k  x.  ( ( m ^ 2 )  -  ( n ^
 2 ) ) ) 
 /\  B  =  ( k  x.  ( 2  x.  ( m  x.  n ) ) ) 
 /\  C  =  ( k  x.  ( ( m ^ 2 )  +  ( n ^
 2 ) ) ) ) )
 
Theorempythagtrip 12237* Parameterize the Pythagorean triples. If  A,  B, and  C are naturals, then they obey the Pythagorean triple formula iff they are parameterized by three naturals. This proof follows the Isabelle proof at http://afp.sourceforge.net/entries/Fermat3_4.shtml. This is Metamath 100 proof #23. (Contributed by Scott Fenton, 19-Apr-2014.)
 |-  ( ( A  e.  NN  /\  B  e.  NN  /\  C  e.  NN )  ->  ( ( ( A ^ 2 )  +  ( B ^ 2 ) )  =  ( C ^ 2 )  <->  E. n  e.  NN  E. m  e.  NN  E. k  e.  NN  ( { A ,  B }  =  { ( k  x.  ( ( m ^
 2 )  -  ( n ^ 2 ) ) ) ,  ( k  x.  ( 2  x.  ( m  x.  n ) ) ) }  /\  C  =  ( k  x.  ( ( m ^ 2 )  +  ( n ^ 2 ) ) ) ) ) )
 
5.2.8  The prime count function
 
Syntaxcpc 12238 Extend class notation with the prime count function.
 class  pCnt
 
Definitiondf-pc 12239* Define the prime count function, which returns the largest exponent of a given prime (or other positive integer) that divides the number. For rational numbers, it returns negative values according to the power of a prime in the denominator. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |- 
 pCnt  =  ( p  e.  Prime ,  r  e. 
 QQ  |->  if ( r  =  0 , +oo ,  ( iota z E. x  e.  ZZ  E. y  e. 
 NN  ( r  =  ( x  /  y
 )  /\  z  =  ( sup ( { n  e.  NN0  |  ( p ^ n )  ||  x } ,  RR ,  <  )  -  sup ( { n  e.  NN0  |  ( p ^ n ) 
 ||  y } ,  RR ,  <  ) ) ) ) ) )
 
Theorempclem0 12240* Lemma for the prime power pre-function's properties. (Contributed by Mario Carneiro, 23-Feb-2014.) (Revised by Jim Kingdon, 7-Oct-2024.)
 |-  A  =  { n  e.  NN0  |  ( P ^ n )  ||  N }   =>    |-  ( ( P  e.  ( ZZ>= `  2 )  /\  ( N  e.  ZZ  /\  N  =/=  0 ) )  ->  0  e.  A )
 
Theorempclemub 12241* Lemma for the prime power pre-function's properties. (Contributed by Mario Carneiro, 23-Feb-2014.) (Revised by Jim Kingdon, 7-Oct-2024.)
 |-  A  =  { n  e.  NN0  |  ( P ^ n )  ||  N }   =>    |-  ( ( P  e.  ( ZZ>= `  2 )  /\  ( N  e.  ZZ  /\  N  =/=  0 ) )  ->  E. x  e.  ZZ  A. y  e.  A  y  <_  x )
 
Theorempclemdc 12242* Lemma for the prime power pre-function's properties. (Contributed by Jim Kingdon, 8-Oct-2024.)
 |-  A  =  { n  e.  NN0  |  ( P ^ n )  ||  N }   =>    |-  ( ( P  e.  ( ZZ>= `  2 )  /\  ( N  e.  ZZ  /\  N  =/=  0 ) )  ->  A. x  e. 
 ZZ DECID  x  e.  A )
 
Theorempcprecl 12243* Closure of the prime power pre-function. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |-  A  =  { n  e.  NN0  |  ( P ^ n )  ||  N }   &    |-  S  =  sup ( A ,  RR ,  <  )   =>    |-  ( ( P  e.  ( ZZ>= `  2 )  /\  ( N  e.  ZZ  /\  N  =/=  0 ) )  ->  ( S  e.  NN0  /\  ( P ^ S )  ||  N ) )
 
Theorempcprendvds 12244* Non-divisibility property of the prime power pre-function. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |-  A  =  { n  e.  NN0  |  ( P ^ n )  ||  N }   &    |-  S  =  sup ( A ,  RR ,  <  )   =>    |-  ( ( P  e.  ( ZZ>= `  2 )  /\  ( N  e.  ZZ  /\  N  =/=  0 ) )  ->  -.  ( P ^ ( S  +  1 ) )  ||  N )
 
Theorempcprendvds2 12245* Non-divisibility property of the prime power pre-function. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |-  A  =  { n  e.  NN0  |  ( P ^ n )  ||  N }   &    |-  S  =  sup ( A ,  RR ,  <  )   =>    |-  ( ( P  e.  ( ZZ>= `  2 )  /\  ( N  e.  ZZ  /\  N  =/=  0 ) )  ->  -.  P  ||  ( N  /  ( P ^ S ) ) )
 
Theorempcpre1 12246* Value of the prime power pre-function at 1. (Contributed by Mario Carneiro, 23-Feb-2014.) (Revised by Mario Carneiro, 26-Apr-2016.)
 |-  A  =  { n  e.  NN0  |  ( P ^ n )  ||  N }   &    |-  S  =  sup ( A ,  RR ,  <  )   =>    |-  ( ( P  e.  ( ZZ>= `  2 )  /\  N  =  1 ) 
 ->  S  =  0 )
 
Theorempcpremul 12247* Multiplicative property of the prime count pre-function. Note that the primality of  P is essential for this property;  ( 4  pCnt  2
)  =  0 but  ( 4  pCnt 
( 2  x.  2 ) )  =  1  =/=  2  x.  (
4  pCnt  2 )  =  0. Since this is needed to show uniqueness for the real prime count function (over  QQ), we don't bother to define it off the primes. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |-  S  =  sup ( { n  e.  NN0  |  ( P ^ n ) 
 ||  M } ,  RR ,  <  )   &    |-  T  =  sup ( { n  e.  NN0  |  ( P ^ n )  ||  N } ,  RR ,  <  )   &    |-  U  =  sup ( { n  e.  NN0  |  ( P ^ n )  ||  ( M  x.  N ) } ,  RR ,  <  )   =>    |-  ( ( P  e.  Prime  /\  ( M  e.  ZZ  /\  M  =/=  0 )  /\  ( N  e.  ZZ  /\  N  =/=  0 ) )  ->  ( S  +  T )  =  U )
 
Theorempceulem 12248* Lemma for pceu 12249. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |-  S  =  sup ( { n  e.  NN0  |  ( P ^ n ) 
 ||  x } ,  RR ,  <  )   &    |-  T  =  sup ( { n  e.  NN0  |  ( P ^ n )  ||  y } ,  RR ,  <  )   &    |-  U  =  sup ( { n  e.  NN0  |  ( P ^ n )  ||  s } ,  RR ,  <  )   &    |-  V  =  sup ( { n  e.  NN0  |  ( P ^ n )  ||  t } ,  RR ,  <  )   &    |-  ( ph  ->  P  e.  Prime )   &    |-  ( ph  ->  N  =/=  0 )   &    |-  ( ph  ->  ( x  e. 
 ZZ  /\  y  e.  NN ) )   &    |-  ( ph  ->  N  =  ( x  /  y ) )   &    |-  ( ph  ->  ( s  e. 
 ZZ  /\  t  e.  NN ) )   &    |-  ( ph  ->  N  =  ( s  /  t ) )   =>    |-  ( ph  ->  ( S  -  T )  =  ( U  -  V ) )
 
Theorempceu 12249* Uniqueness for the prime power function. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |-  S  =  sup ( { n  e.  NN0  |  ( P ^ n ) 
 ||  x } ,  RR ,  <  )   &    |-  T  =  sup ( { n  e.  NN0  |  ( P ^ n )  ||  y } ,  RR ,  <  )   =>    |-  ( ( P  e.  Prime  /\  ( N  e.  QQ  /\  N  =/=  0
 ) )  ->  E! z E. x  e.  ZZ  E. y  e.  NN  ( N  =  ( x  /  y )  /\  z  =  ( S  -  T ) ) )
 
Theorempcval 12250* The value of the prime power function. (Contributed by Mario Carneiro, 23-Feb-2014.) (Revised by Mario Carneiro, 3-Oct-2014.)
 |-  S  =  sup ( { n  e.  NN0  |  ( P ^ n ) 
 ||  x } ,  RR ,  <  )   &    |-  T  =  sup ( { n  e.  NN0  |  ( P ^ n )  ||  y } ,  RR ,  <  )   =>    |-  ( ( P  e.  Prime  /\  ( N  e.  QQ  /\  N  =/=  0
 ) )  ->  ( P  pCnt  N )  =  ( iota z E. x  e.  ZZ  E. y  e.  NN  ( N  =  ( x  /  y
 )  /\  z  =  ( S  -  T ) ) ) )
 
Theorempczpre 12251* Connect the prime count pre-function to the actual prime count function, when restricted to the integers. (Contributed by Mario Carneiro, 23-Feb-2014.) (Proof shortened by Mario Carneiro, 24-Dec-2016.)
 |-  S  =  sup ( { n  e.  NN0  |  ( P ^ n ) 
 ||  N } ,  RR ,  <  )   =>    |-  ( ( P  e.  Prime  /\  ( N  e.  ZZ  /\  N  =/=  0 ) )  ->  ( P  pCnt  N )  =  S )
 
Theorempczcl 12252 Closure of the prime power function. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |-  ( ( P  e.  Prime  /\  ( N  e.  ZZ  /\  N  =/=  0
 ) )  ->  ( P  pCnt  N )  e. 
 NN0 )
 
Theorempccl 12253 Closure of the prime power function. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |-  ( ( P  e.  Prime  /\  N  e.  NN )  ->  ( P  pCnt  N )  e.  NN0 )
 
Theorempccld 12254 Closure of the prime power function. (Contributed by Mario Carneiro, 29-May-2016.)
 |-  ( ph  ->  P  e.  Prime )   &    |-  ( ph  ->  N  e.  NN )   =>    |-  ( ph  ->  ( P  pCnt  N )  e.  NN0 )
 
Theorempcmul 12255 Multiplication property of the prime power function. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |-  ( ( P  e.  Prime  /\  ( A  e.  ZZ  /\  A  =/=  0
 )  /\  ( B  e.  ZZ  /\  B  =/=  0 ) )  ->  ( P  pCnt  ( A  x.  B ) )  =  ( ( P 
 pCnt  A )  +  ( P  pCnt  B ) ) )
 
Theorempcdiv 12256 Division property of the prime power function. (Contributed by Mario Carneiro, 1-Mar-2014.)
 |-  ( ( P  e.  Prime  /\  ( A  e.  ZZ  /\  A  =/=  0
 )  /\  B  e.  NN )  ->  ( P 
 pCnt  ( A  /  B ) )  =  (
 ( P  pCnt  A )  -  ( P  pCnt  B ) ) )
 
Theorempcqmul 12257 Multiplication property of the prime power function. (Contributed by Mario Carneiro, 9-Sep-2014.)
 |-  ( ( P  e.  Prime  /\  ( A  e.  QQ  /\  A  =/=  0
 )  /\  ( B  e.  QQ  /\  B  =/=  0 ) )  ->  ( P  pCnt  ( A  x.  B ) )  =  ( ( P 
 pCnt  A )  +  ( P  pCnt  B ) ) )
 
Theorempc0 12258 The value of the prime power function at zero. (Contributed by Mario Carneiro, 3-Oct-2014.)
 |-  ( P  e.  Prime  ->  ( P  pCnt  0 )  = +oo )
 
Theorempc1 12259 Value of the prime count function at 1. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |-  ( P  e.  Prime  ->  ( P  pCnt  1 )  =  0 )
 
Theorempcqcl 12260 Closure of the general prime count function. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |-  ( ( P  e.  Prime  /\  ( N  e.  QQ  /\  N  =/=  0
 ) )  ->  ( P  pCnt  N )  e. 
 ZZ )
 
Theorempcqdiv 12261 Division property of the prime power function. (Contributed by Mario Carneiro, 10-Aug-2015.)
 |-  ( ( P  e.  Prime  /\  ( A  e.  QQ  /\  A  =/=  0
 )  /\  ( B  e.  QQ  /\  B  =/=  0 ) )  ->  ( P  pCnt  ( A 
 /  B ) )  =  ( ( P 
 pCnt  A )  -  ( P  pCnt  B ) ) )
 
Theorempcrec 12262 Prime power of a reciprocal. (Contributed by Mario Carneiro, 10-Aug-2015.)
 |-  ( ( P  e.  Prime  /\  ( A  e.  QQ  /\  A  =/=  0
 ) )  ->  ( P  pCnt  ( 1  /  A ) )  =  -u ( P  pCnt  A ) )
 
Theorempcexp 12263 Prime power of an exponential. (Contributed by Mario Carneiro, 10-Aug-2015.)
 |-  ( ( P  e.  Prime  /\  ( A  e.  QQ  /\  A  =/=  0
 )  /\  N  e.  ZZ )  ->  ( P 
 pCnt  ( A ^ N ) )  =  ( N  x.  ( P  pCnt  A ) ) )
 
Theorempcxnn0cl 12264 Extended nonnegative integer closure of the general prime count function. (Contributed by Jim Kingdon, 13-Oct-2024.)
 |-  ( ( P  e.  Prime  /\  N  e.  ZZ )  ->  ( P  pCnt  N )  e. NN0* )
 
Theorempcxcl 12265 Extended real closure of the general prime count function. (Contributed by Mario Carneiro, 3-Oct-2014.)
 |-  ( ( P  e.  Prime  /\  N  e.  QQ )  ->  ( P  pCnt  N )  e.  RR* )
 
Theorempcge0 12266 The prime count of an integer is greater than or equal to zero. (Contributed by Mario Carneiro, 3-Oct-2014.)
 |-  ( ( P  e.  Prime  /\  N  e.  ZZ )  ->  0  <_  ( P  pCnt  N ) )
 
Theorempczdvds 12267 Defining property of the prime count function. (Contributed by Mario Carneiro, 9-Sep-2014.)
 |-  ( ( P  e.  Prime  /\  ( N  e.  ZZ  /\  N  =/=  0
 ) )  ->  ( P ^ ( P  pCnt  N ) )  ||  N )
 
Theorempcdvds 12268 Defining property of the prime count function. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |-  ( ( P  e.  Prime  /\  N  e.  NN )  ->  ( P ^
 ( P  pCnt  N ) )  ||  N )
 
Theorempczndvds 12269 Defining property of the prime count function. (Contributed by Mario Carneiro, 3-Oct-2014.)
 |-  ( ( P  e.  Prime  /\  ( N  e.  ZZ  /\  N  =/=  0
 ) )  ->  -.  ( P ^ ( ( P 
 pCnt  N )  +  1 ) )  ||  N )
 
Theorempcndvds 12270 Defining property of the prime count function. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |-  ( ( P  e.  Prime  /\  N  e.  NN )  ->  -.  ( P ^ ( ( P 
 pCnt  N )  +  1 ) )  ||  N )
 
Theorempczndvds2 12271 The remainder after dividing out all factors of  P is not divisible by  P. (Contributed by Mario Carneiro, 9-Sep-2014.)
 |-  ( ( P  e.  Prime  /\  ( N  e.  ZZ  /\  N  =/=  0
 ) )  ->  -.  P  ||  ( N  /  ( P ^ ( P  pCnt  N ) ) ) )
 
Theorempcndvds2 12272 The remainder after dividing out all factors of  P is not divisible by  P. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |-  ( ( P  e.  Prime  /\  N  e.  NN )  ->  -.  P  ||  ( N  /  ( P ^
 ( P  pCnt  N ) ) ) )
 
Theorempcdvdsb 12273  P ^ A divides  N if and only if  A is at most the count of  P. (Contributed by Mario Carneiro, 3-Oct-2014.)
 |-  ( ( P  e.  Prime  /\  N  e.  ZZ  /\  A  e.  NN0 )  ->  ( A  <_  ( P  pCnt  N )  <->  ( P ^ A )  ||  N ) )
 
Theorempcelnn 12274 There are a positive number of powers of a prime  P in  N iff  P divides  N. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |-  ( ( P  e.  Prime  /\  N  e.  NN )  ->  ( ( P 
 pCnt  N )  e.  NN  <->  P  ||  N ) )
 
Theorempceq0 12275 There are zero powers of a prime  P in  N iff  P does not divide  N. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |-  ( ( P  e.  Prime  /\  N  e.  NN )  ->  ( ( P 
 pCnt  N )  =  0  <->  -.  P  ||  N )
 )
 
Theorempcidlem 12276 The prime count of a prime power. (Contributed by Mario Carneiro, 12-Mar-2014.)
 |-  ( ( P  e.  Prime  /\  A  e.  NN0 )  ->  ( P  pCnt  ( P ^ A ) )  =  A )
 
Theorempcid 12277 The prime count of a prime power. (Contributed by Mario Carneiro, 9-Sep-2014.)
 |-  ( ( P  e.  Prime  /\  A  e.  ZZ )  ->  ( P  pCnt  ( P ^ A ) )  =  A )
 
Theorempcneg 12278 The prime count of a negative number. (Contributed by Mario Carneiro, 13-Mar-2014.)
 |-  ( ( P  e.  Prime  /\  A  e.  QQ )  ->  ( P  pCnt  -u A )  =  ( P  pCnt  A )
 )
 
Theorempcabs 12279 The prime count of an absolute value. (Contributed by Mario Carneiro, 13-Mar-2014.)
 |-  ( ( P  e.  Prime  /\  A  e.  QQ )  ->  ( P  pCnt  ( abs `  A )
 )  =  ( P 
 pCnt  A ) )
 
Theorempcdvdstr 12280 The prime count increases under the divisibility relation. (Contributed by Mario Carneiro, 13-Mar-2014.)
 |-  ( ( P  e.  Prime  /\  ( A  e.  ZZ  /\  B  e.  ZZ  /\  A  ||  B )
 )  ->  ( P  pCnt  A )  <_  ( P  pCnt  B ) )
 
Theorempcgcd1 12281 The prime count of a GCD is the minimum of the prime counts of the arguments. (Contributed by Mario Carneiro, 3-Oct-2014.)
 |-  ( ( ( P  e.  Prime  /\  A  e.  ZZ  /\  B  e.  ZZ )  /\  ( P  pCnt  A )  <_  ( P  pCnt  B ) )  ->  ( P  pCnt  ( A 
 gcd  B ) )  =  ( P  pCnt  A ) )
 
Theorempcgcd 12282 The prime count of a GCD is the minimum of the prime counts of the arguments. (Contributed by Mario Carneiro, 3-Oct-2014.)
 |-  ( ( P  e.  Prime  /\  A  e.  ZZ  /\  B  e.  ZZ )  ->  ( P  pCnt  ( A  gcd  B ) )  =  if ( ( P  pCnt  A )  <_  ( P  pCnt  B ) ,  ( P  pCnt  A ) ,  ( P 
 pCnt  B ) ) )
 
Theorempc2dvds 12283* A characterization of divisibility in terms of prime count. (Contributed by Mario Carneiro, 23-Feb-2014.) (Revised by Mario Carneiro, 3-Oct-2014.)
 |-  ( ( A  e.  ZZ  /\  B  e.  ZZ )  ->  ( A  ||  B 
 <-> 
 A. p  e.  Prime  ( p  pCnt  A )  <_  ( p  pCnt  B ) ) )
 
Theorempc11 12284* The prime count function, viewed as a function from  NN to  ( NN  ^m  Prime ), is one-to-one. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |-  ( ( A  e.  NN0  /\  B  e.  NN0 )  ->  ( A  =  B  <->  A. p  e.  Prime  ( p  pCnt  A )  =  ( p  pCnt  B ) ) )
 
Theorempcz 12285* The prime count function can be used as an indicator that a given rational number is an integer. (Contributed by Mario Carneiro, 23-Feb-2014.)
 |-  ( A  e.  QQ  ->  ( A  e.  ZZ  <->  A. p  e.  Prime  0  <_  ( p  pCnt  A ) ) )
 
Theorempcprmpw2 12286* Self-referential expression for a prime power. (Contributed by Mario Carneiro, 16-Jan-2015.)
 |-  ( ( P  e.  Prime  /\  A  e.  NN )  ->  ( E. n  e.  NN0  A  ||  ( P ^ n )  <->  A  =  ( P ^ ( P  pCnt  A ) ) ) )
 
Theorempcprmpw 12287* Self-referential expression for a prime power. (Contributed by Mario Carneiro, 16-Jan-2015.)
 |-  ( ( P  e.  Prime  /\  A  e.  NN )  ->  ( E. n  e.  NN0  A  =  ( P ^ n )  <->  A  =  ( P ^ ( P  pCnt  A ) ) ) )
 
Theoremdvdsprmpweq 12288* If a positive integer divides a prime power, it is a prime power. (Contributed by AV, 25-Jul-2021.)
 |-  ( ( P  e.  Prime  /\  A  e.  NN  /\  N  e.  NN0 )  ->  ( A  ||  ( P ^ N )  ->  E. n  e.  NN0  A  =  ( P ^ n ) ) )
 
Theoremdvdsprmpweqnn 12289* If an integer greater than 1 divides a prime power, it is a (proper) prime power. (Contributed by AV, 13-Aug-2021.)
 |-  ( ( P  e.  Prime  /\  A  e.  ( ZZ>=
 `  2 )  /\  N  e.  NN0 )  ->  ( A  ||  ( P ^ N )  ->  E. n  e.  NN  A  =  ( P ^ n ) ) )
 
Theoremdvdsprmpweqle 12290* If a positive integer divides a prime power, it is a prime power with a smaller exponent. (Contributed by AV, 25-Jul-2021.)
 |-  ( ( P  e.  Prime  /\  A  e.  NN  /\  N  e.  NN0 )  ->  ( A  ||  ( P ^ N )  ->  E. n  e.  NN0  ( n  <_  N  /\  A  =  ( P ^ n ) ) ) )
 
Theoremdifsqpwdvds 12291 If the difference of two squares is a power of a prime, the prime divides twice the second squared number. (Contributed by AV, 13-Aug-2021.)
 |-  ( ( ( A  e.  NN0  /\  B  e.  NN0  /\  ( B  +  1 )  <  A ) 
 /\  ( C  e.  Prime  /\  D  e.  NN0 ) )  ->  ( ( C ^ D )  =  ( ( A ^ 2 )  -  ( B ^ 2 ) )  ->  C  ||  (
 2  x.  B ) ) )
 
Theorempcaddlem 12292 Lemma for pcadd 12293. The original numbers  A and  B have been decomposed using the prime count function as  ( P ^ M )  x.  ( R  /  S ) where  R ,  S are both not divisible by  P and  M  =  ( P  pCnt  A ), and similarly for  B. (Contributed by Mario Carneiro, 9-Sep-2014.)
 |-  ( ph  ->  P  e.  Prime )   &    |-  ( ph  ->  A  =  ( ( P ^ M )  x.  ( R  /  S ) ) )   &    |-  ( ph  ->  B  =  ( ( P ^ N )  x.  ( T  /  U ) ) )   &    |-  ( ph  ->  N  e.  ( ZZ>= `  M )
 )   &    |-  ( ph  ->  ( R  e.  ZZ  /\  -.  P  ||  R ) )   &    |-  ( ph  ->  ( S  e.  NN  /\  -.  P  ||  S ) )   &    |-  ( ph  ->  ( T  e.  ZZ  /\  -.  P  ||  T ) )   &    |-  ( ph  ->  ( U  e.  NN  /\  -.  P  ||  U ) )   =>    |-  ( ph  ->  M 
 <_  ( P  pCnt  ( A  +  B )
 ) )
 
Theorempcadd 12293 An inequality for the prime count of a sum. This is the source of the ultrametric inequality for the p-adic metric. (Contributed by Mario Carneiro, 9-Sep-2014.)
 |-  ( ph  ->  P  e.  Prime )   &    |-  ( ph  ->  A  e.  QQ )   &    |-  ( ph  ->  B  e.  QQ )   &    |-  ( ph  ->  ( P  pCnt  A )  <_  ( P  pCnt  B ) )   =>    |-  ( ph  ->  ( P  pCnt  A )  <_  ( P  pCnt  ( A  +  B ) ) )
 
Theorempcmptcl 12294 Closure for the prime power map. (Contributed by Mario Carneiro, 12-Mar-2014.)
 |-  F  =  ( n  e.  NN  |->  if ( n  e.  Prime ,  ( n ^ A ) ,  1 ) )   &    |-  ( ph  ->  A. n  e.  Prime  A  e.  NN0 )   =>    |-  ( ph  ->  ( F : NN --> NN  /\  seq 1 (  x.  ,  F ) : NN --> NN ) )
 
Theorempcmpt 12295* Construct a function with given prime count characteristics. (Contributed by Mario Carneiro, 12-Mar-2014.)
 |-  F  =  ( n  e.  NN  |->  if ( n  e.  Prime ,  ( n ^ A ) ,  1 ) )   &    |-  ( ph  ->  A. n  e.  Prime  A  e.  NN0 )   &    |-  ( ph  ->  N  e.  NN )   &    |-  ( ph  ->  P  e.  Prime )   &    |-  ( n  =  P  ->  A  =  B )   =>    |-  ( ph  ->  ( P  pCnt  (  seq 1 (  x.  ,  F ) `
  N ) )  =  if ( P 
 <_  N ,  B , 
 0 ) )
 
Theorempcmpt2 12296* Dividing two prime count maps yields a number with all dividing primes confined to an interval. (Contributed by Mario Carneiro, 14-Mar-2014.)
 |-  F  =  ( n  e.  NN  |->  if ( n  e.  Prime ,  ( n ^ A ) ,  1 ) )   &    |-  ( ph  ->  A. n  e.  Prime  A  e.  NN0 )   &    |-  ( ph  ->  N  e.  NN )   &    |-  ( ph  ->  P  e.  Prime )   &    |-  ( n  =  P  ->  A  =  B )   &    |-  ( ph  ->  M  e.  ( ZZ>= `  N )
 )   =>    |-  ( ph  ->  ( P  pCnt  ( (  seq 1 (  x.  ,  F ) `  M )  /  (  seq 1 (  x. 
 ,  F ) `  N ) ) )  =  if ( ( P  <_  M  /\  -.  P  <_  N ) ,  B ,  0 ) )
 
Theorempcmptdvds 12297 The partial products of the prime power map form a divisibility chain. (Contributed by Mario Carneiro, 12-Mar-2014.)
 |-  F  =  ( n  e.  NN  |->  if ( n  e.  Prime ,  ( n ^ A ) ,  1 ) )   &    |-  ( ph  ->  A. n  e.  Prime  A  e.  NN0 )   &    |-  ( ph  ->  N  e.  NN )   &    |-  ( ph  ->  M  e.  ( ZZ>=
 `  N ) )   =>    |-  ( ph  ->  (  seq 1 (  x.  ,  F ) `  N )  ||  (  seq 1 (  x. 
 ,  F ) `  M ) )
 
Theorempcprod 12298* The product of the primes taken to their respective powers reconstructs the original number. (Contributed by Mario Carneiro, 12-Mar-2014.)
 |-  F  =  ( n  e.  NN  |->  if ( n  e.  Prime ,  ( n ^ ( n  pCnt  N ) ) ,  1 ) )   =>    |-  ( N  e.  NN  ->  (  seq 1 (  x.  ,  F ) `
  N )  =  N )
 
Theoremsumhashdc 12299* The sum of 1 over a set is the size of the set. (Contributed by Mario Carneiro, 8-Mar-2014.) (Revised by Mario Carneiro, 20-May-2014.)
 |-  ( ( B  e.  Fin  /\  A  C_  B  /\  A. x  e.  B DECID  x  e.  A )  ->  sum_ k  e.  B  if ( k  e.  A ,  1 ,  0 )  =  ( `  A )
 )
 
Theoremfldivp1 12300 The difference between the floors of adjacent fractions is either 1 or 0. (Contributed by Mario Carneiro, 8-Mar-2014.)
 |-  ( ( M  e.  ZZ  /\  N  e.  NN )  ->  ( ( |_ `  ( ( M  +  1 )  /  N ) )  -  ( |_ `  ( M  /  N ) ) )  =  if ( N  ||  ( M  +  1
 ) ,  1 ,  0 ) )
    < Previous  Next >

Page List
Jump to page: Contents  1 1-100 2 101-200 3 201-300 4 301-400 5 401-500 6 501-600 7 601-700 8 701-800 9 801-900 10 901-1000 11 1001-1100 12 1101-1200 13 1201-1300 14 1301-1400 15 1401-1500 16 1501-1600 17 1601-1700 18 1701-1800 19 1801-1900 20 1901-2000 21 2001-2100 22 2101-2200 23 2201-2300 24 2301-2400 25 2401-2500 26 2501-2600 27 2601-2700 28 2701-2800 29 2801-2900 30 2901-3000 31 3001-3100 32 3101-3200 33 3201-3300 34 3301-3400 35 3401-3500 36 3501-3600 37 3601-3700 38 3701-3800 39 3801-3900 40 3901-4000 41 4001-4100 42 4101-4200 43 4201-4300 44 4301-4400 45 4401-4500 46 4501-4600 47 4601-4700 48 4701-4800 49 4801-4900 50 4901-5000 51 5001-5100 52 5101-5200 53 5201-5300 54 5301-5400 55 5401-5500 56 5501-5600 57 5601-5700 58 5701-5800 59 5801-5900 60 5901-6000 61 6001-6100 62 6101-6200 63 6201-6300 64 6301-6400 65 6401-6500 66 6501-6600 67 6601-6700 68 6701-6800 69 6801-6900 70 6901-7000 71 7001-7100 72 7101-7200 73 7201-7300 74 7301-7400 75 7401-7500 76 7501-7600 77 7601-7700 78 7701-7800 79 7801-7900 80 7901-8000 81 8001-8100 82 8101-8200 83 8201-8300 84 8301-8400 85 8401-8500 86 8501-8600 87 8601-8700 88 8701-8800 89 8801-8900 90 8901-9000 91 9001-9100 92 9101-9200 93 9201-9300 94 9301-9400 95 9401-9500 96 9501-9600 97 9601-9700 98 9701-9800 99 9801-9900 100 9901-10000 101 10001-10100 102 10101-10200 103 10201-10300 104 10301-10400 105 10401-10500 106 10501-10600 107 10601-10700 108 10701-10800 109 10801-10900 110 10901-11000 111 11001-11100 112 11101-11200 113 11201-11300 114 11301-11400 115 11401-11500 116 11501-11600 117 11601-11700 118 11701-11800 119 11801-11900 120 11901-12000 121 12001-12100 122 12101-12200 123 12201-12300 124 12301-12400 125 12401-12500 126 12501-12600 127 12601-12700 128 12701-12800 129 12801-12900 130 12901-13000 131 13001-13100 132 13101-13200 133 13201-13300 134 13301-13400 135 13401-13500 136 13501-13600 137 13601-13700 138 13701-13800 139 13801-13900 140 13901-14000 141 14001-14100 142 14101-14113
  Copyright terms: Public domain < Previous  Next >