Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
1answer
215 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 ...
11
votes
1answer
312 views

How to perform a complicated change of variables for a polynomial (in Mathematica)

I have an integer polynomial in four variables (w, x, y, and z) that I know can be written as an integer polynomial in these six variables: a = w z b = x y c = w^3 + z^3 d = x + y e = w^3 x + y z^3 ...
6
votes
5answers
131 views

Storing polynomials in TreeMaps — Why?

I wrote an exam paper today, for a university course concerned with the implementation of data structures in Java. The last question was along these lines: Explain why it's convienient to use a ...
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 ...
5
votes
4answers
96 views

How to use polynomials instead of bits to improve the performance?

I have a 128-bit string, and my supervisor has asked me to represent those 128 bits as a polynomial. This is a scan of the paper he was writing on: His idea is, since we are eliminating the 0s ...
5
votes
1answer
71 views

library for affine k-algebra computations?

I'm looking for a library or computer algebra system that will help compute operations on polynomials in the ring F_2[x_1, ..., x_n] / <f^2 - f> where F_2 is the 2-element finite field, and ...
5
votes
5answers
542 views

Calculating the area underneath a mathematical function

I have a range of data that I have approximated using a polynomial of degree 2 in Python. I want to calculate the area underneath this polynomial between 0 and 1. Is there a calculus, or similar ...
4
votes
3answers
364 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
2answers
211 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 ...
4
votes
5answers
576 views

efficiently determining if a polynomial has a root in the interval [0,T]

I have polynomials of nontrivial degree (4+) and need to robustly and efficiently determine whether or not they have a root in the interval [0,T]. The precise location or number of roots don't concern ...
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 ...
4
votes
2answers
364 views

Implementing Recursion from psuedo-code (NTRUEncrypt)

I am required to implement the NTRU Public Key Cyptosystem as part of my final year University project. I'm trying to implement an algorithm that multiplies long polynomials via recursion, however I'm ...
3
votes
1answer
80 views

Sum of products taking k elements from a set of n elements

Given a set S with n elements, and an integer k. I need to find the sum of products of all n choose k pairs. That is, if S = {1,2,3,4} and k = 2, then I am looking for P = 1*2 + 1*3 + 1*4 + 2*3 + 2*4 ...
3
votes
1answer
99 views

Reduce results in an error for a polynomial with real (non-integer) coefficients

In Mathematica, I tried to check some condition for a polynomial, whose parameters change in a range. My calculations are 5th order but I made a simple one to show my needs. When I create a ...
3
votes
1answer
201 views

How do I break a non-straight line into even segments?

I have a non-straight line defined by a series of x, y coordinate points. I could draw a straight line on-screen directly between these points with no problem. Unfortunately, I have to draw the line ...
3
votes
2answers
327 views

difference between parametric and algebraic equation of sphere intersection with line

I'm writing a Raytracer in C, and to draw a sphere I'm using the Cartesian equation: x^2 + y^2 + z^2 = R^2. I have my eye position (x_eye, y_eye, z_eye) and my eye vector (Vx, Vy, Vz). The ...
3
votes
1answer
215 views

How to simplify and display an equation using C?

I want to find the characteristic equation of a matrix . I`m aware of how it is done mathematically but how do I display it in the form of an equation ? eg : Given matrix : 3 7 9 8 6 2 1 8 6 now if ...
3
votes
3answers
700 views

What is a simple way to find real roots of a (cubic) polynomial?

this seems like an obvious question to me, but I couldn't find it anywhere on SO. I have a cubic polynomial and I need to find real roots of the function. What is THE way of doing this? I have found ...
3
votes
1answer
337 views

Is this a bug in NSolve in mathematica?

One would expect and hope that if you ask Mathematica to find the roots of a polynomial, it should give the same (approximate) answers whether you do this symbolically, then find numerical ...
3
votes
3answers
1k views

Is my subset sum algorithm of polynomial time?

I came up with a new algorithm to solve the subset sum problem, and I think it's in polynomial time. Tell me I'm either wrong or a total genius. Quick starter facts: Subset sum problem is an ...
3
votes
3answers
635 views

Roots of a Quartic Function

I came across a situation doing some advanced collision detection, where I needed to calculate the roots of a quartic function. I wrote a function that seems to work fine using Ferrari's general ...
3
votes
1answer
289 views

Modular Reduction of Polynomials in NTRUEncrypt

I'm implementing the NTRUEncrypt algorithm, according to an NTRU tutorial, a polynomial f has an inverse g such that f*g=1 mod x, basically the polynomial multiplied by its inverse reduced modulo x ...
3
votes
3answers
961 views

Polynomial operations using operator overloading (resolved)

I'm trying to use operator overloading to define the basic operations (+,-,*,/) for my polynomial class but when i run the program it crashes and my computer frozes. Update4 Ok. i successfully made ...
3
votes
3answers
811 views

Convert a quadratic curve points to polynomial representation?

I have the X,Y of 2 end points and 1 bezier point, of a Quadratic Bezier curve. Using this data, how can I derive the polynomial representation of the curve?
2
votes
2answers
131 views

Implement Interpolation Polynomial Algorithm with Mathematica

I have to implement this algorithm in Mathematica: My problem is that I don't really understand the Mathematica syntax because there aren't a lot of useful examples out there. What I have done: (* ...
2
votes
1answer
128 views

Linear least-squares fit with constraint - any ideas?

I have a problem where I am fitting a high-order polynomial to (not very) noisy data using linear least squares. Currently I'm using polynomial orders around 15 - 25, which work surprisingly well: The ...
2
votes
5answers
361 views

Where can I get a Delphi/Pascal implementation of Excel-style polynomial regression curve fitting?

I have a set of X-Y values (i.e. a scatter plot) and I want a Pascal routine to generate the coefficients of a Nth order polynomial that fits those points, in the same way that Excel does.
2
votes
2answers
307 views

C# application solving for quadratic imaginary roots

I have constructed an extremely simple, yet fully-functioning and quite helpful, WinForms C# application that solves for the real roots of a quadratic equation. Here is my current programming logic: ...
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
0answers
290 views

3D Polynomial Regression

I need some pointers for writing a polynomial regression routine for 3-dimensional points (i.e. find the coefficients of an X order polynomial that is fitted to a certain number of 3D points). I've ...
2
votes
2answers
336 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 ...
2
votes
2answers
380 views

Good Package for Fitting Polynomial Trend Lines

Given a simple data set, I would like to be able to calculate a trending formula given it's a second order polynomial regression. In fact, it would be great if one could even forecast X periods ...
2
votes
8answers
1k views

Object-Oriented Programming: Java.Polynomial — should methods be 'destructive'?

I have to implement Java.Polynomial as a school assignment. Part of the methods are add(polynomial), multiply(polynomial) etc. In the case of something like p.add(q); // computes p + q is it ...
1
vote
2answers
94 views

How do I use letter as a variable/placeholder in a math equation? [closed]

Sorry if that title confused you its kinda hard for me to ask this without explaining it. I am writing a (fairly) simple program to find the roots of a quartic (biquadratic) function. My main question ...
1
vote
2answers
219 views

Finding Antilog in javascript and solving polynomial equation of n degree in javascript

Can anybody tell me how to solve polynomial equation of n degrees in JavaScript? Also how can I find antilogs in JavaScript? Is there any function by which I can find the antilog of any number?
1
vote
2answers
85 views

how to compare two MyDouble values?

i want to compare two MyDouble values with zero. if(getA()>(MyDouble.zero)) //where getA() is MyDouble but it does not let me do that. Does anyone knows how to solve it?
1
vote
2answers
154 views

generating the value of a 10 order polynomial and its derivative in C

Am trying to generate the value of a 10 order polynomial with 11 coefficients. Am also trying to generate its derivative. i have written a three functions shown below. this code generates the value ...
1
vote
1answer
84 views

Rasterizing a Cubic Polynomial

Given a cubic polynomial estimated using least-squares regression, I am interested in a simple algorithm that rasterizes the curve to display in an image. My initial intuition is to sample the curve ...
1
vote
3answers
178 views

Closed form cubic root finder implementation

I'm looking for a non-iterative function that finds the real roots of cubic polynomials. So, an implementation of something like this. I could write it myself of course, but if someone already has an ...
1
vote
6answers
356 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 ...
1
vote
1answer
189 views

Can someone explain the behavior of the functions mkpp and ppval?

If I do the following in MATLAB: ppval(mkpp(1:2, [1 0 0 0]),1.5) ans = 0.12500 This should construct a polynomial f(x) = x^3 and evaluate it at x = 1.5. So why does it give me the result 1.5^3 = ...
1
vote
3answers
394 views

What's the opposite of JavaScript's Math.pow?

I'm having a mental block here, and algebra not really being my thing, can you tell me how to re-write the JavaScript code below to derive the variable, c, in terms of a and b?: a = Math.pow(b, c); c ...
1
vote
1answer
226 views

Does this method work for solving the quadratic equation using JavaScript?

I'm trying to do some "complex" math where I need to call upon some of JavaScript's Math properties to solve the quadratic equation. Does the following method work? root = Math.pow(inputb,2) - 4 ...
1
vote
3answers
3k views

Fitting polynomial model to data in R

I've read the answers to this question and they are quite helpful, but I need help particularly in R. I have an example data set in R as follows: x <- c(32,64,96,118,126,144,152.5,158) y <- ...
1
vote
1answer
352 views

help with multiplying polynomials in lisp

for example: (3x2 - 5x + 2)(7x + 1) and you simplify it like this: ((3 2)(-5 1)(2 0))((7 1)(1 0)) ((21 3)(3 2)(-35 2)(-5 1)(14 1)(2 0)) (21 3)(32 2)(9 1)(2 0) and you get this answer: 21x3 + 32x2 + ...
1
vote
1answer
1k views

Looking for JavaScript Math library

Is there any JavaScript or jQuery plugin Math Library with polynomial fit routines?
1
vote
1answer
565 views

NTRU Pseudo-code for computing Polynomial Inverses

I was wondering if anyone could tell me how to implement line 45 of the following pseudo-code. Require: the polynomial to invert a(x), N, and q. 1: k = 0 2: b = 1 3: c = 0 4: f = a 5: g = 0 {Steps ...
1
vote
3answers
905 views

Polynomial division overloading operator

Ok. here's the operations i successfully code so far thank's to your help: Adittion: polinom operator+(const polinom& P) const { polinom Result; constIter i = poly.begin(), j = ...
1
vote
3answers
579 views

Basic polynomial reading using linked lists

Ok, after failing to read a polynomial, I'm trying first a basic approach to this. So i have class polinom with function read and print: #ifndef _polinom_h #define _polinom_h #include ...

1 2