I've got a problem where I forgot how to do recurrence relations and I'm not really sure what the guess and check method is. Does anyone know how to solve them using that method and if so a nice explanation would be appreciated.
2. Solve the following recurrence relation from guess and check method.
a. T(n) = T(n/2) + T(n/3) + T(n/10) + c n where c is a constant.
T(small number) = another small number.
b. T(n) = T(n/2) + T(n/3) + T(n/4) + T(n/5) + d n where d is a constant
T(small number) = another small number.