The factorization tag has no wiki summary.
0
votes
0answers
18 views
Factorization - Get prime numbers p and q from big number having n, e, d in RSA cryptosystem
The problem is about RSA cryptosystem. I have this 3 numbers which are:
n (n = p * q)
where p and q are big prime numbers, e number which is used for encryption,
d number which is used for ...
2
votes
1answer
62 views
Fastest factorization process in java [closed]
I am writing a program in java which works to calculate the sqrt of a given value up to 10^100
. For this, I know I have to use a BigInteger but the process I am dealing with is not so efficient as it ...
0
votes
0answers
7 views
Entity factorization and relationship in ER modeling
Please consider this case:
An entity called "MeasuredData" has the following attributes :
m_code
m_start_time
m_valeur
unit
conversion_coeffcient
duration(secondes)
calcul_type
This entity can ...
1
vote
1answer
50 views
Python Pollard P-1 factorization
I'm trying to implement Pollard's P-1 factorization in Python. Note that the Rho method has some answers but this p-1 is different and the best I can give you here about p-1 is the wiki and the ...
-2
votes
0answers
36 views
I need resolve a linear system with matlab [closed]
I have to solve a linear system with the following properties:
Ax = b;
A = pascal(n)
b = rand(n; 1);
using factorization methods.
I'm lost, where should I start?
-2
votes
0answers
29 views
How can download this dataset? [closed]
I have to download the datasets Sports, LA12 Reviews and used in this paper:
Fast Co-Clustering by Ranking and Sampling
there is the link: http://trec.nist.gov/data.html, but after I get lost. ...
-2
votes
1answer
166 views
How to solve polynomial with 4 or 7 variables in Fastest possible way
Given equation :
K = Ap + Bq + Cr + Ds.
Solution I tried :
Terms we already know : A, B, C, D, K
Finding term s given p, q, r;
p=0, q=0, r=1;
compute() => s = (K - Ap - Bq - Cr)/D;
continue ...
-1
votes
2answers
91 views
brute force BigInteger Factorization
as you can tell by the title, I am working on trying to brute force the factorization of large integers whose factors are 2 primes. I was wondering if there was a way to use a for loop inside a for ...
1
vote
0answers
24 views
Lapack SPPTRF available?
do you know if MATLAB supports the LAPACK spptrf function.
This function is quite a bargain when you gotta compute Cholesky factorization of a huge positive definite symmetric matrix.
It allows for ...
1
vote
2answers
38 views
How to do rank-1 factorization in MATLAB?
I have a matrix M of dimensions 6x6 and it has rank 1. How can I factorize it into two matrices of dimensions 6x1 (say A) and 1x6 (say B) so that M=A*B.
3
votes
2answers
80 views
Find the numbers of self-product within a range
The question is in the title. Now to make the term self-product more clear. Self-product means the product of the number and its digits. Example:
Self-Product(1234) = 1234*1*2*3*4 = 29616.
I've ...
6
votes
1answer
320 views
Cholesky factorization
within a matlab code of mine, I have to deal with the Cholesky factorization of a certain given matrix. I am generally calling chol(A,'lower') to generate the lower triangular factor.
Now, checking ...
0
votes
2answers
41 views
Fermats factorization method not functioning
I'm working on a program to compare different algorithms for factorization of large integers. One of the algorithms I'm including in the comparison is Fermats factorization method. The algorithm seems ...
3
votes
2answers
123 views
Unstable results from Python factoring function
def test_prime(n):
q = True
for p in range(2,n): #Only need to check up to rootn for primes and n/2 for factors
if int(n%p) is 0:
q = False
print(p, ...
3
votes
1answer
255 views
Efficiently solving linear system with Laplacian + diagonal matrix
Dear fellow Matlab users,
In my implementation of an image processing algorithm, I have to solve a large linear system of the form A*x=b, where:
matrix A=L+D is the sum of a Laplacian matrix L and ...
0
votes
1answer
138 views
How long would it take my i-7 processor to factorise a 1024 bits number (consisting of just 2 prime factors) [closed]
We're examining the RSA algorithm and would like to know how much time it would take an intel i-7 core (@ 2.50 gHz) to factorise the RSA-public key.
we wrote a piece of java for this, and I don't ...
1
vote
0answers
352 views
Implementing the birthday paradox continuation of elliptic curve factorization
I would like to add the birthday paradox continuation of the elliptic curve factorization algorithm to my collection of factoring programs. Brent describes the algorithm in two papers, Montgomery also ...
1
vote
3answers
166 views
faster Sieve of Erathostenes and prime number factorization in Java
My input is an Integer. Up to that value, all prime numbers should be found and printed in 5 columns, then I have to "prime factorize" the integer and print the result.
It wokrs fine, but it'ts too ...
0
votes
0answers
29 views
MKL: calling ?gbtrf
I have to use MKL to solve a system of linear equation. This system of equations is used to solve the 2D poisson problem, so exactly 5 diagonals will be different from 0. The matrix A of the system ...
1
vote
2answers
541 views
Calculating Eulers Totient Function for very large numbers JAVA
I've managed to get a version of Eulers Totient Function working, albeit one that works for smaller numbers (smaller here being smaller compared to the 1024 bit numbers I need it to calculate)
My ...
0
votes
1answer
66 views
pymf factorization solution sorted?
I try apply a matrix factorization on my dataset by using pymf module. As described in the example on the pymf site, I use non-negative matrix factorization, so I get some W- and H-matrices. How can I ...
0
votes
0answers
154 views
Doing NMF in R with missing values (NA) in the matrix
I am looking for a package/if-possible-relatively-off-the-shelf solution for NMF (non-negative matrix factorization) in R, that can handle missing values (NA) and not consider them as 0.
The goal is ...
6
votes
4answers
781 views
Efficient way to solve for X in AX=B in MATLAB when both A and B are big matrices
I have this problem which requires solving for X in AX=B. A is of the order 15000 x 15000 and is sparse and symmetric. B is 15000 X 7500 and is NOT sparse. What is the fastest way to solve for X?
I ...
0
votes
0answers
183 views
How to get Q in QR decomposition using LAPACKE
I am using the LAPACKE interface and trying to get the QR factorization of a matrix A, I am using the following code:
double[] A = new double[4] {1,3,
4,8};
M = 2;
N = 2; ...
2
votes
3answers
374 views
why is integer factorization a non-polynomial time?
I am just a beginner of computer science. I learned something about running time but I can't be sure what I understood is right. So please help me.
So integer factorization is currently not a ...
2
votes
2answers
543 views
Speeding up my Fermat Factorization function (Python)
My task is to factor very large composite numbers using Fermat's factorization method. The numbers are 1024 bits large, which is around 309 decimal digits.
I have come up with the Python code below, ...
1
vote
2answers
875 views
Java Display the Prime Factorization of a number
So for my assignment, I have to write a program that asks the user for an integer input and then print out that number's prime factorization.
This is what I have:
import java.util.Scanner;
public ...
8
votes
4answers
383 views
Reducing Integer Fractions Algorithm
(This is derived from a recently completed programming competition)
You are given two arrays of 10^5 ints in the range 1..10^7 inclusive:
int N[100000] = { ... }
int D[100000] = { ... }
Imagine ...
0
votes
0answers
898 views
MatLab - Gaussian elimination with scaled row pivoting
I am trying to write a function which performs Gaussian elimination with scaled row pivoting. I almost have it right, but my answer is not quite correct, so something must be wrong in my code. I ...
3
votes
1answer
135 views
finding the number of divisors don't know what is going wrong
I am coding to find the number of common divisors of two numbers n and k.
I am implementing it using the approach of finding the GCD g and then finding the number of divisors of the GCD.
However the ...
0
votes
1answer
90 views
How to evaluate NMF with a Trainingset?
What is the right way to test the predictions of Non-negative Matrix Factorization? Let´s say the dataset is a matrix with users and watched movies (without rating). First I split the matrix into a ...
0
votes
3answers
135 views
factorization in python
this code is working fine. say for 1980 it gives the result 2 ^ 2 *3 ^ 2 *5 ^ 1 *7 ^ 0 *11 ^ 1 *(an extra asterisk remains at the end. i can remove it. and that has nothing to with my problem.
the ...
6
votes
4answers
347 views
library for integer factorization in java or scala
There are a lot of questions about how to implement factorization, however for production use, I would rather use an open source library to get something efficient and well tested right away.
The ...
3
votes
2answers
250 views
How to run a .py module?
I've got zero experience with Python. I have looked around some tutorial materials, but it seems difficult to understand a advanced code. So I came here for a more specific answer.
For me the mission ...
-1
votes
1answer
455 views
Pollard Rho factorization method implementation in C
Can anyone help me out with the pollard rho implementation? I have implemented this in C. It's working fine for numbers upto 10 digits but it's not able to handle greater numbers.
Please help me out ...
1
vote
1answer
640 views
Pollard Rho factorization method implementation
Every time I factor a number using Pollard Rho factorization method is it necessary to check for its primality before Pollard Rho factorization ? If yes then I have to implement Miller Rabin's ...
5
votes
3answers
363 views
Fermat's factorisation in C++
For fun, I've been implementing some maths stuff in C++, and I've been attempting to implement Fermats Factorisation Method, however, I don't know that I understand what it's supposed to return. This ...
6
votes
2answers
303 views
Fast factorization
For a given number n (we know that n = p^a * q^b, for some prime numbers p,q and some integers a,b) and a given number φ(n) ( http://en.wikipedia.org/wiki/Euler%27s_totient_function ) find p,q,a ...
2
votes
1answer
347 views
How to factorize the model in controllers?
Using Spring MVC, is there any way to factorize the org.springframework.ui.Model, in order to not to have to specify it in the method parameters within any controller?
In other words, I'm currently ...
2
votes
1answer
681 views
How would you approach this puzzle? (Finding unique factors of a number only.)
I'm working on Interview Street's "Unfriendly Numbers" puzzle.
It goes like this:
Given an integer, and another list of integers, find the factors that are only unique to the given integer, and are ...
0
votes
0answers
247 views
Convert Python to PHP - Matrix Factorization [closed]
Was wondering if anyone could possibly convert this python code in to its PHP equivalent.
import numpy
def matrix_factorisation(R, P, Q, K, steps=5000, alpha=0.0002, beta=0.02):
Q = Q.T
for ...
6
votes
3answers
473 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 ...
1
vote
4answers
78 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 ...
2
votes
3answers
357 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'.
...
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. ...
1
vote
0answers
375 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 ...
2
votes
2answers
475 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.
...
6
votes
3answers
491 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 ...
1
vote
1answer
497 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 ...
2
votes
2answers
674 views
x86 Assembly DIV Prime Factorization [closed]
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 ...




