|
|
|
|
|
by svat
518 days ago
|
|
> but not to write the exercises As the post mentions in passing, the integer-valued polynomials are completely characterized by the property that when written as a sum of {c_i (x choose i)}, all the coefficients c_i are integers. I imagine this is where most of the exercises actually come from. For example, using [3 1 4 1 5 9], the polynomial {3 + 1·x + 4·x(x-1)/2 + 1·x(x-1)(x-2)/6 + 5·x(x-1)(x-2)(x-3)/24 + 9·x(x-1)(x-2)(x-3)(x-4)/120} simplifies to 1/120 (9x^5 - 65x^4 + 185x^3 + 5x^2 - 14x + 360), so you could use it to generate exercises like: - Prove that 9x^5 - 65x^4 + 185x^3 + 5x^2 - 14x + 360 is always a multiple of 120 (or 5, or any divisor of 120). |
|