I've been doing a recurrence relation exercise in my book. Doing some steps and comparing them to the ones taken by the book.
$$T(0) = 1$$
$$T(1) = 2$$
$$T(k) - 7T(k-1)+10T(k-2)=6+8k$$
Characteristic equation:
$$a^2-7a+10$$
$$(a - 5)(a-2)$$
Homogeneous solution:
$$b_0\cdot(5)^n+b_1\cdot(2)^n$$
Wait. My book did something different. Its homogeneous solution is
$$b_0\cdot(2)^n+b_1\cdot(5)^n$$
As you can observe, the book multiplied the constants by the factors in a different order as I did.
My question, then: does it matter? If yes, what determines the order?