Tagged Questions
1
vote
3answers
108 views
Why did this prime factorisation algorithm give the correct answer even though there is a flaw?
The problem stated to me was this:
"What is the largest prime factor of the number 600851475143 ?"
The program is used to find the answer was exactly this using C:
#include<math.h> // for ...
0
votes
1answer
141 views
Sum of prime numbers below 2000000?
How do i find the sum of all primes below 2 million? Project Euler 10th question, http://projecteuler.net/problem=10.
I tested my code for below 10 and works like a charm. But below 2 million does not ...
0
votes
2answers
155 views
How to find prime factors of a number in c++?
I am attempting project euler question number 3, and I don't get the desired result. My logic:
List all the factors of the number 13195 and save them in an array.
Check if each number in the array ...
-1
votes
3answers
120 views
How to print all prime numbers in c++?
I'm trying to print all the prime numbers in series, the code I ended up with is below, instead of printing all primes it prints random numbers, Some are prime and some are not :/
Why is that so?
...
-1
votes
2answers
82 views
Finding the 10001st Prime Number - Project Euler [closed]
I am trying to find the 10,001th prime number. I have looked at other code people have written , but I don't really understand what it means. I have written some code in JavaScript in which I tried to ...
0
votes
1answer
149 views
Wrong Answer for Project Euler 50
I am attempting Problem 50 of project euler.
The prime 41, can be written as the sum of six consecutive primes:
41 = 2 + 3 + 5 + 7 + 11 + 13 This is the longest sum of consecutive
primes ...
1
vote
3answers
463 views
Finding largest prime number out of 600851475143?
I'm trying to solve problem 3 from http://projecteuler.net. However, when I run thing program nothing prints out.
What am I doing wrong?
Problem: What is the largest prime factor of the number ...
1
vote
1answer
141 views
Unable to process number 600851475143, but I can 13195 perfectly
Basically, I've been trying to complete the 3rd question on projecteuler.net. The example gives me the number 13195 which this program (writting in C) accurately returns a prime factor tree of 5 7 13 ...
0
votes
2answers
109 views
Generating primes in Haskell
I have been learning Haskell over the last few days, through Learn You A Haskell. I've been attempting to complete some Project Euler problems, some of which require primes. However the function I ...
-1
votes
3answers
316 views
Summation of Prime Numbers in C++ [closed]
Hi guys I am working on a program to give the sum of all prime numbers under two million. Here's what I have... and I know this method works for finding prime numbers because I have used it before... ...
0
votes
1answer
291 views
Project Euler #37: my solution is too slow
I am toying with project euler problem 37. The problem is stated as follows:
The number 3797 has an interesting property. Being prime itself, it is possible to continuously remove digits from left ...
1
vote
2answers
120 views
javascript crashes in a browser when running this script, what's wrong?
I'm trying to solve a mathematical problem from http://projecteuler.net using javascript: to find the sum of all the primes below two million. When I run the script I wrote, my browser crashes (I'm ...
-1
votes
2answers
578 views
Stuck on Project Euler #3 in python
The prime factors of 13195 are 5, 7, 13 and 29. What is the largest
prime factor of the number 600851475143 ?
Ok, so i am working on project euler problem 3 in python. I am kind of confused. I ...
0
votes
2answers
345 views
Trying to see if a number is prime in pyhon
So im trying to write a program that tells you wether a number is prime or not. Here it is. As you can see when you run the chkPrime function everything returns true. I for the life of me cant figure ...
2
votes
3answers
307 views
Project Euler 3 - Why does this method work?
The prime factors of 13195 are 5, 7, 13 and 29.
What is the largest prime factor of the number 600851475143?
I solved this problem on Project Euler my own way, which was slow, and then I found this ...
1
vote
5answers
358 views
Project Euler #3 takes forever in Java
Problem #3 on Project Euler is:
The prime factors of 13195 are 5, 7, 13 and 29.
What is the largest prime factor of the number 600851475143?
My solution takes forever. I think I got the ...
2
votes
5answers
543 views
Prime Sieve in Haskell
I'm very new to Haskell and I'm just trying to find the sum of the first 2 million primes. I'm trying to generate the primes using a sieve (I think the sieve of Eratosthenes?), but it's really really ...
9
votes
4answers
549 views
Why is this prime test so slow?
This code was taken from the book "Haskell Road to Logic, Math and Programming". It implements sieve of eratosthenes algorithm and solves Project Euler Problem 10.
sieve :: [Integer] -> [Integer]
...
1
vote
3answers
356 views
Big Prime Numbers in c
I doing another question from the Eular problems page.
The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.
Find the sum of all the primes below two million.
I've managed to write the code below ...
1
vote
1answer
274 views
Project Euler #3 with Java [closed]
I am currently working on the third project euler problem and my code gets me a list of primes but the final prime is not the correct one for the answer and also it seems to go through the primes ...
1
vote
4answers
931 views
Project Euler 10 - Why the first python code runs much faster than the second one?
10 problem in the Project Euler is:
The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.
Find the sum of all the primes below two million.
I found this snippet :
sieve = [True] * 2000000 ...
-1
votes
1answer
497 views
Prime generating number finder not producing correct output
I'm working on this problem:
Consider the divisors of 30: 1,2,3,5,6,10,15,30.
It can be seen that for every divisor d of 30, d+30/d is prime.
Find the sum of all positive integers n not ...
14
votes
3answers
302 views
Why is this Haskell code snippet not infinitely recursive?
To help me learn Haskell, I am working through the problems on Project Euler. After solving each problem, I check my solution against the Haskell wiki in an attempt to learn better coding practices. ...
0
votes
3answers
402 views
Project Euler #3, infinite loop on factorization
So I'm doing Project Euler because dear gods do I need to practice writing code, and also my math skills are rusty as something very rusty. Thusly; Project Euler. I'm sure most here have already seen ...
3
votes
4answers
203 views
What is the bottleneck in this primes related predicate?
So here it is : I'm trying to calculate the sum of all primes below two millions (for this problem), but my program is very slow. I do know that the algorithm in itself is terribly bad and a ...
0
votes
3answers
614 views
Prime factor and JavaScript
I'm stuck with the JavaScript code I am using for solving a problem which states:
The prime factors of 13195 are 5, 7, 13 and 29.
What is the largest prime factor of the number 600851475143 ?
...
0
votes
2answers
2k views
Find the sum of all the primes below two million [duplicate]
Possible Duplicate:
How much time should it take to find the sum of all prime numbers less than 2 million?
I am trying to implement a simple sieve of erathosthenes to solve this question on ...
4
votes
3answers
840 views
Why is this scala prime generation so slow/memory intensive?
I run out of memory while finding the 10,001th prime number.
object Euler0007 {
def from(n: Int): Stream[Int] = n #:: from(n + 1)
def sieve(s: Stream[Int]): Stream[Int] = s.head #:: ...
-2
votes
1answer
741 views
Finding if a number is prime using Python [duplicate]
Possible Duplicates:
Fastest way to list all primes below N in python
Checking if a number is a prime number in Python
I am working on Project Euler Problem 10, which states as follows:
...
2
votes
3answers
556 views
Why is my implementation of Atkin sieve is slower than Eratosthenes?
I'm doing problems from Project Euler in Ruby and implemented Atkin's sieve for finding prime numbers but it runs slower than sieve of Eratosthenes. What is the problem?
def atkin_sieve(n)
primes = ...
3
votes
1answer
103 views
How to call the lazy-seq made so far within construction of a lazy-seq?
For my prime numbers lazy seq, I am checking to see if an index value is divisible by all the primes below that current index (prime?). The problem is, when I call primes within itself (primes within ...
0
votes
2answers
837 views
Summing Prime Numbers below two million
You may have heard of a website called Project Euler (projecteuler.net). I'm working through the first problems, which were quite trivial, and I'm on the problem described in the title.
This isn't ...
4
votes
1answer
252 views
Speeding up string splitting and concatenation
I'm trying to solve Project Euler's problem #35
The number, 197, is called a circular prime because all rotations of the digits: 197, 971, and 719, are themselves prime.
How many circular ...
2
votes
3answers
6k views
Quickly determine if a number is prime in Python for numbers < 1 billion
My current algorithm to check the primality of numbers in python is way to slow for numbers between 10 million and 1 billion. I want it to be improved knowing that I will never get numbers bigger than ...
3
votes
8answers
2k views
How much time should it take to find the sum of all prime numbers less than 2 million?
I was trying to solve this Project Euler Question. I implemented the sieve of euler as a helper class in java. It works pretty well for the small numbers. But when I input 2 million as the limit it ...
3
votes
2answers
587 views
Help optimize my haskell code - Calculate the sum of all the primes below two million
Problem 10 in Project Euler. I saw some discussion there but only for C.
I used the following code to calculate:
print . sum . sieve $ [2..2000000] where
sieve [] = []
sieve (x:xs) = x : ...
1
vote
5answers
144 views
Python modifying wrong list?
I'm trying to generate a list of primes using the this method. I need to loop through every number 2...n and check it for multiples of 2...n. For some reason, the wrong list seems to be getting ...
0
votes
8answers
10k views
Prime Factorization Program in Java
I am working on a prime factorization program implemented in Java.
The goal is to find the largest prime factor of 600851475143 (Project Euler problem 3).
I think I have most of it done, but I am ...
5
votes
4answers
629 views
Fastest prime test for small-ish numbers
I'm playing through project Euler in my spare time, and it's come to the point where I need to do some refactoring. I've implemented Miller-Rabin, as well as a few sieves. I've heard before that ...
0
votes
1answer
157 views
My Qustion 1: It's an assignmnt [closed]
The number 3797 has an interesting property...Being prime itself , it is possible to continuously remove digits from left to right,but remain prime at each stage....:3797,797,97,7....similarly we can ...
-1
votes
4answers
892 views
Project Euler #10, java [duplicate]
Possible Duplicate:
Project Euler, Problem 10 java solution not working
So, I'm attempting to solve Project Euler Problem 10 in Java, and I'm getting not the right answer. Here's my code:
...
9
votes
3answers
1k views
Need help optimizing solution for Project Euler problem #12
I've been having my fun with Project Euler challenges again and I've noticed that my solution for number 12 is one of my slowest at ~593.275 ms per runthrough. This is second to my solution for number ...
0
votes
2answers
225 views
Python Syntax Problem
I'm just getting back into Project Euler and have lost my account and solutions, so I'm back on problem 7. However, my code doesn't work. It seems fairly elementary to me, can someone help me debug my ...
3
votes
6answers
2k views
Project Euler, Problem 10 java solution not working
I'm trying to find the sum of the prime numbers < 2,000,000. This is my solution in java but I can't seem get the correct answer. Please give some input on what could be wrong and general advice on ...
2
votes
2answers
314 views
Have I checked every consecutive subset of this list?
I'm trying to solve problem 50 on Project Euler. Don't give me the answer or solve it for me, just try to answer this specific question.
The goal is to find the longest sum of consecutive primes that ...
3
votes
8answers
705 views
Project Euler: Programmatic Optimization for Problem 7?
So I would call myself a fairly novice programmer as I focused mostly on hardware in my schooling and not a lot of Computer Science courses.
So I solved Problem 7 of Project Euler:
By listing the ...
7
votes
12answers
4k views
Stack overflow when calculating the 10,001st prime number in Java
I am doing problem 7 of Project Euler. What I am supposed to do is calculate the 10,001st prime number. (A prime number is an integer greater than one that is only divisible by itself and one.)
Here ...
113
votes
19answers
20k views
Fastest way to list all primes below N in python
This is the best algorithm I could come up with after struggling with a couple of Project Euler's questions.
def get_primes(n):
numbers = set(range(n, 1, -1))
primes = []
while numbers:
...
6
votes
10answers
5k views
Find out 20th, 30th, nth prime number. (I'm getting 20th but not 30th?) [Python]
The question is to find the 1000th prime number. I wrote the following python code for this. The problem is, I get the right answer for the 10th , 20th prime but after that each increment of 10 leaves ...
0
votes
4answers
393 views
Sum of primes, Conundrum
So after pulling my hair out for 30 minutes, I have decided to come to SO for some help on this problem:
The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.
Find the sum of all the primes ...
