Questions tagged [polynomials]

In mathematics, a polynomial is an expression consisting of variables (or indeterminates) and coefficients, that involves only the operations of addition, subtraction, multiplication, and non-negative integer exponents.

In mathematics, a polynomial is an expression consisting of variables (or indeterminates) and coefficients, that involves only the operations of addition, subtraction, multiplication, and non-negative integer exponents.

An example of a polynomial of a single indeterminate (or variable), x, is x2 − 4x + 7, which is a quadratic polynomial.

Polynomials appear in a wide variety of areas of mathematics and science. For example, they are used to form polynomial equations, which encode a wide range of problems, from elementary word problems to complicated problems in the sciences; they are used to define polynomial functions, which appear in settings ranging from basic chemistry and physics to economics and social science; they are used in calculus and numerical analysis to approximate other functions. In advanced mathematics, polynomials are used to construct polynomial rings and algebraic varieties, central concepts in algebra and algebraic geometry.

Wikipedia: http://en.wikipedia.org/wiki/Polynomial

978 questions
-3
votes
1 answer

Write a function that takes lists representing a polynomial

def print_poly(p): """ >>> print_poly([4, 3, 2]) 4x^2 + 3x + 2 >>> print_poly([6, 0, 5]) 6x^2 + 5 >>> print_poly([7, 0, -3, 5]) 7x^3 - 3x + 5 >>> print_poly([1, -1, 0, 0, -3, 2]) x^5 - x^4 - 3x +…
-4
votes
1 answer

cannot convert 'void*' to *poly node error in borland c++

Good day! I am using Borland C++ to make my assignment in DSA, and I am looking for an example to Add and Multiply Polynomials using Linked List Implementation. Luckily, I found 1 which suits to my assignment. But the only problem is that it gives…
-6
votes
1 answer

Polynomial multiplication recursively

Here is my code, why is it showing segmentation fault? Can someone correct my mult4 function... I know that problem is mult4 and i am not sure is function mult4 is correct solution for polynomial recursively multiplication... #include…
bozo99
  • 1
  • 2
1 2 3
65
66