previous up next
Go backward to Polynomial Operations
Go up to Top
Go forward to Relationship to Reals
RISC-Linz logo

Examples

3Poly = [3, 0, 0, 0, 0, ...]
x = [0, 1, 0, 0, 0, ...]
x+3 = [3, 1, 0, 0, 0, ...]
x*x = [0, 0, 1, 0, 0, ...]
x*x+2*x+1 = [1, 2, 1, 0, 0, ...]
(x+1)*(x+2) = [2, 3, 1, 0, 0, ...]

Terms are just convenient notations to describe polynomials and compute with them.


Author: Wolfgang Schreiner
Last Modification: November 16, 1999

previous up next