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
5answers
147 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
98 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 ...
4
votes
2answers
374 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 ...
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
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
88 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?
0
votes
1answer
63 views

Creating a polynomial from Int text file.

I'm reading in a .txt file to create polynomials. I am having trouble actually printing the polynomials (after they've been put into the linked list). I'm not really sure how to go about 'linking' the ...
0
votes
5answers
99 views

Convert from a String to a polynomial

I am writing a program in Java that is going to be using polynomials. I need to be able to express polynomials based on something the user enters in. For example the user might enter the following ...
0
votes
1answer
248 views

Java Polynomial Composite Method

Hey im doing a composite method for polynomials in java and im having some problems. This is my code so far and im just lost... public class Polynomial { final static private int mantissa = 52; ...
0
votes
3answers
396 views
0
votes
2answers
194 views

how to write a junit testCase for add method?

here is the add method for polynomial public Polynomilal add (Polynomial poly){ //getA()..etc getters for the coefficients of the polynomial. MyDouble aVal=getA().add(poly.getA()); MyDouble ...
0
votes
2answers
461 views

Adding polynomials using recursion

I need to make a recursive method Polynomial add(Polynomial p) that add this to p using recursion. I read that java has the add(Polynomial p) method, but that's not recursive. My best attempt so far ...
0
votes
0answers
357 views

Java Polynomials [closed]

Possible Duplicate: JAVA Polynomial The problem comes from when i try to send the ints Array to the Constructor after performing the add method. This causes the program to insert ...
-2
votes
1answer
118 views

how to get the signs in the Polynomial in toString method?

i want to add the polynomials with the coeff getA(),getB() and getC() with the +ve or -ve signs. and remove the terms with zero coff like 2x^2+5 not 2x^2+0x+5 in general like (+/-)ax^2(+/-)bx(+/-)c. ...
-2
votes
1answer
162 views

how to write a parsePolynomial in Java?

parsePolynomial -- this method takes one parameter (a String) and returns a new Polynomial. The parameter is a String that represents a polynomial of the form similar to 2x^2+5.You must return a new ...
-3
votes
2answers
771 views

Polynomials in Java

My add method works, however when I create a new SparsePolynomial object (at the bottom of the add method), the value of the newSparePolynomial changes when I debug it and I can't figure out where the ...