Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
0answers
176 views

Counting (Number theory / Factors) [migrated]

so I'm stuck with this counting problem which goes like this: I've an expression: T = (N!) * (N!) / D where, D ∈[ 1 - N! ] i.e. D takes all values from 1 to N! and I've to count the number ...
10
votes
1answer
207 views

Binary GCD Algorithm vs. Euclid's Algorithm on modern computers

http://en.wikipedia.org/wiki/Binary_GCD_algorithm This Wikipedia entry has a very dissatisfying implication: the Binary GCD algorithm was at one time as much as 60% more efficient than the standard ...
7
votes
3answers
528 views

Why did I get this [1, 2, 4, 8, 16, 1, 16, 8, 4, 2, 1]?

Through much trial and error I found the following lines of python code, for N in range(2**1,2**3): print [(2**n % (3*2**(2*N - n))) % (2**N-1) for n in range(2*N+1)] which produce the ...
7
votes
5answers
650 views

finding a^b^c^… mod m

I would like to calculate: abcd... mod m Do you know any efficient way since this number is too big but a , b , c , ... and m fit in a simple 32-bit int. Any Ideas? -- This question is different ...
6
votes
6answers
645 views

Greatest GCD between some numbers

We've got some nonnegative numbers. We want to find the pair with maximum gcd. actually this maximum is more important than the pair! For example if we have: 2 4 5 15 gcd(2,4)=2 gcd(2,5)=1 ...
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!
5
votes
2answers
90 views

Algorithm for finding smallest number with given number of factors

What's the most efficient algorithm anyone can think of that, given a natural number n, returns the least natural number x with n positive divisors (including 1 and x)? For example, given 4 the ...
5
votes
4answers
1k views

Easiest way to perform modular matrix inversion with Python?

I'd like to take the modular inverse of a matrix like [[1,2],[3,4]] mod 7 in Python. I've looked at numpy (which does matrix inversion but not modular matrix inversion) and I saw a few number theory ...
5
votes
5answers
930 views

Finding perfect numbers (optimization)

I coded up a program in C# to find perfect numbers within a certain range as part of a programming challenge . However, I realized it is very slow when calculating perfect numbers upwards of 10000. ...
4
votes
4answers
399 views

Speed up calculation of partitions in Haskell

I'm trying to solve Euler problem 78, which basically asks for the first number where the partition function p(n) is divisible by 1000000. I use Euler's recursive fomula based on pentagonal numbers ...
4
votes
5answers
380 views

Generate very very large random numbers

How would you generate a very very large random number? I am thinking on the order of 2^10^9 (one billion bits). Any programming language -- I assume the solution would translate to other languages. ...
4
votes
2answers
340 views

how to represent a number as a sum of 4 primes?

Here is the problem (Summation of Four Primes) states that : The input contains one integer number N (N<=10000000) in every line. This is the number you will have to express as a summation of ...
4
votes
2answers
428 views

Sieve of Eratosthenes in Haskell

I'm solving some classic problems in Haskell to develop my functional skills and I have a problem to implement an optimization suggested at ...
4
votes
3answers
287 views

Recombine Number to Equal Math Formula

I've been thinking about a math/algorithm problem and would appreciate your input on how to solve it! If I have a number (e.g. 479), I would like to recombine its digits or combination of them to a ...
3
votes
4answers
92 views

A fast algorithm to minimize a pseudo Diophantine equation

We're looking for an algorithm to solve this problem in under O(N). given two real numbers a and b (without loss of generality you can assume they are both between 0 and 1) Find an integer n between ...
3
votes
2answers
494 views

Find sum of factors

Why does this code return the sum of factors of a number? In several Project Euler problems, you are asked to compute the sum of factors as a part of the problem. On one of the forums there, someone ...
3
votes
2answers
458 views

What is the fastest way to check if two given numbers are coprime?

One way is to calculate their gcd and check if it is 1. Is there some faster way?
2
votes
3answers
209 views

How many ways to represent a number from a given set of numbers

I want to know in how many ways can we represent a number x as a sum of numbers from a given set of numbers {a1.a2,a3,...}. Each number can be taken more than once. For example, if x=4 and a1=1,a2=2, ...
2
votes
1answer
53 views

Finding the largest modulus of congruence for two integers?

Given two integers is there an easy way to find the largest modulus of congruence for them? i.e. a % n == b %n, Or even to enumerate all of them? Obviously, I could try every value less than them, ...
2
votes
1answer
127 views

<Algorithms >Divisor Problem

Given a the number of divisors, we have to find the first triangle number. A triangle number is same as sum of natural numbers. I had adopted the method of taking prime numbers starting from 2 ...
2
votes
3answers
989 views

Calculating sum of geometric series (mod m)

I have a series S = i^(m) + i^(2m) + ............... + i^(km) (mod m) 0 <= i < m, k may be very large (up to 100,000,000), m <= 300000 I want to find the sum. I cannot apply the ...
1
vote
5answers
114 views

How to return more than one value from a C++ function?

I am interested if I can return more then one value from a function. For example consider such a function: extended euclidean algorithm. The basic step is described by this Input is nonnegative ...
1
vote
2answers
124 views

How to find total number of divisors upto N?

Given a number N, have to find number the divisors for all i where i>=1 and i<=N. Can't figure it out.Do I have to this using prime factorization? Limit is N<=10^9 Sample Output: 1 --> 1 2 ...
1
vote
1answer
141 views

Group theory within Cryptography regarding order of elements in a group of integers Z*p

I was kinda thrown in the deep end into group theory and i am a bit lost for a Cryptography class i have. Basically a practical i have to implement in java is, order(prime number, list of factors ...
1
vote
3answers
271 views

What's the fastest algorithm to represent a prime as sum of two squares?

I could use two loops to check for all combinations of two integers that less than p prime, but it's very inefficient. Is there a better algorithm to approach this problem? Any idea? Where p mod 4 ...
1
vote
6answers
363 views

Getting a list of square-free numbers

one way to get that is for the natural numbers (1,..n) we factorise each and see if they have any repeated prime factors , but that would take a lot of time for large n. So is there any better way to ...
1
vote
7answers
1k views

Algorithm to determine non-negative-values solution existance for linear diophantine equation

I am looking for a method to determine if there is a solution to equations such as: 3n1+4n2+5n3=456, where n1,n2,n3 are positive integers. Or more general: are there zero or positive integers ...
0
votes
0answers
32 views

confusing in SEAL (Software-Optimized Encryption Algorithm) mathematic notation [closed]

I'm developing an encryption software based on SEAL algorihm for my research. I found the paper in here : http://www.cs.ucdavis.edu/~rogaway/papers/seal.pdf. My Question is what is the meaning of $$ ...
0
votes
1answer
44 views

Understanding of the given Hash function

I am implementing the below steps of an algorithm , i have implemented first 3 steps successfully , and i have doubt in the last step , i am unable to understand the notation used to represent the ...
0
votes
1answer
248 views

Acm problem on Euler's Totient function (Homework)

My teacher have given us a acm problem about a math problem. I've tried but get the TLE. Here is the problem. Euler's Totient function, φ (n) [sometimes called the phi function], is used to ...
0
votes
6answers
130 views

What is going wrong with the logic?

I'm trying to write a prime generator that implements the sieve of Eratosthenes. However, it includes some composite numbers (such as 25, 49 and other multiples of 5 and 7) in the output. Here's my ...
0
votes
0answers
96 views

Optimal search heuristic for n-narcissistic numbers, for large n

What is an optimal search heuristic for n-narcissistic numbers, for given large n (say n=10..39), where 'optimal heuristic' means 'minimizes the total number of candidates tested at full-precision'? ...
0
votes
1answer
167 views

What is an elegant way to find all prime numbers in a specified range in R? [closed]

Possible Duplicate: Generate a list of primes in R up to a certain number What are elegant ways to find all prime numbers in a specified range in R language?
0
votes
1answer
217 views

How to optimize code for finding Amicable Pairs

Please see the code I've used to find what I believe are all Amicable Pairs (n, m), n < m, 2 <= n <= 65 million. My code: http://tutoree7.pastebin.com/wKvMAWpT. The found pairs: ...
0
votes
5answers
190 views

Fastest way to modify one digit of an integer

Suppose I have an int x = 54897, old digit index (0 based), and the new value for that digit. What's the fastest way to get the new value? Example x = 54897 index = 3 value = 2 y = f(x, index, ...
-2
votes
2answers
165 views

Representing an integer as the sum of four squares

Given a positive integer m, find four integers a, b, c, d such that a^2 + b^2 + c^2 + d^2 = m in O(m^2 log m). Extra space can be used. I can think of an O(m^3) solution, but I am confused about the ...
-3
votes
1answer
56 views

continuous fractions of rationals [closed]

following code shows me strange error #include<iostream> #include<math.h> #include<vector> using namespace std; int gcd(int a,int b) { return (b==0 ...