Tagged Questions
13
votes
1answer
216 views
Print a polynomial using minimum number of calls
I keep getting these hard interview questions. This one really baffles me.
You're given a function poly that takes and returns an int. It's actually a polynomial with nonnegative integer ...
6
votes
7answers
1k views
Solving a Linear Diophantine Equation(see description for examples)
Let me start off by clarifying that(before you guys dismiss me), this is not a homework problem and I'm not a university student. :)
EDIT
Thanks to @Klas and others, my question now boils down to a ...
4
votes
3answers
365 views
Polynomial multiplication complexity reduction
I have been trying to figure tis ou for 3 days and have not gotten anywhere. I have to implement polynomial multiplication (multiply 2 quadratic equations). They look like:
( a1 x^2 + b1 x + c1 ) * ...
4
votes
1answer
188 views
Find a root of a polynomial modulo 2^r [closed]
I have a polynomial P and I would like to find y such that P(y) = 0 modulo 2^r.
I have tried something along the lines of Hensel lifting, but I don't know if this could even work, because of the ...
4
votes
1answer
1k views
Algorithm for computing the inverse of a polynomial
I'm looking for an algorithm (or code) to help me compute the inverse a polynomial, I need it for implementing NTRUEncrypt. An algorithm that is easily understandable is what I prefer, there are ...
2
votes
2answers
173 views
Durand-kerner implementation doesn't work
What's wrong with this implementation of the Durand-Kerner algorithm (here) ?
def durand_kerner(poly, start=complex(.4, .9), epsilon=10**-16):#float('-inf')):
roots = []
for e in ...
2
votes
2answers
339 views
Efficient polynomial evaluation with Horner's Algorithm
I have the equation y = 3(x+1)^2 + 5(x+1)^4.
Using Horner's scheme I could evaluate this polynomial in this form, y = 8+x(26+x(33+x(20+5x))), thus requiring 8 arithmetic operations.
I could also ...
1
vote
6answers
357 views
what is the sum of a sum?
Σ from i=1 to n of(n)(n+1)/2
what is the upper limit of computation for a give n? is it O(n^3) O(n^2)?
example:
n=1 , sum =1
n=2 , sum= 1+ 1+2 , sum = 3
n=3, sum= 1+1+2+1+2+3, sum = 10
n=4, sum ...
0
votes
1answer
157 views
Matlab Multiple Regression
I have this set of variables:
N = 250;
% independent variables[0..10]
x_1 = rand(N,1) * 10;
x_2 = rand(N,1) * 10;
y = ones(N,1); % regresssion variable
y((x_1 + x_2 + rand(N,1) * 2) <= 11) = 2;
...
0
votes
4answers
1k views
polynomial multiplication using fastfourier transform
i am going through the above topic from CLRS(CORMEN) (page 834) and I got stuck at this point.
Can anybody please explain how the following expression,
A(x)=A^{[0]}(x^2) +xA^{[1]}(x^2)
follows ...