Solve for the following two recurrence equations:

1. If T(1)=5 and T(n) = T(n-1)+10, solve for T(n) in terms of n.

2. If T(3)=1 and T(n) = T(n-3)+2, solve for T(n) in terms of n.