How to Find VERY BIG Prime Numbers?

  Рет қаралды 171,939

Digital Genius

Digital Genius

Күн бұрын

Пікірлер: 270
@pablozaid6078
@pablozaid6078 6 ай бұрын
8:56 I think it should be 1 - (1/4)⁵
@jakubtokarski5531
@jakubtokarski5531 6 ай бұрын
That was my thought thank you
@oro5421
@oro5421 6 ай бұрын
Thought the same :)
@raynahmed6155
@raynahmed6155 5 ай бұрын
@@jakubtokarski5531jjjj
@Camman18family
@Camman18family 5 ай бұрын
This proves that you did watch the video 500 times
@coopergates9680
@coopergates9680 5 ай бұрын
@@Camman18family The errors in this video can be spotted pretty easily tbh
@NexusOfChaos
@NexusOfChaos 6 ай бұрын
there is actually a function that for every value n it computes exactly the nth prime number (which we'll call p). the problem is it is so slow to compute that it is literally faster to manually check every number 1 to p if they are prime before this function can tell you what p is, bc tbh that's what the function is doing too
@hypercoder-gaming
@hypercoder-gaming 6 ай бұрын
Actually it checks 1 to 2^n which is greater than p
@NexusOfChaos
@NexusOfChaos 6 ай бұрын
@@hypercoder-gaming thx for the correction, been a while since ive seen the function myself
@simohayha6031
@simohayha6031 6 ай бұрын
There is also Mill's constant which gives primes for every input n where n ranges over the natural numbers. Problem is it grows extremely fast and we don't know all the decimal digits, but it's proven that it yields primes for all n, even something as crazy as million or G64.
@anon1963
@anon1963 6 ай бұрын
there is no mathematical formula that produces prime numbers yet. it would be the end of network security since so many things rely on primes
@proton..
@proton.. 6 ай бұрын
:3
@danielsharp2402
@danielsharp2402 6 ай бұрын
Really great refresher video for someone who already knows most of these and only has some gaps. A bit of constructive criticism though. Leave pauses between thoughts. If you are not already intimate with the concepts it's hard to follow. Sometimes separate topics get a little mashed together because there's nothing signifying that the thought ended. I know it adds to the video length but something to consider.
@tyjacobs6822
@tyjacobs6822 6 ай бұрын
1:40
@IbnBahtuta
@IbnBahtuta 6 ай бұрын
It took just 10 seconds to find the current biggest prime number to date. Just use a search engine.
@barrianic4
@barrianic4 5 ай бұрын
r/technicallythetruth
@Akuma.aa0
@Akuma.aa0 5 ай бұрын
Although the rate of discovering one is extremely hard
@marcellmate425
@marcellmate425 23 күн бұрын
New prime has just been unlocked a few days ago!
@stanleydodds9
@stanleydodds9 6 ай бұрын
22:47 this is incorrect. 0 is not necessarily the only element of X that has no inverse. Luckily, this doesn't matter for the proof. We only need the fact that |X*| < q^2. It doesn't actually matter if it's exactly 1 less element, or many less elements. (actually, the proof still works even without the strict inequality). For an example of why you can't say this, look at q = 11, then the non-zero elements 5 + sqrt(3), 5 - sqrt(3), and all their multiples have no inverses; to prove this (without checking every element), we know (5 - sqrt(3))(5 + sqrt(3)) = 5^2 - 3 = 0 (mod 11). If an inverse existed, multiplying both sides of this equation by the inverse would give a non zero element equals zero, contradiction. In general, what you say is only true in an integral domain (a ring with no zero divisors). For this specific ring, Z/qZ [sqrt(3)], that's only true if 3 is a quadratic non-residue modulo q. Also, this is only one direction of the proof (showing that if this term in the sequence is 0 mod Mp, then the mersenne number is prime). In order to prove the reverse direction, the fact that if the mersenne number Mp is prime then this term is zero, we do actually need to worry about whether or not elements like 2 and 3 are quadratic residues modulo modulo Mp. In fact, the legendre symbols of 2 and 3 modulo mersenne primes is the reason that we use the sequence starting at 4. It is also possible to perform the test starting with other numbers given that the mersenne number falls into particular congruence classes, but 4 is convenient because it works for all mersenne numbers (this is only important for this direction of the proof though). For an explicit proof, first note that (1 + sqrt(3))^2 / 2 = (1 + 2sqrt(3) + 3) / 2 = 2 + sqrt(3) = x Then we have x^(2^(p-1)) = (1 + sqrt(3))^(2^p) / 2^(2^(p-1)) = (1 + sqrt(3))^(Mp + 1) / 2^((Mp + 1)/2) Using a result stated in this video, and now using the fact that we assume Mp is prime, note that (1 + sqrt(3))^Mp = 1 + sqrt(3)^Mp = 1 + sqrt(3) * 3^((Mp - 1)/2) (mod Mp) Now compute the legendre symbol 3^((Mp - 1)/2) = (3|Mp) = (Mp|3) * (-1)^((3-1)(Mp - 1)/4) = (Mp|3) * (-1)^(2^(p-1) - 1) = -(Mp|3) by Euler's criterion and quadratic reciprocity Then note that Mp = 2^p - 1 = 2 * 2^(2k) - 1 = 2 * 1 - 1 = 1 (mod 3) since p prime is odd (check p = 2 case separately), so (Mp|3) = (1|3) = 1, hence 3^((Mp - 1)/2) = -(Mp|3) = -1 So we have that (1 + sqrt(3))^Mp = 1 + sqrt(3) * 3^((Mp - 1)/2) = 1 - sqrt(3) (mod Mp), and hence (1 + sqrt(3))^(Mp + 1) = (1 + sqrt(3))(1 - sqrt(3)) = 1 - 3 = -2 (mod Mp). Next, compute the legendre symbol 2^((Mp - 1)/2) = (2|Mp). Here we can just use standard results for legendre symbols of 2, or that 2^(p-1) = 1 (mod p) by Fermat's little theorem to get that p divides (Mp - 1)/2, and since 2^p = 1 (mod Mp) trivially, we have that the order of 2 divides p modulo Mp. Therefore 2^((Mp - 1)/2) = 1 (mod Mp) as the exponent is a multiple of the order. Either way, we then get 2^((Mp + 1)/2) = 2 * 2^((Mp - 1)/2) = 2 (mod Mp) Combining all of the above, we get that x^(2^(p-1)) = (1 + sqrt(3))^(Mp + 1) / 2^((Mp + 1)/2) = -2 / 2 = -1 (mod Mp). Multiply both sides by y^(2^(p-2)), we get x^(2^(p-2)) = -y^(2^(p-2)) (mod Mp), so finally x^(2^(p-2)) + y^(2^(p-2)) = 0 (mod Mp) as required.
@evnnxi
@evnnxi 6 ай бұрын
I will read all of that.
@evnnxi
@evnnxi 6 ай бұрын
I read all of that. I have no idea what I just read.
@coolio-46
@coolio-46 6 ай бұрын
@@evnnxiSame. What is Fermat's little theorem???
@liquidcashews
@liquidcashews 6 ай бұрын
my brain hurts
@theunifun4903
@theunifun4903 6 ай бұрын
I read allat, and i dont know who you are but you are very good math, see what you described is correct, disproving the claim that its alway 0
@zaviyargul
@zaviyargul 6 ай бұрын
I understood nothing,I liked it 👍
@Very_Rando_person
@Very_Rando_person 5 ай бұрын
Same
@MorbiddaPlays
@MorbiddaPlays Ай бұрын
bruh, i'm in 9th grade and i don't even understand a little bit....wait...am i just dumb?
@coopergates9680
@coopergates9680 5 ай бұрын
7:01 If you are hoping to use the M-R test to (factor) a number, you may need to perform x+1 modular comparisons, but to check if it is prime, you only need x of them. Fermat's Little theorem proves that the (x+1)th test will *never* yield a remainder of -1.
@midnight7175
@midnight7175 6 ай бұрын
and he’s back with two videos!
@tyjacobs6822
@tyjacobs6822 6 ай бұрын
3:18
@oro5421
@oro5421 6 ай бұрын
This is great!!! I used to wonder how these are found, the main question of the video. Thank you for it
@RubyPiec
@RubyPiec 6 ай бұрын
8:37 I like the subtle dramatic boom when you say "13 is a liar"
@TheCaregiverSITMOB
@TheCaregiverSITMOB 2 ай бұрын
YOU AGAIN?!
@muskyoxes
@muskyoxes 6 ай бұрын
I wish math videos would do more linking, like here i'll bet most people able to understand this video know the axioms of group theory, and if they don't it'd be easy to point them to one of the million places that go over them
@movax20h
@movax20h 6 ай бұрын
Great video. A bit fast at places, but really well done. I like that it is pretty dense and fast, as it can deliver way more info.
@Loffai
@Loffai 5 ай бұрын
As a student who has just started Pre-Calc, this is some very interesting info, I will use it for the forseeable future, thanks!
@KneeOfficial
@KneeOfficial 5 ай бұрын
I don’t like nor have I ever liked math, but you managed to keep me hooked the whole way through, great video
@HuaweiHome-g1m
@HuaweiHome-g1m Ай бұрын
It's crazy that A number with 25 million digits can't be divided by any number except 1
@FranklinLee-t3k
@FranklinLee-t3k 9 күн бұрын
@@HuaweiHome-g1m Then imagine a 41 million digit number can only be divided by 1 and itself.
@francishubertovasquez2139
@francishubertovasquez2139 16 күн бұрын
You're an exceptionally gifted mathematician. Period
@douglasstrother6584
@douglasstrother6584 6 ай бұрын
"Prime has come today" ~ The Chambers Brothers (sort of)
@WatchAccount-vw7po
@WatchAccount-vw7po Ай бұрын
When your brain is so fried the only thing you catch is 'Idnetity elelment'
@jamesmarlowebito8982
@jamesmarlowebito8982 2 ай бұрын
In college-level mathematics, a variety of operations are used across different fields of study. Here are some of the key operations commonly encountered: 1. Arithmetic Operations: Addition, subtraction, multiplication, and division are foundational for most calculations. 2. Algebraic Operations: Involves manipulating algebraic expressions and equations, including solving for variables, factoring polynomials, and using functions. 3. Calculus Operations: Includes differentiation (finding derivatives) and integration (finding integrals), as well as operations on limits, series, and multivariable functions. 4. Matrix Operations: Includes addition, subtraction, multiplication, inversion, and finding determinants for matrices, which are essential in linear algebra. 5. Statistical Operations: Such as computing means, medians, variances, standard deviations, and performing hypothesis tests and regression analysis. 6. Trigonometric Operations: Involving functions like sine, cosine, and tangent, and their inverses, used in solving problems related to angles and periodic functions. 7. Complex Number Operations: Includes addition, subtraction, multiplication, and division of complex numbers, as well as finding magnitudes and arguments. 8. Differential Equations: Involves solving equations involving derivatives and applying methods like separation of variables or using numerical techniques. 9. Vector Operations: Such as vector addition, dot product, cross product, and vector normalization, which are used in physics and engineering contexts. These operations form the basis for more advanced studies and applications in fields such as physics, engineering, economics, and computer science.
@Lokalgott
@Lokalgott 6 ай бұрын
Well explained!
@NoProductionsGD
@NoProductionsGD Ай бұрын
1:51 One way to make trial division faster is by ruling out all even numbers and all multiples of 5. even + even always results in even (e.g. 4 + 6 = 10) The number you are testing will most likely not end in a 5, meaning that all multiples of 5 will not divide into it since the test is not a "stack" of 5s (e.g. 15 + 20 + 25 = 55 is made of 5s, but 1000001 is not).
@nuggetontrend
@nuggetontrend 5 ай бұрын
I really like how 252 digits of 9 , one 8 and 253 digits of 9 is a prime number
@ems951
@ems951 5 ай бұрын
I actually learned a lot from you.
@o_s-24
@o_s-24 6 ай бұрын
Such a simple yet complex problem
@tyjacobs6822
@tyjacobs6822 6 ай бұрын
2:45
@matei_woold_wewu
@matei_woold_wewu Ай бұрын
1:36 i reccomend use a fraction as “÷”
@movax20h
@movax20h 6 ай бұрын
AKS test (which was onlt discovered about 15 years ago), is actually super fast. Initially it was not very practical. But still polynomial in number of digits, which us amazing. I think it was initiallt pretty big power, like 12, byt was reduced later to 6. Few years of computation for few thousand digit prime is actually pretty good. Considering brute force , even using sieves would take unimaginable amount of time (quntilions of years would not even scratch the surface of computation). AKS is one of the coolest algorithms of 21st century. To paper where AKS was explained is called "Primality is in P".
@muskyoxes
@muskyoxes 6 ай бұрын
I was recently shocked to hear that before Euler, nobody in the world knew a prime number bigger than a million. It is much more difficult to find primes by brute force than it looks
@benjaminwasfound2
@benjaminwasfound2 6 ай бұрын
0:28 willan's formula, although it is very inefficient
@kshysztof9649
@kshysztof9649 6 ай бұрын
Your vides are really good. Motivating to some extent, thank you!
@AmazingAmbro1
@AmazingAmbro1 4 күн бұрын
Miller-rabin test is basically just among us
@FranklinLee-t3k
@FranklinLee-t3k 2 ай бұрын
Speaking of composite numbers, we know that Graham’s Number is composite. It’s divisible by 3, and its prime factorization is made up of only 3s.
@Porto5452
@Porto5452 6 ай бұрын
651 is not a Carmichael number since 2^651 = 281 (mod 651). The Carmichael number you were looking for was 561 = 3*11*17. In the Miller-Rabin test you actually square the number k-1 times, where k is the exponent of the largest power of 2 divisible by p-1, so you squared 13 1 extra time when you used it to determine if 221 was prime. Finally the probability that the Miller Rabin test works using a composite for a random base is always less than 1/4, usually much lower than that. It can only be close to 1/4 if the composite number is of the form (n+1)*(2n+1), where n is an integer and n+1 and 2n+1 are primes, so n must also be a multiple of 6 for large values of n. The rest of the video was good and well animated so keep up the good work and try to make less mistakes next time. Edit : The sequence used in the Lucas-Lehmer primality test starts with s0 = 4 and not s1 = 4. This means that you need to check if the p-2th term is divisible by p to determine if 2^p-1 is prime. Also a number can't be divisible by 32 but not by 16, since 16 is a divisor of 32. Maybe you meant that if a number was divisible by 16 but not by 32 then the largest power of 2 divisor of that number was 16.
@thenew3dworldfan
@thenew3dworldfan 6 ай бұрын
Yeah, I was going to say that too.
@walterbrownstone8017
@walterbrownstone8017 2 ай бұрын
To a heathen like me, a prime number represents an anchor in time. So this is kind of an interesting job.
@MooverCat
@MooverCat 6 ай бұрын
Beautiful!
@smithfrederick2
@smithfrederick2 4 ай бұрын
(10^641 +1)/11 = 90909090......91 is prime with 640 digits, 641 is also prime, and the expression on top is 1000...01 with 641 digits (10^3011 +1)/11 = 90909090.....91 is prime with 3010 digits, 3011 also prime
@RA41DW0U
@RA41DW0U 6 ай бұрын
when Math Prime says "die" you actually die for real
@ranchoabilities7928
@ranchoabilities7928 6 ай бұрын
Bro this guy should have a million subs, UNDERRATED
@justinburchard3344
@justinburchard3344 Ай бұрын
IDNETITY 16:34 16:34 16:34 16:34 16:34 16:34 16:34 16:34 16:34 16:34 16:34 16:34 16:34 16:34 16:34 16:34 YEAH BABY
@rdbchase
@rdbchase 2 ай бұрын
"How to Find VERY BIG Prime Numbers? [sic]" -- that is declarative, not interrogative.
@Swagpion
@Swagpion 6 ай бұрын
Almost every single prime number touches a multiple of 6. 2 and 3 are the only excrptions, because they are the factors of 6. This is because a prime cant be an even amount away from a Mo6, or it would be even, and 3 away because it would be threeven. And 5 away is 1 away from another multiple of 6. And now I wonder what the smallest multiple of 6 that doesnt touch any primes, if one exists at all.
@Swagpion
@Swagpion 6 ай бұрын
This fact also proves that an infinite amount of the primes are twin primes. Because there are infinite primes and they can never stop being in pairs.
@AA-100
@AA-100 6 ай бұрын
120 is a multiple of 6 and is not 1 away from a prime number 119 = 7×17 121= 11×11
@HamzaDev754
@HamzaDev754 2 ай бұрын
Understood 40%, but I really like it
@nycoshouse
@nycoshouse 6 ай бұрын
is there better method to identify only twin primes ? ( to compute Brun's constant up to 10^20 )
@tyjacobs6822
@tyjacobs6822 6 ай бұрын
4:23
@tyjacobs6822
@tyjacobs6822 6 ай бұрын
4:23
@SaagarNayak
@SaagarNayak 6 ай бұрын
Every prime number can be written as 6n + 1 or 6n - 1 which are twin primes
@warioshomas100
@warioshomas100 4 ай бұрын
i used to go by the logic of 'if it isnt a multiple of 2 3 5 or 7 its probably prime'
@coopergates9680
@coopergates9680 5 ай бұрын
5:51 Sorry to be 'that guy' but the first Carmichael number is 3*11*17 = 561, you simply swapped a couple digits.
@stilze
@stilze 6 ай бұрын
Whilst it is an extremely slow and (when it comes to computers) inefficient way of generating primes, there a formula for the prime numbers: Willans' formula.
@alexanderscott2456
@alexanderscott2456 6 ай бұрын
This is my algorithm: If it ends in a 2 or 5: Not Prime If it doesn't end in a 2 or a 5: It is Prime You're welcome
@wschess
@wschess 6 ай бұрын
Yep, definitely how it works. Can confirm
@ecromancer
@ecromancer 6 ай бұрын
All even numbers except for 2 and all numbers ending with 5 except 5 are not prime numbers.
@muskyoxes
@muskyoxes 6 ай бұрын
I have made huge advancements in this method. If the digits add up to a multiple of 3: not prime. If it's not divisible by 2, 3, or 5, it looks prime when seen on paper and therefore is prime. Fermat used this method.
@Rockety521
@Rockety521 6 ай бұрын
I mean, yeah, but my algorithm is simpler: If I can divide it by any number that isn't itself or 1, it's not prime, else it is... simple, right?
@stargazer7644
@stargazer7644 5 ай бұрын
@@muskyoxes44521?
@ten-faced-carrot
@ten-faced-carrot 6 ай бұрын
Here is a simple approach to check if any number n is a prime, that completes in 1 step only. Between 0 and 1000000, roughly 7% of numbers are primes, and that number will get smaller the further we go, so we can reasonably assume, that any number n is not a prime. Here is a simple C implementation of that algorithm: bool isPrime(int n){ return false; } I've benchmarked it, and for 10000000 Numbers, it has an error rate of 6.65%
@RoundShades
@RoundShades 6 ай бұрын
I love mathematics, but I live computational reasoning even more, it's like the same world being interpreted in 2 entirely separate ways
@insertcreativenamehere492
@insertcreativenamehere492 5 ай бұрын
Yeah, and the error rate gets smaller as you go higher! For 10^100 numbers, the error rate is 0.434%, and for 10^1000000, the error rate is just 0.00004%!
@Jhshsshshshhs
@Jhshsshshshhs 2 ай бұрын
I feel so dumbfounded seeing other people (probably twice my age) be so smart when im just starting highschool 😭
@k3nu85
@k3nu85 5 ай бұрын
In 0:20, 2^82589933-1 should be over centillion. Also. Did you know that 67+1/4489= Supergolden ratio ^11?
@JohnBerry-q1h
@JohnBerry-q1h 6 ай бұрын
Does the Miller-Rabin test have any statistical Out Liars ?
@dh605x
@dh605x 4 ай бұрын
561 is a Carmichael number, not 651. Sorry to be so pedantic on that one.
@coopergates9680
@coopergates9680 5 ай бұрын
8:40 Fortunately, this is not the average probability, it is the (worst case). Semiprimes of the form (2k + 1)(k+1) and some three-factor Carmichael numbers have almost a 1/4 proportion of strong liars, but for most composites, the ratio is far smaller. No bases between 1 and 436, exclusive, are strong liars for 437.
@palmakzx
@palmakzx 6 ай бұрын
amazing vid ❤️
@Slerdus
@Slerdus 6 ай бұрын
I agree
@W-Pentomino
@W-Pentomino 6 ай бұрын
Yes there is a formula for generating primes It's made by c p Willians at 1964
@miyu1424
@miyu1424 2 ай бұрын
It's so inefficient, it can barely be considered a formula for generating primes and is more of a fun thought experiment
@rodrigoqteixeira
@rodrigoqteixeira 6 ай бұрын
16:58 the typo in "idnetity" unstead of "identity" lol
@ElevatorFan1428
@ElevatorFan1428 6 ай бұрын
You have a typo! "unstead" instead of "instead"
@RoundShades
@RoundShades 6 ай бұрын
You can be great at math, or English. Not both.
@rodrigoqteixeira
@rodrigoqteixeira 6 ай бұрын
@@ElevatorFan1428 :(
@jonathanschenck8154
@jonathanschenck8154 6 ай бұрын
Analog & Quantum Computations for checks, with base value checks can be more than just the slow data overflow that of float.
@jonathanschenck8154
@jonathanschenck8154 6 ай бұрын
Do not use any non integers, as binary doesn't like decimals.
@jonathanschenck8154
@jonathanschenck8154 6 ай бұрын
But don't use engineers for SSD memory figures except for analog memory devices that discrepancies don't exist for. Discrepancies exist for various base's decimal points & fractions.
@jonathanschenck8154
@jonathanschenck8154 6 ай бұрын
Non real base integers don't like to be divided. So calculating fractions like 1/3 isn't recommended by most number bases. Or 1/... As accuracy of numbers fails with pi as it isn't divisible after the decimal. Also the value 3 looks really weird in computer code. Like in floating point.
@PraviLukijanJC
@PraviLukijanJC 6 ай бұрын
This number goes in, the square hole
@ryanchiang1202
@ryanchiang1202 6 ай бұрын
Then what is Willian’s theorem then?
@tyjacobs6822
@tyjacobs6822 6 ай бұрын
2:14
@yafyafyaf
@yafyafyaf Күн бұрын
6n±1 can be good but it won't word for 120 i think
@ArtemSayapov
@ArtemSayapov 5 ай бұрын
1:38 shouldn't it be k + 1/p? Pardon if I am wrong, I don't thank that's how you show remainders
@debmalyalodh1
@debmalyalodh1 18 күн бұрын
This video is outdated as of 22nd October 2024
@JustA1ex2465
@JustA1ex2465 5 ай бұрын
Finally now I can achieve heaven
@fortcraftgaming2136
@fortcraftgaming2136 5 ай бұрын
Do Try to do try to find X axisis value
@phuonglinh4775
@phuonglinh4775 4 ай бұрын
14:02 HOW DID YOU KNOW MY NAME
@Anonymous-e5u
@Anonymous-e5u 3 күн бұрын
6:55 nice
@FranklinLee-t3k
@FranklinLee-t3k 3 ай бұрын
how many digits does that number at the end have?
@JohnBerry-q1h
@JohnBerry-q1h 6 ай бұрын
Wait… I thought all the 🦕 🦖 divisaurs went extinct ☄️, because of a big asteroid, a long time ago.
@sababugs1125
@sababugs1125 6 ай бұрын
there is a formula to generate the nth prime number
@Camman18family
@Camman18family 5 ай бұрын
how
@PeriodicTableLover2
@PeriodicTableLover2 2 ай бұрын
16:32 error: "idnetity element"
@SeaBeastHunter
@SeaBeastHunter 6 ай бұрын
Jojo reference
@RobotKiwiTheFailureKid
@RobotKiwiTheFailureKid Ай бұрын
Any Even Number Exept 2 And Numbers That End In 5 And 0 Is Composite
@ultimasvalk
@ultimasvalk 2 ай бұрын
I got lost at L-L test proof lol
@benjamineppler3770
@benjamineppler3770 19 күн бұрын
The prime number was found just for pefect numbers or something else( all factors of n added up = n is the definition of a perfect number and that prime number in the thumblail was found to try and find an odd perfect number bc all perfect numbers exept the holy perfect number thats non-even ( if even existant ) ( all even numbers are divisible by 2 and no non-even ( = odd ) numbers are not divisible by 2 ( no matter what ) ) ) Mersene primes a prime if the prime number is ( 2^n ) -1 and its the same whith frivvel primes but whith - and + swaped and 3 is a mersene prime and a frivvel prime because 3=2^1+1=2^2-1=prime
@francishubertovasquez2139
@francishubertovasquez2139 16 күн бұрын
No one had presented the calculation method you have taught in that video and in your other lecture video, only you Sham Lahm whether you're a real person or AI, I don't care, I the CaesarKing shall add 3% of energy to money conversion once only for your presentation because that's rare and was meticulously researched in time. Let it be
@mr.redlazer9173
@mr.redlazer9173 Ай бұрын
Meanwhile CD Wilans who made a prime number formula in 1960’s (it’s not used cus it’s slower then modern algorithms)🗿
@damianojeda938
@damianojeda938 6 ай бұрын
why is one not prime
@QbdulloK
@QbdulloK 6 ай бұрын
Because any prime number has 2 divisors. 1 and itself. The number 1 has only one divisor, which is 1. That's why it isn't prime
@mateswinter3i
@mateswinter3i 6 ай бұрын
One is himself
@mihaleben6051
@mihaleben6051 6 ай бұрын
You get an ouija board. Thats how. Maybe
@raynahmed6155
@raynahmed6155 5 ай бұрын
1 - (1\4)
@JustTriangle
@JustTriangle 6 ай бұрын
37
@mathy-mathy-maths
@mathy-mathy-maths 4 ай бұрын
watch this in 16x speed and see if you understand :D
@asherdp
@asherdp 4 ай бұрын
16:31 e --- idnetity element
@alejandropulidorodriguez9723
@alejandropulidorodriguez9723 6 ай бұрын
splendid
@JamesIsbell-up4yu
@JamesIsbell-up4yu 6 ай бұрын
What good is all this prime number research?
@njgskgkensidukukibnalt7372
@njgskgkensidukukibnalt7372 6 ай бұрын
cryptography Also the tools developed to understand more about prime numbers are good enough reason to study them
@RoundShades
@RoundShades 6 ай бұрын
It generates energy and solves world hunger. ...Is what you'd like me to say. What good is space travel, everyone says on the comments section from the keyboard of their cell phone. Imagine asking what good does paper achieve and mailing it to the paper factory on a piece of paper?
@TwitterIsReal
@TwitterIsReal 7 күн бұрын
1 - (1/4)^5=0.999
@MrAdamdgross45
@MrAdamdgross45 6 ай бұрын
You had me until the Seive of Atkins. 🙁
@marouane2839
@marouane2839 3 ай бұрын
I want my own 3000+ digit prime,not some stupid 'Mersenne prime' ---- that is already known
@jhawar-ji
@jhawar-ji 6 ай бұрын
9:07 1-1/4 ~ 99.9%? How?
@FelipeSouza-oc9tj
@FelipeSouza-oc9tj 6 ай бұрын
He just forgot to put the power on the 1/4, it's 1/(4^5)
@programmieraufgaben8391
@programmieraufgaben8391 6 ай бұрын
cool!
@sodiboo
@sodiboo 6 ай бұрын
0:28 bro forgot about 1 + sum{i=1 .. 2^n}(floor((n/(sum{j=1 .. i}(floor((cos(pi*((j-1)!+1)/j))^2))))^(1/n)))
@practicemodebutton7559
@practicemodebutton7559 6 ай бұрын
16:35 you spelled identity 'idnetity'
@RoundShades
@RoundShades 6 ай бұрын
!! Huge Prime !!
@carteraplus3020
@carteraplus3020 6 ай бұрын
Read this as how to find VERY BIG phone numbers
@JustBlack4
@JustBlack4 6 ай бұрын
My favorite color is red and red and red and red and red and red and red and red and red and red and red and red & I think you didn’t read all of that.
@yeetasfahitas
@yeetasfahitas 6 ай бұрын
17:03 idnetity 😭😭
@explo-sn
@explo-sn 6 ай бұрын
P p p p p ppppprime? Like minos prime ultrakill??? Judgement????
@mathy-mathy-maths
@mathy-mathy-maths 4 ай бұрын
idnetity element? nah! 16:34
@lumachin2557
@lumachin2557 Ай бұрын
Pucci founded all
@TheBigHeadLegion
@TheBigHeadLegion 6 ай бұрын
the biggest prime number is a mersenne prime
@movax20h
@movax20h 6 ай бұрын
Biggest know prime number.
@JohnBerry-q1h
@JohnBerry-q1h 6 ай бұрын
yoo rook MAH-VELOUS
@kcchan3263
@kcchan3263 6 ай бұрын
0:49
The Oldest Unsolved Problem in Math
31:33
Veritasium
Рет қаралды 12 МЛН
The Search for the Longest Infinite Chess Game
29:20
Naviary
Рет қаралды 911 М.
ТЫ В ДЕТСТВЕ КОГДА ВЫПАЛ ЗУБ😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 3,8 МЛН
Twin Telepathy Challenge!
00:23
Stokes Twins
Рет қаралды 55 МЛН
ТВОИ РОДИТЕЛИ И ЧЕЛОВЕК ПАУК 😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 4,4 МЛН
An Exact Formula for the Primes: Willans' Formula
14:47
Eric Rowland
Рет қаралды 1,4 МЛН
Numbers too big to imagine
8:02
Digital Genius
Рет қаралды 2,1 МЛН
Why there are no 3D complex numbers
15:21
Deeper Science
Рет қаралды 78 М.
Quest To Find The Largest Number
11:43
CodeParade
Рет қаралды 595 М.
How on Earth does ^.?$|^(..+?)\1+$ produce primes?
18:37
Stand-up Maths
Рет қаралды 396 М.
How To Catch A Cheater With Math
22:38
Primer
Рет қаралды 5 МЛН
The most unexpected answer to a counting puzzle
5:13
3Blue1Brown
Рет қаралды 13 МЛН
"It's just a Coincidence"
8:28
Digital Genius
Рет қаралды 665 М.
New largest prime number found! See all 41,024,320 digits.
10:14
Stand-up Maths
Рет қаралды 436 М.
Visualizing 4D Pt.1
22:56
HyperCubist Math
Рет қаралды 1 МЛН
ТЫ В ДЕТСТВЕ КОГДА ВЫПАЛ ЗУБ😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 3,8 МЛН