Polynomial Arithmetic
1. Which two pieces of information are essential for representing a polynomial term in a linked-list node?
2. How should the constant term be represented as a coefficient-exponent pair?
3. In a linked-list representation of a polynomial, what does the pointer field of a node primarily provide?
4. When adding two polynomial linked lists, what is the correct action when the current exponents are equal?
5. When adding two polynomial linked lists, the current exponent in the first list is and in the second list is . Which term should be processed before the other?
6. What should happen to a term from one polynomial when its exponent does not occur in the other polynomial during addition?
7. In straightforward multiplication of two polynomial linked lists, why can the result initially contain multiple terms with the same exponent?
8. What is the result of multiplying ?
9. Which statement best explains why linked lists are useful for sparse polynomial representation?