Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
8answers
2k views

What is the fastest factorization algorithm?

I've written a program that attempts to find Amicable Pairs. This requires finding the sums of the proper divisors of numbers. Here is my current sumOfDivisors() method: int sumOfDivisors(int n) { ...
9
votes
5answers
219 views

how to generate numbers given their prime factors, but with unknow exponents? [closed]

Possible Duplicate: nth ugly number Find the Kth least number for expression (2^x)(3^y)(5^z) I'm wondering how to solve this problem in a fast and elegant way: We define "ugly" every ...
7
votes
6answers
1k views

I have a Python list of the prime factors of a number. How do I (pythonically) find all the factors?

I'm working on a Project Euler problem which requires factorization of an integer. I can come up with a list of all of the primes that are the factor of a given number. The Fundamental Theorem of ...
6
votes
3answers
253 views

Find the largest divisor of N that is less than sqrt(N)

Actually, given N a (possibly very large) even integer, I want to find N = F * R where gcd(F,R) = 1, F>R, and F is as small as possible (since I'll be completely factoring F). The heart of the problem ...
6
votes
3answers
412 views

I have a new algorithm to find factors or primes in linear time - need verification for this

I have developed an algorithm to find factors of a given number. Thus it also helps in finding if the given number is a prime number. I feel this is the fastest algorithm for finding factors or prime ...
5
votes
3answers
119 views

programatically factorize a large number

Alright, so I have a huge number f. This number is just over 100 digits long, actually. I know that the factors are of approximately the same size. If I have limited resources and time, what language ...
5
votes
3answers
340 views

What is the most efficient way of finding all the factors of a number in Python?

Can someone explain to me an efficient way of finding all the factors of a number in Python (2.7)? I can create algorithms to do this job, but i think it is poorly coded, and takes too long to ...
5
votes
1answer
835 views

Generating all factors of a number given its prime factorization

If you already have the prime factorization of a number, what is the easiest way to get the set of all factors of that number? I know I could just loop from 2 to sqrt(n) and find all divisible ...
4
votes
3answers
154 views

Given a number K and a set of sorted numbers. Find if there is any number in the set which divides

Given a number k and a set of sorted numbers. Find if there is any number in the set which divides this number. For example if k = 8, and set is { 3, 4, 5}, 4 will divide 8. 4 is the answer. Worst ...
4
votes
2answers
222 views

Factor out GCD that is raised to a power

Using Mathematica (v.7) basically I want to bring an expression like this (x + x^2 + x^3)^4 to x^4 (1 + x + x^2)^4 What would be the best way to take a term like the GCD out of an expression ...
3
votes
1answer
124 views

Factorization of 512 and 1024 bit numbers [closed]

I have been given cryptography task in university. I need to factorize 2 numbers - one 512 bit and one 1024 bit and i have about a day for till deadline. I tried at first MSIEVE, but it need about ...
3
votes
3answers
139 views

Determining complexity of an integer factorization algorithm

I'm starting to study computational complexity, BigOh notation and the likes, and I was tasked to do an integer factorization algorithm and determine its complexity. I've written the algorithm and it ...
3
votes
2answers
242 views

MATLAB: Running a function from a previous version

EDIT: Thank you @yoda and @morispaa. You are both right and @morispaa's solution works, i.e. my processing of the transformed coefficients, which is based on assumptions about the space spanned by Z, ...
3
votes
3answers
1k views

Factor a large number efficiently with gmp

I need to get all the prime factors of large numbers that can easily get to 1k bits. The numbers are practically random so it shouldn't be hard. How do I do it efficiently? I use C++ with GMP library. ...
3
votes
5answers
235 views

Question about relations between two numbers

Is there is any relation between numbers' bits when one is divisible by another? What is the relation between the bits of 36 and the bit sequences of 9 or 4 or 12, or between 10 (1010) and 5 (101), ...
2
votes
3answers
207 views

x86 Assembly DIV Prime Factorization

I'm fairly new to assembly, and I'm trying to print out the prime factorization of a given number. After hours of scouring the net, I've found some useful tidbits about the DIV instruction, but I ...
2
votes
2answers
159 views

Pollard-Rho Factorization Parallelization

I recently stumbled upon a paper on a parallelization of the Pollard-rho algorithm, and given my specific application, in addition to the fact that I haven't attained the required level of math, I'm ...
2
votes
1answer
44 views

Is there a way to optimize reducing many numbers to the same modulus

I am writing a program to do integer factorization and have to reduce a series of numbers to a given modulus. Both the number and the modulus are bigints, say 50 to 100 digits. The number changes ...
2
votes
2answers
861 views

Pollard rho integer factorization

I am trying to implement Pollard Rho integer factorization in C/C++.Google gives me a Java implementation of the problem here. I don't know Java that well,so what I came up with this.My implemenation ...
1
vote
4answers
46 views

What is a good language to work with arbitrary length integers?

I want to factorise integers, for example 41748850938502584251 I want to factorise this using brute-force. Given the short length of this number this should be possible. What's a suitable ...
1
vote
1answer
65 views

Dense Cholesky update in Python

Could anyone point me to a library/code allowing me to perform low-rank updates on a Cholesky decomposition in python (numpy)? Matlab offers this functionality as a function called 'cholupdate'. ...
1
vote
0answers
105 views

Running msieve in parallel

I have a very non-standard task and now the deadline for it is approaching :) Factorizing 512bit number with msieve program would take at least about 3-4 weeks. The point is to do this more ...
1
vote
2answers
94 views

2-3-5-7 wheel factorization seems to skip prime number 331

When following the procedure on wikipedia for wheel factorization, I seem to have stumbled into a problem where the prime number 331 is treated as a composite number if I try to build a 2-3-5-7 wheel. ...
1
vote
0answers
123 views

Thin QR decomposition in c++

Is there an easy to use c++ library for "thin" QR decomposition of a rectangular matrix? Eigen seems to only support full Q matrices. I can take a full Q and discard some columns, but would it be more ...
1
vote
3answers
251 views

What's wrong with this Pollard Rho implementation

#include <iostream> #include <cstdlib> typedef unsigned long long int ULL; ULL gcd(ULL a, ULL b) { for(; b >0 ;) { ULL rem = a % b; a = b; b = rem; } ...
0
votes
3answers
370 views

Explain the float - int problem in factorization

I am missing here the technical word but the problem here is either to change int to float or float to int. def factorize(n): def isPrime(n): return not [x for x in ...