Tagged Questions
11
votes
1answer
323 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
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
5answers
627 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
192 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 ...
3
votes
3answers
724 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
3answers
664 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
297 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 ...
2
votes
2answers
423 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 ...
1
vote
2answers
39 views
count the number of times a value appears in a math equation
how to count the number of times a value appears in a math equation?
explanation:
suppose in an equation of a circle i want to calculate how many timw does the value of y=5 occurs.
or in a parabola ...
1
vote
2answers
99 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
244 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
3answers
186 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
376 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
3answers
422 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
244 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 ...
0
votes
0answers
18 views
Can anyone help me in solving the following using Lagrange's multipliers(KKT conditions)? [migrated]
maximize: (summation(i=1 to N)) delf*R(i)
subject to:
(summation(i=1 to N)) (p(i)*k1(i)) <= Ith
(summation(i=1 to N)) (p(i)*k2(i)) <= Ith
(summation(i=1 to N)) p(i) <= pT
Here ...
0
votes
1answer
41 views
Finding the coordinate of a polygon
I have height, width1 and width2 of a 4 sided polygon. how to detect mouse is clicked in that region.
0
votes
2answers
192 views
C++ Cubic Spline Trajectory
I'm writing a C++ program to generate a cubic spline trajectory for a set of points. These points need not be sorted along the x-axis. For example, it may be a circle, etc.
I have found some ...
0
votes
1answer
189 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
3answers
396 views
How to find the roots of polynomial equation of 'n'th degree in Java? [closed]
Help me solving the above problem.
0
votes
1answer
467 views
Find all coefficients of polynomial expression using multinomial theorem
I want to find all coefficients of polynomial expression using multinomial theorem. For eg. coefficients of (a+b+c+d+e)^9.
At this wikipedia link, Multinomial coefficients is given as follows:
But ...
0
votes
1answer
96 views
Galois field computations on Linux [closed]
Is there any software available on Linux for Galois field calculus?
0
votes
3answers
173 views
is this expression O(n^2) or O(n^3)?
Sum[(i + 1) (n - i), {i, 0, n - 1}]
that is a sum of ( i+1)(n-1) with bounds from i=0 to n-1.
is that O(n^2) or O(n^3)?
and can you explain me how you found it? thanks.
0
votes
1answer
167 views
i need to find the upper bound of this: or the tight bound:
lets say i have an expression:
(n)+((n-1)*2)+((n-2)*3)+((n-3)*4)+...+(3*(n-2))+(2*(n-1))+(1*(n))
what is the tight bound of this? or the upper bound? is this n^3? is this n^4? the maximum amount of ...
0
votes
2answers
306 views
C# Mathematics Calculation not working properly
OK, so I'm performing an annoying math computation here, trying to solve for one of the cubic roots.
Now, here is my C# code:
public void CubeCalculate()
{
//Calculate discriminant
double ...
0
votes
2answers
126 views
Where can I find line buffering code?
I can't find any code for doing this. The only places I can find it is in GIS APIs. Preferably in java, but I can port other languages too. I'd even settle for a overview of all the formulas required.
...
0
votes
5answers
260 views
Suggestions for factorising polynomials
As part of some volunteer work for our local school. I was wondering about putting some kind of GUI (Windows) software together to guide the students through the process of factorising polynomials
...
-1
votes
0answers
34 views
Estimation of x, where N is a large integer [closed]
All,
I came across this problem recently.
x! = N^logN.
Here x! means factorial of x and N^logN means power(N, logN).
How should I estimate x in terms of N?
Thanks,
Sorry for the confusion at the ...
-2
votes
0answers
34 views
Solving higher degree equations [migrated]
Can I get a general solution for 4th, 5th and 6th degree polynomial
y=Ax^3 +Bx^2 +Cx +D
y=Ax^4 +Bx^3 +Cx^3 +Dx +E
y=Ax^5 +Bx^4 +Cx^3 +Dx^2 +Ex +D
y=Ax^6 +Bx^5 +Cx^4 +Dx^3 +Ex^2 +Dx +E
I want to ...
-3
votes
4answers
365 views
Mathematical mind boggler, very confusing possible new mathematical breakthrough [closed]
I'm not trying to make a joke here but I am very confused I been trying to figure this out for like 6 hours straight now got about 20 notepads opened up here, 15 calculators and I cant crunch it I'm ...