Polynomial Arithmetic
1. Which pair of values correctly represents the term in a polynomial linked-list node?
2. When representing the polynomial as a linked list, how many term nodes are required?
3. During polynomial addition, what should happen when the current exponents are equal?
4. What is the result of adding and ?
5. What is the result of subtracting from ?
6. Two polynomial linked lists contain and nodes. What is the time complexity of multiplying the two polynomials using the straightforward term-by-term approach?
7. Why is it necessary to combine terms with the same exponent after polynomial multiplication?
8. If is multiplied by , what term is produced before combining it with any other like terms?
9. Which statement best describes polynomial addition using two linked lists ordered by decreasing exponent?