Inspiration
My Hipotesis of a new case of factorization Prime Numbers that conect with harmonic spiral series https://www.geogebra.org/classic/ct8vkwg8
What it does
New case of factorization Prime Numbers and create a big prime numbers
How we built it
With Geogebra and Api connect open data sciencia
Challenges we ran into
Prime Numbers and Processors Cryptography: Prime numbers are critical in creating robust cryptographic keys. Algorithms such as RSA rely on the difficulty of factoring large prime numbers1. Factorization Algorithms: The efficiency of processors can be measured by algorithms that break down large numbers into their prime factors. These algorithms are computationally intensive and can serve as performance tests for new processors1. Prime Number Distribution: Research into the distribution and patterns of prime numbers can lead to the development of more efficient algorithms, which in turn can improve the speed and efficiency of processors1. Mathematical Prototyping To prototype processor speed using prime numbers, one can follow these steps:
Prime Number Generation: Use algorithms such as the Sieve of Eratosthenes to generate large prime numbers. Factorization Testing: Implement factorization algorithms and measure the time it takes the processor to decompose large numbers. Load Simulation: Create simulations that use prime numbers to generate intensive workloads and measure processor performance under these conditions.
Processor Applications Performance Testing: Factorization algorithms are computationally intensive and are used to measure processor performance. By running these algorithms, one can assess the processor's ability to handle complex calculations1. Cryptography: Prime numbers are fundamental in cryptography. Algorithms such as RSA use factorization of large numbers into their prime components to generate secure keys2. Algorithm Optimization: Research into the distribution of prime numbers can lead to the development of more efficient algorithms, thus improving the speed and efficiency of processors.
Accomplishments that we're proud of
https://youtu.be/TpT1R_hO_xY?si=isYSY423LizvX6Rd
What we learned
A computing algorithm that uses prime numbers can have various applications, from cryptography to processor optimization. Here I explain how one of the most common algorithms works: the prime number factorization algorithm.
Prime Number Factorization Algorithm Input: A natural number ( n ) greater than 1 is taken. Initialization: Start with the smallest prime number, which is 2. Division: Divide ( n ) by the current prime number. If ( n ) is divisible, save the prime number and update ( n ) by dividing it by this prime number. If ( n ) is not divisible, move on to the next prime number. Repetition: The process is repeated until ( n ) is reduced to 1. Output: The list of prime numbers obtained is the factorization of ( n ). Example in Pseudocode function factorize(n): factors = [] divisor = 2 while n > 1: while n % divisor == 0: factors.append(divisor) n = n / divisor divisor += 1 return factors
What's next for AIPrime algorithms: Applications in Processors Factorization
MY new hypothesis prime numbers formula chance the geometric processor
Built With
- geogebra
Log in or sign up for Devpost to join the conversation.