Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
7answers
2k views

Brute-force, single-threaded prime factorization

Up for consideration is the following function which can be used to (relatively quickly) factor a 64-bit unsigned integer into its prime factors. Note that the factoring is not probabalistic (i.e., it ...
10
votes
3answers
647 views

Rainbow tables as a solution to large prime factoring

In explanations I've read about public key cryptography, it is said that some large number is come up with by multiplying together 2 extremely large primes. Since factoring the product of large primes ...
6
votes
1answer
2k views

What's a nice method to factor gaussian integers?

I already have prime factorization (for integers), but now I want to implement it for gaussian integers but how should I do it? thanks!
4
votes
3answers
157 views

How to Concurrent Prime Factorization?

The following code snippet calculate prime factors of a given number: public static LinkedList<Long> getPrimeFactors(Long number) { LinkedList<Long> primeFactors = new ...
4
votes
2answers
555 views

Efficiently finding all divisors of a number

So I simply want to find all the divisors of a given number (excepting the number itself). Currently, I have this: public static List<int> proper_divisors(int x) { List<int> toreturn ...
4
votes
7answers
313 views

Exceeding the size of lists in python

I'm trying to implement the sieve of eratosthenes in python, however when trying to find all primes up to the sqare root of for instance 779695003923747564589111193840021 I get an error saying result ...
4
votes
4answers
965 views

Finding prime factors to large numbers using specially-crafted CPUs

My understanding is that many public key cryptographic algorithms these days depend on large prime numbers to make up the keys, and it is the difficulty in factoring the product of two primes that ...
3
votes
3answers
161 views

Finding a prime number at least a 100 digits long that contains 273042282802155991

I am new to Java and one of my class assignments is to find a prime number at least 100 digits long that contains the numbers 273042282802155991. I have this so far but when I compile it and run it ...
3
votes
1answer
2k views

Find all possible factors in KenKen puzzle 'multiply' domain

A KenKen puzzle is a Latin square divided into edge-connected domains: a single cell, two adjacent cells within the same row or column, three cells arranged in a row or in an ell, etc. Each domain ...
2
votes
2answers
239 views

modulus operations on long long in c++

I am working on prime factorization on large numbers (mainly, project 3 @ project Euler. I need to use the modulus on numbers declared as long long. Everytime I try to modulus that gigantic number I ...
2
votes
1answer
489 views

Prime Factors In C#

I want to create a program in C# 2005 which calculates prime factors of a given input. i want to use the basic and simplest things, no need to create a method for it nor array things etc. just simple ...
2
votes
3answers
199 views

Comparing an Integral and a Floating values

So, I am in the process of learning Haskell, and am frequently falling to type/type-classes related errors. Some pretty obvious silly mistakes, and some that make me feel haskell isn't right for me. ...
2
votes
4answers
1k views

Finding largest prime factor of a composite number in c

I am accepting a composite number as an input. I want to print all its factors and also the largest prime factor of that number. I have written the following code. It is working perfectly ok till the ...
2
votes
4answers
2k views

Python recursive program to prime factorize a number

I wrote the following program to prime factorize a number: import math def prime_factorize(x,li=[]): until = int(math.sqrt(x))+1 for i in xrange(2,until): if not x%i: ...
2
votes
3answers
1k views

n-th prime number problem, need to speed it up a bit

There is simple cipher that translates number to series of . ( ) In order to encrypt a number (0 .. 2147483647) to this representation, I (think I) need: prime factorization for given p (p is ...
2
votes
2answers
606 views

C or C++: Libraries for factoring integers?

It seems that there are several really fast prime factorization algorithms around (one that looks ideal is quadratic sieving). However, rather than make my own (likely poor) implementation I would ...
1
vote
1answer
106 views

Automatic integer factoring for 310-digit decimal numbers

Is here some software, which is capable of factoring a 310-digit decimal integer number into primes? There was msieve, which I successfully used for 120-digit factoring, but 310 digit is greater than ...
1
vote
2answers
221 views

Reconstructing a list of divisors from the prime factors (recursively)

I have a list of the prime factors of a number in the following form: int[] factors = {number of factors,factor1,poweroffactor1,factor2,poweroffactor2,...}; I want to get the equivalent of ...
1
vote
6answers
581 views

Largest Prime Factor algorithm optimization

I'm trying to improve this interesting algorithm as much as I can. For now, I have this: using System; class Program { static void Main() { ulong num, largest_pFact; uint i ...
1
vote
4answers
2k views

Recursive prime factor algorithm in java

I am trying to implement a simple algorithm in java for finding all prime number factors of an integer passed by parameter: private static ArrayList<Integer> lstPrime= new ...
1
vote
3answers
310 views

Finding the prime factor of a Long number using Java

public class prime { public static void main(String[] args) { long thing = 600851475143L; for(long i = 300425737571L ; i == 0 ; i-- ){ if (thing % i == 0) { long ...
1
vote
4answers
682 views

Write an algorithm to return the prime numbers of an integer, for example if your input is 10 the output is list a with elements 2 and 5

this one i get as assignment in discrete maths. i try to do like this. procedure prime_numbers (x) n:= 1 for i:= to n<=x do n mod i=1 then return (prime) end prime_number.
1
vote
3answers
180 views

Making solution for Project Euler more efficient

Originally, I was having some issues getting this code to function, but after a little tweaking I got it debugged and ready to go. I have gone through several revisions of this program. I started ...
1
vote
2answers
58 views

Finding the optimum column and row size for a table with n elements and a given range for its proportion

I am looking for an optimum way to create a table from n elements so that ideally there are no empty cells, but at the same time the proportion of the table dimensions colums / rows becomes as close ...
0
votes
4answers
186 views

Handling memory usage for big calculation in python

I am trying to do some calculations with python, where I ran out of memory. Therefore, I want to read/write a file in order to free memory. I need a something like a very big list object, so I thought ...
0
votes
3answers
103 views

problem in prime algorithm in C

Following the answer from @neal aise here to get prime factors: I did: /*neal aise's code*/ printPrimeFactors(int num) { int i; for (i = 2; i < sqrt(num); i=next_prime(i)) { if (num %i){ ...
0
votes
0answers
604 views

Java Prime Number Algorithm [closed]

I am making a prime algorithm in java to calculate the number of primes up to 1 billion. The correct answers are commented below. I am making this program to try to make it run faster than the other ...
0
votes
3answers
436 views

C# largest prime factor with modulo?

I was wondering if it is possible to find the largest prime factor of a number by using modulos in C#. In other words, if i % x == 0 then we could break a for loop or something like that, where x is ...
0
votes
8answers
539 views

While loop example

x = y // 2 # For some y > 1 while x > 1: if y % x == 0: # Remainder print(y, 'has factor', x) break # Skip else x -= 1 else: # Normal exit print(y, 'is prime') This ...
-1
votes
2answers
898 views

Prime Numbers Code Help

I am suppose to "write a Java program that reads a positive integer n from standard input, then prints out the first n prime number." It's divided into 3 parts. 1st: This function will return true or ...